From b9d9d686af1fc980482b5d0b23c5d29194e35136 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 8 Sep 2006 20:33:48 +0200 Subject: * debian/changelog, debian/dirs - fix missing /var/log/dist-upgrade --- debian/changelog | 6 ++++++ debian/dirs | 1 + 2 files changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3012c6d4..48c59ad8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +update-manager (0.44.8) edgy; urgency=low + + * fix missing /var/log/dist-upgrade + + -- Michael Vogt Fri, 8 Sep 2006 20:33:04 +0200 + update-manager (0.44.7) edgy; urgency=low * UpdateManager/UpdateManager.py: diff --git a/debian/dirs b/debian/dirs index 83916ddf..635898db 100644 --- a/debian/dirs +++ b/debian/dirs @@ -1,2 +1,3 @@ var/lib/update-manager +var/log/dist-upgrade usr/bin \ No newline at end of file -- cgit v1.2.3 From e4b06af1ace3bbb4281a9c762113f8a2699116c3 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 9 Sep 2006 10:53:25 +0200 Subject: * merged with the latest upload (fix popcon participate value) --- SoftwareProperties/SoftwareProperties.py | 24 ++++++++++++++++++++---- debian/changelog | 7 +++++++ 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py index a3dfdd06..a18fec20 100644 --- a/SoftwareProperties/SoftwareProperties.py +++ b/SoftwareProperties/SoftwareProperties.py @@ -79,6 +79,7 @@ class SoftwareProperties(SimpleGladeApp): def __init__(self, datadir=None, options=None, parent=None, file=None): gtk.window_set_default_icon_name("software-properties") + self.popconfile = "/etc/popularity-contest.conf" # FIXME: some saner way is needed here if datadir == None: @@ -223,6 +224,22 @@ class SoftwareProperties(SimpleGladeApp): self.treeview_sources.connect("drag_data_received",\ self.on_sources_drag_data_received) + # popcon + if os.path.exists(self.popconfile): + # read it + lines = open(self.popconfile).read().split("\n") + active = False + for line in lines: + try: + (key,value) = line.split("=") + if key == "PARTICIPATE": + if value.strip('"').lower() == "yes": + active = True + except ValueError: + continue + self.checkbutton_popcon.set_active(active) + + # call the add sources.list dialog if we got a file from the cli if self.file != None: self.open_file(file) @@ -505,14 +522,13 @@ class SoftwareProperties(SimpleGladeApp): def on_checkbutton_popcon_toggled(self, widget): """ The user clicked on the popcon paritipcation button """ - popcon = "/etc/popularity-contest.conf" if widget.get_active(): new_value = "yes" else: new_value = "no" - if os.path.exists(popcon): + if os.path.exists(self.popconfile): # read it - lines = open(popcon).read().split("\n") + lines = open(self.popconfile).read().split("\n") for line in lines: try: (key,value) = line.split("=") @@ -521,7 +537,7 @@ class SoftwareProperties(SimpleGladeApp): except ValueError: continue # write it - open(popcon,"w").write("\n".join(lines)) + open(self.popconfile,"w").write("\n".join(lines)) def open_file(self, file): diff --git a/debian/changelog b/debian/changelog index 48c59ad8..230fd67f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +update-manager (0.44.9) edgy; urgency=low + + * SoftwareProperties/SoftwareProperties.py: + - bugfix in the popcon enable code (lp: #59540) + + -- Michael Vogt Sat, 9 Sep 2006 02:13:40 +0200 + update-manager (0.44.8) edgy; urgency=low * fix missing /var/log/dist-upgrade -- cgit v1.2.3 From 522d72a3abeacee8b6070481738f9c9edd0a6161 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 9 Sep 2006 23:23:57 +0200 Subject: * UpdateManager/Common/aptsources.py: - fix "add_component" to correcly add components even under difficult conditions * tests/data/sources.list.testDistribution: - changed the sources.list to make it sufficiently difficult for aptsources * tests/test_aptsources.py: - added other testcase for add_component() --- TODO | 6 +++ UpdateManager/Common/aptsources.py | 82 ++++++++++++++++---------------- tests/data/sources.list.testDistribution | 9 +--- tests/test_aptsources.py | 31 +++++++++--- 4 files changed, 75 insertions(+), 53 deletions(-) diff --git a/TODO b/TODO index 1507f002..72acb345 100644 --- a/TODO +++ b/TODO @@ -1,3 +1,9 @@ +UpdateManager.Common.aptsources.py: +- make the distro detection in sources.list more clever by using the + origin informaton to avoid adding full uris to (unofficial/internal) + mirrors + +Misc: - have a common error dialog readymade and rib out all those GtkMessageDialogs - add download size to treeview diff --git a/UpdateManager/Common/aptsources.py b/UpdateManager/Common/aptsources.py index 09673376..36a9811d 100644 --- a/UpdateManager/Common/aptsources.py +++ b/UpdateManager/Common/aptsources.py @@ -72,28 +72,26 @@ def uniq(s): """ simple and efficient way to return uniq list """ return list(set(s)) - - -# actual source.list entries class SourceEntry: - + """ single sources.list entry """ def __init__(self, line,file=None): - self.invalid = False - self.disabled = False - self.type = "" - self.uri = "" - self.dist = "" - self.comps = [] - self.comment = "" - self.line = line - if file == None: + self.invalid = False # is the source entry valid + self.disabled = False # is it disabled ('#' in front) + self.type = "" # what type (deb, deb-src) + self.uri = "" # base-uri + self.dist = "" # distribution (dapper, edgy, etc) + self.comps = [] # list of available componetns (may empty) + self.comment = "" # (optional) comment + self.line = line # the original sources.list line + if file == None: file = apt_pkg.Config.FindDir("Dir::Etc")+apt_pkg.Config.Find("Dir::Etc::sourcelist") - self.file = file + self.file = file # the file that the entry is located in self.parse(line) - self.template = None + self.template = None self.children = [] - def __eq__(self, other): + def __eq__(self, other): + """ equal operator for two sources.list entries """ return (self.disabled == other.disabled and self.type == other.type and self.uri == other.uri and @@ -101,8 +99,9 @@ class SourceEntry: self.comps == other.comps) - # works mostely like split but takes [] into account def mysplit(self, line): + """ a split() implementation that understands the sources.list + format better and takes [] into account (for e.g. cdroms) """ line = string.strip(line) pieces = [] tmp = "" @@ -129,9 +128,9 @@ class SourceEntry: pieces.append(tmp) return pieces - - # parse a given source line and split it into the fields we need def parse(self,line): + """ parse a given sources.list (textual) line and break it up + into the field we have """ line = string.strip(self.line) #print line # check if the source is enabled/disabled @@ -177,11 +176,8 @@ class SourceEntry: else: self.comps = [] - #print self.__dict__ - - - # set enabled/disabled def set_enabled(self, new_value): + """ set a line to enabled or disabled """ self.disabled = not new_value # enable, remove all "#" from the start of the line if new_value == True: @@ -214,15 +210,17 @@ class SourceEntry: line += "\n" return line -# the SourceList file as a class class NullMatcher(object): + """ a Matcher that does nothing """ def match(self, s): return True class SourcesList: - def __init__(self, withMatcher=True, + """ represents the full sources.list + sources.list.d file """ + def __init__(self, + withMatcher=True, matcherPath="/usr/share/update-manager/channels/"): - self.list = [] # of Type SourceEntries + self.list = [] # the actual SourceEntries Type if withMatcher: self.matcher = SourceEntryMatcher(matcherPath) else: @@ -230,6 +228,7 @@ class SourcesList: self.refresh() def refresh(self): + """ update the list of known entries """ self.list = [] # read sources.list dir = apt_pkg.Config.FindDir("Dir::Etc") @@ -245,6 +244,8 @@ class SourcesList: self.matcher.match(source) def __iter__(self): + """ simple iterator to go over self.list, returns SourceEntry + types """ for entry in self.list: yield entry raise StopIteration @@ -298,6 +299,7 @@ class SourcesList: return new_entry def remove(self, source_entry): + """ remove the specified entry from the sources.list """ self.list.remove(source_entry) def restoreBackup(self, backup_ext): @@ -568,7 +570,6 @@ class Distribution: self.source_code_sources.append(source) else: self.disabled_sources.append(source) - self.download_comps = set(comps) self.cdrom_comps = set(cdrom_comps) enabled_comps.extend(comps) @@ -644,27 +645,28 @@ class Distribution: sourceslist: an aptsource.sources_list comp: the component that should be enabled """ - def add_component_only_once(source, workpile): + def add_component_only_once(source, comps_per_dist): """ Check if we already added the component to the repository, since a repository could be splitted into different apt lines. If not add the component """ - if not (workpile.has_key(source.uri) and\ - source.dist in workpile[source.uri]): - if comp not in source.comps: - source.comps.append(comp) - if workpile.has_key(source.uri): - workpile[source.uri].append(source.dist) - else: - workpile[source.uri] = [source.dist] + if comp in comps_per_dist[source.dist]: + return + source.comps.append(comp) + comps_per_dist[source.dist].add(comp) sources = [] sources.extend(self.main_sources) sources.extend(self.child_sources) sources.extend(self.source_code_sources) - # store repos to which the new component has been added - workpile = {} + # store what comps are enabled already per distro (where distro is + # e.g. "dapper", "dapper-updates") + comps_per_dist = {} + for s in sources: + if not comps_per_dist.has_key(s.dist): + comps_per_dist[s.dist] = set() + map(comps_per_dist[s.dist].add, s.comps) # check if there is a main source at all if len(self.main_sources) < 1: # create a new main source @@ -672,12 +674,12 @@ class Distribution: else: # add the comp to all main, child and source code sources for source in sources: - add_component_only_once(source, workpile) + add_component_only_once(source, comps_per_dist) if self.get_source_code == True: for source in self.source_code_sources: if comp not in source.comps: - add_component_only_once(source, workpile) + add_component_only_once(source, comps_per_dist) def disable_component(self, sourceslist, comp): diff --git a/tests/data/sources.list.testDistribution b/tests/data/sources.list.testDistribution index dd900645..031e4c51 100644 --- a/tests/data/sources.list.testDistribution +++ b/tests/data/sources.list.testDistribution @@ -1,14 +1,9 @@ -# comment 1 deb http://de.archive.ubuntu.com/ubuntu/ edgy main -# comment 2 deb http://de.archive.ubuntu.com/ubuntu/ edgy restricted -# comment 3 deb http://de.archive.ubuntu.com/ubuntu/ edgy universe -# comment 4 deb http://de.archive.ubuntu.com/ubuntu/ edgy-updates universe multiverse -# comment 5 +deb http://de.archive.ubuntu.com/ubuntu/ edgy-updates restricted deb http://de.archive.ubuntu.com/ubuntu/ edgy-security main -# comment 6 +deb http://de.archive.ubuntu.com/ubuntu/ edgy-security multiverse deb http://ftp.debian.org/debian sid main -# comment 7 deb http://de.archive.ubuntu.com/ubuntu/ breezy main \ No newline at end of file diff --git a/tests/test_aptsources.py b/tests/test_aptsources.py index d5b5ff9f..1db99e3c 100644 --- a/tests/test_aptsources.py +++ b/tests/test_aptsources.py @@ -83,17 +83,36 @@ class TestAptSources(unittest.TestCase): distro.get_sources(sources) comp = "restricted" distro.enable_component(sources, comp) - found = 0 + found = {} for entry in sources: if (entry.type == "deb" and entry.uri == "http://de.archive.ubuntu.com/ubuntu/" and - entry.dist == "edgy"): + "edgy" in entry.dist): + for c in entry.comps: + if c == comp: + if not found.has_key(entry.dist): + found[entry.dist] = 0 + found[entry.dist] += 1 + #print "".join([s.str() for s in sources]) + for key in found: + self.assertEqual(found[key], 1) + + # add a not-already available component + comp = "multiverse" + distro.enable_component(sources, comp) + found = {} + for entry in sources: + if (entry.type == "deb" and + entry.uri == "http://de.archive.ubuntu.com/ubuntu/" and + "edgy" in entry.dist): for c in entry.comps: if c == comp: - found += 1 - print "".join([s.str() for s in sources]) - self.assertEqual(found, 1) - + if not found.has_key(entry.dist): + found[entry.dist] = 0 + found[entry.dist] += 1 + #print "".join([s.str() for s in sources]) + for key in found: + self.assertEqual(found[key], 1) if __name__ == "__main__": unittest.main() -- cgit v1.2.3 From a021109da0fb1e138adc912c44632f0956243769 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sun, 10 Sep 2006 12:02:11 +0200 Subject: * added new "MirrorsFile" keyword for the DistInfo Tagfile * look for mirros as well when matching distros --- TODO | 2 + UpdateManager/Common/DistInfo.py | 11 +- UpdateManager/Common/aptsources.py | 17 ++- data/channels/Ubuntu.info | 52 ++++--- data/channels/Ubuntu.info.in | 62 +++++--- debian/changelog | 9 ++ po/ar.po | 234 +++++++++++++++------------- po/bg.po | 248 ++++++++++++++++-------------- po/bn.po | 235 ++++++++++++++++------------- po/br.po | 234 +++++++++++++++------------- po/ca.po | 248 ++++++++++++++++-------------- po/cs.po | 239 ++++++++++++++++------------- po/da.po | 239 ++++++++++++++++------------- po/de.po | 248 ++++++++++++++++-------------- po/el.po | 239 ++++++++++++++++------------- po/en_AU.po | 239 ++++++++++++++++------------- po/en_CA.po | 248 ++++++++++++++++-------------- po/en_GB.po | 248 ++++++++++++++++-------------- po/es.po | 248 ++++++++++++++++-------------- po/fi.po | 248 ++++++++++++++++-------------- po/fr.po | 248 ++++++++++++++++-------------- po/fur.po | 234 +++++++++++++++------------- po/gl.po | 248 ++++++++++++++++-------------- po/he.po | 248 ++++++++++++++++-------------- po/hi.po | 234 +++++++++++++++------------- po/hr.po | 239 ++++++++++++++++------------- po/hu.po | 239 ++++++++++++++++------------- po/id.po | 239 ++++++++++++++++------------- po/it.po | 248 ++++++++++++++++-------------- po/ja.po | 248 ++++++++++++++++-------------- po/ka.po | 235 ++++++++++++++++------------- po/ko.po | 239 ++++++++++++++++------------- po/ku.po | 235 ++++++++++++++++------------- po/lt.po | 239 ++++++++++++++++------------- po/mk.po | 248 ++++++++++++++++-------------- po/ms.po | 234 +++++++++++++++------------- po/nb.po | 248 ++++++++++++++++-------------- po/ne.po | 248 ++++++++++++++++-------------- po/nl.po | 239 ++++++++++++++++------------- po/no.po | 248 ++++++++++++++++-------------- po/oc.po | 235 ++++++++++++++++------------- po/pa.po | 234 +++++++++++++++------------- po/pl.po | 248 ++++++++++++++++-------------- po/pt.po | 239 ++++++++++++++++------------- po/pt_BR.po | 248 ++++++++++++++++-------------- po/ro.po | 248 ++++++++++++++++-------------- po/ru.po | 239 ++++++++++++++++------------- po/rw.po | 242 +++++++++++++++-------------- po/sk.po | 248 ++++++++++++++++-------------- po/sr.po | 234 +++++++++++++++------------- po/sv.po | 251 +++++++++++++++++-------------- po/th.po | 239 ++++++++++++++++------------- po/tr.po | 235 ++++++++++++++++------------- po/uk.po | 248 ++++++++++++++++-------------- po/update-manager.pot | 234 +++++++++++++++------------- po/ur.po | 234 +++++++++++++++------------- po/urd.po | 234 +++++++++++++++------------- po/vi.po | 248 ++++++++++++++++-------------- po/xh.po | 234 +++++++++++++++------------- po/zh_CN.po | 248 ++++++++++++++++-------------- po/zh_HK.po | 248 ++++++++++++++++-------------- po/zh_TW.po | 239 ++++++++++++++++------------- tests/data/sources.list.testDistribution | 4 +- tests/test_aptsources.py | 13 +- 64 files changed, 7498 insertions(+), 6212 deletions(-) diff --git a/TODO b/TODO index 72acb345..588e7a8a 100644 --- a/TODO +++ b/TODO @@ -2,6 +2,8 @@ UpdateManager.Common.aptsources.py: - make the distro detection in sources.list more clever by using the origin informaton to avoid adding full uris to (unofficial/internal) mirrors +- make it possible to inherit the mirrros from a ParentSuite (for + the childs) Misc: - have a common error dialog readymade and rib out all those diff --git a/UpdateManager/Common/DistInfo.py b/UpdateManager/Common/DistInfo.py index 79d5356c..81f08200 100644 --- a/UpdateManager/Common/DistInfo.py +++ b/UpdateManager/Common/DistInfo.py @@ -24,6 +24,7 @@ import os import gettext from os import getenv import ConfigParser +import string _ = gettext.gettext @@ -38,6 +39,7 @@ class Suite: self.components = {} self.children = [] self.match_uri = None + self.valid_mirrors = [] self.distribution = None self.available = True @@ -107,6 +109,12 @@ class DistInfo: suite.match_uri = value elif field == 'MatchURI': suite.match_uri = value + elif field == 'MirrorsFile': + suite.valid_mirrors = filter(lambda s: + ((s != "") and + (not s.startswith("#"))), + map(string.strip, + open(value))) elif field == 'Description': suite.description = _(value) elif field == 'Component': @@ -133,13 +141,14 @@ class DistInfo: if __name__ == "__main__": - d = DistInfo ("Ubuntu", "../../channels") + d = DistInfo ("Ubuntu", "../../data/channels") print d.changelogs_uri for suite in d.suites: print "\nSuite: %s" % suite.name print "Desc: %s" % suite.description print "BaseURI: %s" % suite.base_uri print "MatchURI: %s" % suite.match_uri + print "Mirrors: %s" % suite.valid_mirrors for component in suite.components: print " %s - %s - %s - %s" % (component, suite.components[component][0], diff --git a/UpdateManager/Common/aptsources.py b/UpdateManager/Common/aptsources.py index 36a9811d..bc6886d9 100644 --- a/UpdateManager/Common/aptsources.py +++ b/UpdateManager/Common/aptsources.py @@ -87,7 +87,8 @@ class SourceEntry: file = apt_pkg.Config.FindDir("Dir::Etc")+apt_pkg.Config.Find("Dir::Etc::sourcelist") self.file = file # the file that the entry is located in self.parse(line) - self.template = None + # FIXME: this name is really misleading and already overloaded + self.template = None # type DistInfo.Suite self.children = [] def __eq__(self, other): @@ -457,12 +458,17 @@ class SourceEntryMatcher: _ = gettext.gettext found = False for template in self.templates: - #print "'%s'" %source.uri - if re.search(template.match_uri, source.uri) and \ - re.match(template.match_name, source.dist): + if (re.search(template.match_uri, source.uri) and + re.match(template.match_name, source.dist)): found = True source.template = template break + for mirror in template.valid_mirrors: + if (is_mirror(mirror,source.uri) and + re.match(template.match_name, source.dist)): + found = True + source.template = template + break return found class Distribution: @@ -717,3 +723,6 @@ if __name__ == "__main__": print is_mirror("http://archive.ubuntu.com/ubuntu", "http://de.archive.ubuntu.com/ubuntu/") + print is_mirror("http://archive.ubuntu.com/ubuntu/", + "http://de.archive.ubuntu.com/ubuntu") + diff --git a/data/channels/Ubuntu.info b/data/channels/Ubuntu.info index 2620a7da..93ec83d2 100644 --- a/data/channels/Ubuntu.info +++ b/data/channels/Ubuntu.info @@ -3,7 +3,8 @@ ChangelogURI: http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/change Suite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 6.10 'Edgy Eft' Component: main Enabled: 1 @@ -38,34 +39,35 @@ Suite: edgy-security ParentSuite: edgy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com Description: Important security updates Suite: edgy-updates ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Recommended updates Suite: edgy-proposed ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Proposed updates Suite: edgy-backports ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Backported updates Suite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 6.06 LTS 'Dapper Drake' Component: main Enabled: 1 @@ -100,34 +102,35 @@ Suite: dapper-security ParentSuite: dapper RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com Description: Important security updates Suite: dapper-updates ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Recommended updates Suite: dapper-proposed ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Proposed updates Suite: dapper-backports ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Backported updates Suite: breezy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.10 'Breezy Badger' Component: main Enabled: 1 @@ -158,27 +161,28 @@ Suite: breezy-security ParentSuite: breezy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com Description: Ubuntu 5.10 Security Updates Suite: breezy-updates ParentSuite: breezy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 5.10 Updates Suite: breezy-backports ParentSuite: breezy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 5.10 Backports Suite: hoary RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 'Hoary Hedgehog' Component: main Enabled: 1 @@ -209,31 +213,31 @@ Suite: hoary-security ParentSuite: hoary RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com Description: Ubuntu 5.04 Security Updates Suite: hoary-updates ParentSuite: hoary RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 5.04 Updates Suite: hoary-backports ParentSuite: hoary RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 5.04 Backports Suite: warty RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 4.10 'Warty Warthog' Component: main Enabled: 1 -CompDescription: Oficially supported +CompDescription: No longer oficially supported Component: restricted Enabled: 1 CompDescription: Restricted copyright @@ -251,7 +255,7 @@ Description: Cdrom with Ubuntu 4.10 'Warty Warthog' Available: False Component: main Enabled: 1 -CompDescription: Oficially supported +CompDescription: No longer oficially supported Component: restricted Enabled: 1 CompDescription: Restricted copyright @@ -260,19 +264,19 @@ Suite: warty-security ParentSuite: warty RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.comubuntu/|security.ubuntu.com Description: Ubuntu 4.10 Security Updates Suite: warty-updates ParentSuite: warty RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 4.10 Updates Suite: warty-backports ParentSuite: warty RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 4.10 Backports diff --git a/data/channels/Ubuntu.info.in b/data/channels/Ubuntu.info.in index ed7fd50c..2b20cf8f 100644 --- a/data/channels/Ubuntu.info.in +++ b/data/channels/Ubuntu.info.in @@ -3,7 +3,8 @@ _ChangelogURI: http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/chang Suite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 6.10 'Edgy Eft' Component: main Enabled: 1 @@ -38,34 +39,39 @@ Suite: edgy-security ParentSuite: edgy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Important security updates Suite: edgy-updates ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Recommended updates Suite: edgy-proposed ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Proposed updates Suite: edgy-backports ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Backported updates Suite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 6.06 LTS 'Dapper Drake' Component: main Enabled: 1 @@ -100,34 +106,39 @@ Suite: dapper-security ParentSuite: dapper RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Important security updates Suite: dapper-updates ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Recommended updates Suite: dapper-proposed ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Proposed updates Suite: dapper-backports ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Backported updates Suite: breezy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.10 'Breezy Badger' Component: main Enabled: 1 @@ -158,27 +169,31 @@ Suite: breezy-security ParentSuite: breezy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.10 Security Updates Suite: breezy-updates ParentSuite: breezy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.10 Updates Suite: breezy-backports ParentSuite: breezy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.10 Backports Suite: hoary RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 'Hoary Hedgehog' Component: main Enabled: 1 @@ -209,27 +224,30 @@ Suite: hoary-security ParentSuite: hoary RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 Security Updates Suite: hoary-updates ParentSuite: hoary RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 Updates Suite: hoary-backports ParentSuite: hoary RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 Backports Suite: warty RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu _Description: Ubuntu 4.10 'Warty Warthog' Component: main Enabled: 1 @@ -260,19 +278,19 @@ Suite: warty-security ParentSuite: warty RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.comubuntu/|security.ubuntu.com _Description: Ubuntu 4.10 Security Updates Suite: warty-updates ParentSuite: warty RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu _Description: Ubuntu 4.10 Updates Suite: warty-backports ParentSuite: warty RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu/ +MatchURI: archive.ubuntu.com/ubuntu _Description: Ubuntu 4.10 Backports diff --git a/debian/changelog b/debian/changelog index 230fd67f..d83e1323 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +update-manager (0.44.10) edgy; urgency=low + + * aptsources.py: + - fix add_component() to avoid duplicated components + - added MirrorsFile key to DistInfo code to have a better idea + about the available mirrors + + -- Michael Vogt Sun, 10 Sep 2006 00:01:29 +0200 + update-manager (0.44.9) edgy; urgency=low * SoftwareProperties/SoftwareProperties.py: diff --git a/po/ar.po b/po/ar.po index 63d4fa85..5a87efcd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Jadmadi \n" "Language-Team: Arabic \n" @@ -17,108 +17,116 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n == 2 ? 1 : 2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "يوميا" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "كل يومين" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "اسبوعي" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "كل اسبوعين" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "كل %s يوم" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "بعد اسبوع" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "بعد اسبوعين" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "بعد شهر" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "بعد %s يوم" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "خطاء في استيراد الملف" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "خطاء في ازالة المفتاح" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -126,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "الرجاء ادخال اسم القرص" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "الرجاء ادخال القرص في الجهاز" @@ -759,110 +767,110 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -870,52 +878,52 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1233,183 +1241,197 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/bg.po b/po/bg.po index e41fb871..d81f750b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:40+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -17,113 +17,121 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Ежедневно" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Всеки два дни" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Ежеседмично" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Всеки две седмици" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Всеки %s дни" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "След една седмица" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "След две седмици" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "След един месец" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "След %s дни" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Инсталиране на актуализациите" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Обновления на софтуера" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Изходен код" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Изходен код" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Внасяне на ключ" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Грешка при внасяне на избрания файл" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Избраният файл или не е GPG файл, или е повреден." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Грешка при премахване на ключа" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ключът, който сте избрали, не може да бъде премахнат. Докладвайте това като " "грешка." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -134,11 +142,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Моля, въведете име за диска" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Моля, поставете диск в устройството:" @@ -843,16 +851,16 @@ msgstr "Сваляне на файл %li от %li при %s/сек" msgid "Downloading file %li of %li with unknown speed" msgstr "Сваляне на файл %li от %li при неизвестна скорост" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Списъкът с промените още не е наличен. Моля, опитайте по-късно!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Списъкът с промените още не е наличен. Моля, опитайте по-късно!" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -860,134 +868,134 @@ msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 актуализации на сигурността" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Надграждане до последната версия на Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Не могат да бъдат инсталирани всички актуализации" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Версия %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Сваляне на списъка с промени..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Размер за изтегляне: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Можете да инсталирате %s актуализация" msgstr[1] "Можете да инсталирате %s актуализации" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Моля, изчакайте! Това може да отнеме известно време." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Актуализацията е завършена" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Нова версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Версия %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуция вече не се поддържа" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -997,17 +1005,17 @@ msgstr "" "Надградете до по-късна версия на Ubuntu Linux. Вижте http://www.ubuntu.com " "за повече информация за надграждането!" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1372,202 +1380,220 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 актуализации" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Поддържани от обществото (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Допринесен софтуер" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Поддържани от обществото (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Поддържани от обществото (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Несвободни (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Несвободни (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Ограничен за изнасяне от САЩ софтуер" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 актуализации на сигурността" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Инсталиране на актуализациите" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официално поддържани" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 актуализации" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Официално поддържан" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 актуализации" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Състарени версии" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Поддържани от обществото (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Несвободни (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Официално поддържан" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Ограничени авторски права" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 обновления по сигурността" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 обновления" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" @@ -1861,15 +1887,9 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "Binary" #~ msgstr "Двоични" -#~ msgid "Contributed software" -#~ msgstr "Допринесен софтуер" - #~ msgid "Non-free software" #~ msgstr "Несвободен софтуер" -#~ msgid "US export restricted software" -#~ msgstr "Ограничен за изнасяне от САЩ софтуер" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 „Woody“" diff --git a/po/bn.po b/po/bn.po index eb93ec84..110eeb8c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-26 12:09+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -17,109 +17,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "দৈনিক" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "প্রত্যেক দুই দিনে" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "সাপ্তাহিক" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "প্রত্যেক দুই সপ্তাহে" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "প্রত্যেক %s দিনে" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "এক সপ্তাহ পর" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "দুই সপ্তাহ পর" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "এক মাস পর" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s দিন পর" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "সফ্টওয়্যার আপডেট" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "কী ইম্পোর্ট" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "নির্বাচিত ফাইলটি ইম্পোর্ট করতে সমস্যা হয়েছে" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "বেছে নেয়া ফাইলটি মনে হয় কোন GPG কী ফাইল নয় অথবা এটি নষ্ট।" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "কী সরাতে সমস্যা হয়েছে" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -130,11 +138,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "ডিস্কের জন্য একটি নাম দিন" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "অনুগ্রহ করে ড্রাইভে একটি ডিস্ক দিন:" @@ -784,16 +792,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "পরিবর্তনের তালিকা এখনে উপস্হিত নয়। অনুগ্রহ করে পরে আবার চেষ্টা করুন।" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "পরিবর্তনের তালিকা এখনে উপস্হিত নয়। অনুগ্রহ করে পরে আবার চেষ্টা করুন।" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -801,151 +809,151 @@ msgid "" msgstr "" "পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "উবুন্টু এর সর্বশেষ ভার্সনে আপগ্রেড করো" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "সকল উপস্হিত আপডেট ইন্সটল করা যায় নি" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "ভার্সন %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "পরিবর্তনের তালিকা ডাউনলোড করা হচ্ছ..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "ডাউনলোড এর আকার: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "আপনি %s আপডেট ইনস্টল করতে পারেন" msgstr[1] "আপনি %s আপডেট ইনস্টল করতে পারেন" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "অনুগ্রহ করে অপেক্ষা করুন, এটি কিছুটা সময় নিতে পারে।" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "আপডেট সম্পন্ন" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "নতুন ভার্সন: %s (আকার: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "ভার্সন %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "আপনার ডিস্ট্রিবিউশনটি আর সমর্থিত নয়" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1272,200 +1280,215 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "উবুন্টু ৫.১০ আপডেট" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "ফ্রি নয় (মাল্টিভার্স)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "ফ্রি নয় (মাল্টিভার্স)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "আপডেট ইন্সটল করো (_I)" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" diff --git a/po/br.po b/po/br.po index 29126b80..644917da 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -17,112 +17,120 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Bep %s devezh" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "War-lerc'h %s devezh" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Emborzhiañ an alc'hwezh" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Fazi en ur emborzhiañ ar restr dibabet" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Moarvat n'eo ket ur restr alc'hwezh GPG ar restr dibabet, pe neuze eo " "gwastet." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Fazi en ur zilemel an alc'hwezh" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "N'eus ket tu da zilemel an alc'whezh ho peus dibabet. Kelaouit eo ur bug " "marplij." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -130,11 +138,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Roit un anv evit ar bladenn marplij" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Lakait ur bladenn e-barzh ul lenner marplij:" @@ -760,162 +768,162 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1234,183 +1242,197 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/ca.po b/po/ca.po index 74ac19db..cb40bdb5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-29 21:18+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -16,115 +16,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Diàriament" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Cada dos dies" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Setmanalment" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Cada dues setmanes" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Cada %s dies" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Després d'una setmana" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Després de dues setmanes" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Després d'un mes" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Després de %s dies" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Instal·la les actualitzacions" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Actualitzacions de programari" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Font" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Font" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importa un clau" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "S'ha produït un error en importar el fitxer seleccionat" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "El fitxer que heu seleccionat no correspon a una clau GPG o pot estar " "corromput." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "S'ha produït un error en esborrar la clau" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La clau que heu seleccionat no es pot esborrar. Notifiqueu-ho com a error de " "programació." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -135,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Introduïu un nom per al disc" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Inseriu un disc a la unitat:" @@ -821,16 +829,16 @@ msgstr "S'està descarregant el fitxer %li de %li amb %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "La llista de canvis encara no està disponible. Proveu-ho després." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "La llista de canvis encara no està disponible. Proveu-ho després." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -838,134 +846,134 @@ msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Debian Stable Security Updates" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Actualitza a la darrera versió d'Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Instal·la les actualitzacions" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "No es poden instal·lar les actualitzacions disponibles" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versió %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "S'està descarregant la llista de canvis..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Mida de la descàrrega: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podeu instal·lar %s actualització" msgstr[1] "Podeu instal·lar %s actualitzacions" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Espereu, això pot tardar una estona." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "S'ha completat l'actualització" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versió nova: %s (Mida: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versió %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "La vostra distribució ja no es mantindrà més" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -975,17 +983,17 @@ msgstr "" "sistema a la darrera versió d'Ubuntu. Vegeu http://www.ubuntu.com per a més " "informació." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1343,201 +1351,219 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualitzacions d'Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Paquets mantinguts per la comunitat (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Programari de la comunitat" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Paquets mantinguts per la comunitat (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Paquets sense llicència lliure (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Programari amb restriccions d'exportació als EUA" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Debian Stable Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Instal·la les actualitzacions" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Paquets mantinguts oficialment (Main)" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Actualitzacions d'Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Paquets mantinguts oficialment (Main)" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "Actualitzacions d'Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Algun programari ja no es mantindrà oficialment" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Paquets amb restriccions per copyright (Restricted)" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Actualitzacions d'Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" @@ -1850,15 +1876,9 @@ msgstr "Programari no compatible DFSG" #~ msgid "Binary" #~ msgstr "Binari" -#~ msgid "Contributed software" -#~ msgstr "Programari de la comunitat" - #~ msgid "Non-free software" #~ msgstr "Programari sense llicència lliure" -#~ msgid "US export restricted software" -#~ msgstr "Programari amb restriccions d'exportació als EUA" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 \"Woody\"" diff --git a/po/cs.po b/po/cs.po index 16cb7f59..a2efb624 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-25 18:52+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" @@ -18,109 +18,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Denně" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Obden" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Týdně" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Každé dva týdny" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Každých %s dní" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Po týdnu" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Po dvou týdnech" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Po měsíci" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Po %s dnech" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Instaluji aktualizace" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Aktualizace softwaru" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importovat klíč" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Chyba při importování vybraného souboru" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Vybraný soubor nemusí obsahovat GPG klíč nebo může být porušen." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Chyba při odstraňování klíče" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Prosím zadejte jméno disku" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Prosím vložte disk do mechaniky:" @@ -814,115 +822,115 @@ msgstr "Stahuji %li. soubor z %li rychlostí %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Stahuji %li. soubor z %li neznámou rychlostí" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" "Selhalo stažení seznamu změn. Prosím zkontrolujte své internetové připojení." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Upgradovat na poslední verzi Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Instaluji aktualizace" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Nelze nainstalovat všechny dostupné aktualizace" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Verze %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Stahuji seznam změn ..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Stahovaná velikost: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -930,35 +938,35 @@ msgstr[0] "Můžete instalovat %s aktualizaci" msgstr[1] "Můžete instalovat %s aktualizace" msgstr[2] "Můžete instalovat %s aktualizací" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Prosím čekejte, může to nějakou dobu trvat." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Aktualizace je dokončena" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nová verze: %s (Velikost: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Verze %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Vaše distribude už není podporovaná" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -968,17 +976,17 @@ msgstr "" "Přejděte na další verzi Ubuntu Linuxu. Pro více informací o přechodu na " "vyšší verzi se podívejte na http://www.ubuntu.com." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1335,200 +1343,217 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Aktualizace" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Udržováno komunitou (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Nesvobodný (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Udržováno komunitou (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Udržováno komunitou (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Nesvobodný (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Nesvobodný (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Instaluji aktualizace" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálně podporováno" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualizace" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Oficiálně podporované" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Aktualizace" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Udržováno komunitou (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Nesvobodný (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Oficiálně podporované" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Omezeno copyrightem" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Aktualizace" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" diff --git a/po/da.po b/po/da.po index 1d9e6336..a8005f20 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -17,110 +17,118 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Dagligt" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Hver 2. dag" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Ugentligt" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Hver 2. uge" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, fuzzy, python-format msgid "Every %s days" msgstr "Hver %s. dag" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Efter 1 uge" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Efter 2 uger" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Efter 1 måned" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Efter %s dag(e)" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Installer Opdateringer" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Opdateringer" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importér nøgle" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Fejl under importering af den valgte fil" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Den valgte fil er ikke en GPG-nøglefil eller den er i stykker." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Fejl ved fjernelse af nøgle" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Den valgte nøgle kunne ikke fjernes. Rapporter venligst dette som en fejl." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Indtast venligst et navn til disken" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Indsæt venligst en disk i drevet:" @@ -829,16 +837,16 @@ msgstr "Henter fil %li af %li med %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Henter fil %li af %li med ukendt hastighed" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -847,134 +855,134 @@ msgstr "" "Fejl ved hentning af ændringslisten. Undersøg venligst din " "internetforbindelse." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Opgrader til seneste version af Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Installer Opdateringer" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Kan ikke installere alle tilgængelige opdateringer" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Henter listen med ændringer..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Overføringsstørelse: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s opdatering" msgstr[1] "Du kan installere %s opdateringer" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Vent venligst, dette kan tage et stykke tid." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Opdatering udført" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny version: %s (Size: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Din distribution understøtes ikke længere" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -984,17 +992,17 @@ msgstr "" "opdateringer. Opgrader til en senere version af Ubuntu Linux. Se http://www." "ubuntu.com (engalsk) for mere informaiton om opgradering." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Software indexet er i stykker" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1363,204 +1371,221 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Opdateringer" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Vedligeholdt af fællesskabet (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Ikke frit programmel (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedligeholdt af fællesskabet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Vedligeholdt af fællesskabet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Ikke frit programmel (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ikke frit programmel (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Installer Opdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officielt understøttet" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Opdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Officielt understøttet" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Opdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Vedligeholdt af fællesskabet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Ikke frit programmel (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Noget software er ikke længere officielt understøttet" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 #, fuzzy msgid "Restricted copyright" msgstr "Begrænset copyright" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Opdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" diff --git a/po/de.po b/po/de.po index bb01bd71..e679473a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-27 10:58+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -18,115 +18,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Täglich" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Alle zwei Tage" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Wöchentlich" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Alle zwei Wochen" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Alle %s Tage" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Nach einer Woche" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Nach zwei Wochen" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Nach einem Monat" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Nach %s Tagen" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Aktualisierungen werden installiert" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Software-Aktualisierungen" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Quellen" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Quellen" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Schlüssel importieren" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Fehler beim Importieren der gewählten Datei" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Die ausgewählte Datei ist möglicherweise keine GPG-Schlüsseldatei oder " "beschädigt." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Der ausgewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -137,11 +145,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Geben Sie einen Namen für das Medium ein" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Bitte legen Sie ein Medium in das Laufwerk:" @@ -863,20 +871,20 @@ msgstr "Datei %li von %li wird mit %s/s heruntergeladen" msgid "Downloading file %li of %li with unknown speed" msgstr "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "Die Liste mit Aktualisierungen ist momentan nicht verfügbar. Bitte versuchen " "Sie es zu einem späteren Zeitpunkt erneut." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "Die Liste mit Aktualisierungen ist momentan nicht verfügbar. Bitte versuchen " "Sie es zu einem späteren Zeitpunkt erneut." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -884,134 +892,134 @@ msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Aus die neueste Version von Ubuntu aktualisieren" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Aktualisierungen werden installiert" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Nicht alle verfügbaren Aktualisierungen können installiert werden" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Liste mit Änderungen wird heruntergeladen..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Download-Größe: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sie können %s Aktualisierung installieren" msgstr[1] "Sie können %s Aktualisierungen installieren" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Bitte warten Sie, dieser Vorgang kann etwas Zeit in Anspruch nehmen." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Aktualisierung ist abgeschlossen" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Neue Version: %s (Größe: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Ihre Distribution wird nicht länger unterstützt" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1022,17 +1030,17 @@ msgstr "" "System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." "de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1400,200 +1408,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Aktualisierungen" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Von der Gemeinschaft betreut (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Contributed Software" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Von der Gemeinschaft betreut (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Von der Gemeinschaft betreut (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Unfrei (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Unfrei (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Software mit US-Exportbeschränkungen" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Aktualisierungen werden installiert" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offiziell unterstützt" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Offiziell unterstützt" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Von der Gemeinschaft betreut (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Unfrei (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Urheberrechtlich eingeschränkt" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" @@ -2036,15 +2062,9 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Contributed Software" - #~ msgid "Non-free software" #~ msgstr "Unfreie Software" -#~ msgid "US export restricted software" -#~ msgstr "Software mit US-Exportbeschränkungen" - #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "" #~ "Automatischer Signaturschlüssel des Ubuntu-Archivs " diff --git a/po/el.po b/po/el.po index 69ee6eb5..2d55ab71 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-25 15:39+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -16,112 +16,120 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Ημερησίως" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Κάθε δύο ημέρες" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Εβδομαδιαίως" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Κάθε δύο εβδομάδες" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Κάθε %s ημέρες" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Μετά από μια εβδομάδα" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Μετά από δύο εβδομάδες" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Μετά από ένα μήνα" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Μετά από %s ημέρες" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Εγκατάσταση ενημερώσεων" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "Κανάλι λογισμικού" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "Ενεργό" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Εισαγωγή κλειδιού" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Σφάλμα εισαγωγής επιλεγμένου αρχείου" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Το επιλεγμένο αρχείο μπορεί να μην είναι ένα αρχείο κλειδιού GPG ή μπορεί να " "είναι κατεστραμμένο." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Σφάλμα απομάκρυνσης του κλειδιού" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Το επιλεγμένο κλειδί δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε το ως " "σφάλμα." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -132,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Παρακαλώ εισάγετε ένα όνομα για το δίσκο" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Παρακαλώ εισάγετε ένα δίσκο στον οδηγό:" @@ -849,18 +857,18 @@ msgstr "Λήψη αρχείου %li από %li με %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -868,134 +876,134 @@ msgstr "" "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Αναβάθμιση στη τελευταία έκδοση του Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Εγκατάσταση ενημερώσεων" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Αδυναμία εγκατάστασης όλων των διαθέσιμων ενημερώσεων" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Έκδοση%s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Λήψη της λίστας των αλλαγών..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Μέγεθος λήψης: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Μπορείτε να εγκαταστήσετε %s ενημέρωση" msgstr[1] "Μπορείτε να εγκαταστήσετε %s ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Παρακαλώ περιμένετε, αυτό μπορεί να διαρκέσει λίγο χρόνο." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Η ενημέρωση ολοκληρώθηκε" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Νέα έκδοση: %s (Μέγεθος: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Έκδοση%s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Η διανομή σας δεν υποστηρίζεται πια" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1006,17 +1014,17 @@ msgstr "" "Ubuntu Linux. Δείτε το http://www.ubuntu.com για περισσότερες πληροφορίες " "για την αναβάθμιση." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1378,200 +1386,217 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Αναβαθμίσεις Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Community maintained (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Όχι-ελεύθερα (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Όχι-ελεύθερα (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Εγκατάσταση ενημερώσεων" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Με επίσημη υποστήριξη" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Oficially supported" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Μερικά πακέτα λογισμικού δεν υποστηρίζονται πια επίσημα" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Περιορισμένα πνευματικά δικαιώματα" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" diff --git a/po/en_AU.po b/po/en_AU.po index 2bcde566..9d153fcb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-26 21:06+0000\n" "Last-Translator: David Symons \n" "Language-Team: English (Australia) \n" @@ -17,110 +17,118 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Daily" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Every two days" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Weekly" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Every two weeks" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Every %s days" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "After one week" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "After two weeks" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "After one month" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "After %s days" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Install Updates" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Software Updates" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Import key" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "The selected file may not be a GPG key file or it might be corrupt." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Please enter a name for the disc" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Please insert a disc in the drive:" @@ -840,16 +848,16 @@ msgstr "Downloading file %li of %li with %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Downloading file %li of %li with unknown speed" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "The list of changes is not available yet. Please try again later." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "The list of changes is not available yet. Please try again later." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -857,134 +865,134 @@ msgstr "" "Failed to download the list of changes. Please check your Internet " "connection." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Security Updates" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Upgrade to the latest version of Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Install Updates" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Cannot install all available updates" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Downloading the list of changes..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Download size: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "You can install %s update" msgstr[1] "You can install %s updates" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Please wait, this can take some time." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Update is complete" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "New version: %s (Size: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Your distribution is not supported anymore" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -994,17 +1002,17 @@ msgstr "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1369,201 +1377,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Updates" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Community maintained (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Non-free (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Install Updates" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Officially supported" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Some software no longer officially supported" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Restricted copyright" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" diff --git a/po/en_CA.po b/po/en_CA.po index f71ff780..decd0e07 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -17,113 +17,121 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "Details" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Install" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Software Updates" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "The selected file may not be a GPG key file or it might be corrupt." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -777,16 +785,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "There is a new release of Ubuntu available!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -795,153 +803,153 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.04 Security Updates" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Cancel downloading the ChangeLog" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1284,206 +1292,224 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.04 Updates" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Community maintained (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Contributed software" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "US export restricted software" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.04 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Install" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officially supported" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.04 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.04 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.04 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Officially supported" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.04 Security Updates" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Officially supported" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Restricted copyright" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.04 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.04 Updates" @@ -1824,15 +1850,9 @@ msgstr "" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Contributed software" - #~ msgid "Non-free software" #~ msgstr "Non-free software" -#~ msgid "US export restricted software" -#~ msgstr "US export restricted software" - #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "Ubuntu Archive Automatic Signing Key " diff --git a/po/en_GB.po b/po/en_GB.po index 370e696e..d0bab3cc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Abigail Brady \n" "Language-Team: \n" @@ -16,113 +16,121 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "Details" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Installing updates..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Software Updates" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "The selected file may not be a GPG key file or it might be corrupt." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -130,11 +138,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -776,16 +784,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "There is a new release of Ubuntu available!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -794,153 +802,153 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Security Updates" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Installing updates..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Downloading Changes" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1284,205 +1292,223 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Updates" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Community maintained (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Contributed software" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD disk with Ubuntu 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Updates" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "US export restricted software" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Installing updates..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD disk with Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officially supported" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD disk with Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD disk with Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD disk with Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Officially supported" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD disk with Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD disk with Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Officially supported" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Restricted copyright" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Updates" @@ -1769,15 +1795,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "Binary" -#~ msgid "Contributed software" -#~ msgstr "Contributed software" - #~ msgid "Non-free software" #~ msgstr "Non-free software" -#~ msgid "US export restricted software" -#~ msgstr "US export restricted software" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 \"Woody\"" diff --git a/po/es.po b/po/es.po index 5af5554c..46295b1c 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-26 09:38+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -19,115 +19,123 @@ msgstr "" "X-Generator: KBabel 1.10\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Una vez al día" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Cada dos días" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Una vez a la semana" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Cada dos semanas" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Cada %s días" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Después de una semana" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Después de dos semanas" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Después de un mes" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Después de %s días" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Instalando actualizaciones" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Actualizaciones de software" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Fuente" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Fuente" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importar clave" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Hubo un error al importar el archivo seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Puede que el archivo seleccionado no sea un archivo de clave GPG o que esté " "corrupto." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "No se puede quitar la clave que ha seleccionado. Por favor, avise de esto " "como un fallo." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -138,11 +146,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Por favor, introduzca un nombre para el disco" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Por favor, inserte un disco en la unidad:" @@ -860,20 +868,20 @@ msgstr "Descargando archivo %li de %li a %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Descargando archivo %li de %li a velocidad desconocida" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "La lista de cambios no está disponible aún. Por favor, inténtelo de nuevo " "más tarde." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "La lista de cambios no está disponible aún. Por favor, inténtelo de nuevo " "más tarde." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -881,134 +889,134 @@ msgstr "" "Hubo un fallo al descargar la lista de cambios. Por favor, compruebe su " "conexión a Internet." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Actualizar a la última versión de Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Instalando actualizaciones" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "No se han podido instalar todas las actualizaciones disponibles" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versión %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Descargando la lista de cambios..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Tamaño de descarga: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Puede instalar %s actualización" msgstr[1] "Puede instalar %s actualizaciones" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Por favor, espere; esto puede tardar un poco." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "La actualización se ha completado" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nueva versión: %s (Tamaño: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versión %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Su distribución ya no está soportada" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1018,17 +1026,17 @@ msgstr "" "críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" "www.ubuntu.com para más información sobre la actualización." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "El índice de software está dañado" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1394,200 +1402,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualizaciones de Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Mantenido por la comunidad (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Software contribuido" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 «Dapper Drake»" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Mantenido por la comunidad (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Mantenido por la comunidad (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Software no libre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Software no libre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Software con restricciones de exportación estadounidenses" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 «Dapper Drake»" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Instalando actualizaciones" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Actualizaciones de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "«Backports» de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Actualizaciones de seguridad de Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Actualizaciones de seguridad de Ubuntu 5.04" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Soportado oficialmente" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Actualizaciones de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "«Backports» de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 «Breezy Badger»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Mantenido por la comunidad (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Software no libre (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Algunos programas ya no están soportados oficialmente" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Copyright restringido" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Actualizaciones de seguridad" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Actualizaciones de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "«Backports» de Ubuntu 5.10" @@ -1975,15 +2001,9 @@ msgstr "Software no compatible con la DFSG" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Software contribuido" - #~ msgid "Non-free software" #~ msgstr "Software no libre" -#~ msgid "US export restricted software" -#~ msgstr "Software con restricciones de exportación estadounidenses" - #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "" #~ "Clave de firmado automático del archivo de Ubuntu " diff --git a/po/fi.po b/po/fi.po index 2c1b01ac..959956f5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-25 18:26+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -16,113 +16,121 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Päivittäin" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Joka toinen päivä" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Viikottain" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Joka toinen viikko" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "%s päivän välein" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Viikon jälkeen" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Kahden viikon jälkeen" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Kuukauden jälkeen" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s päivän jälkeen" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Asennetaan päivityksiä" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "Ohjelmistokanava" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "Aktiivinen" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Lähdekoodi" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Lähdekoodi" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Tuo avain" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Virhe tuotaessa valittua avainta" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Valittu tiedosto ei ole kelvollinen GPG-avaintiedosto, tai se on " "vahingoittunut." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -133,11 +141,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Syötä nimi levylle" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Aseta levy asemaan:" @@ -845,151 +853,151 @@ msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Muutosluettelo ei ole vielä saatavilla. Yritä myöhemmin uudelleen." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Muutosluettelo ei ole vielä saatavilla. Yritä myöhemmin uudelleen." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" "Muutosluettelon nouto epäonnistui. Tarkista Internet-yhteytesi toimivuus." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Päivitä Ubuntun viimeisimpään versioon" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Asennetaan päivityksiä" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Ei voida asentaa kaikkia saatavilla olevia päivityksiä" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versio: %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Noudetaan muutosluetteloa..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 #, fuzzy msgid "None" msgstr "Ei-vapaa" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "%s täytyy noutaa" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Voit asentaa %s päivityksen" msgstr[1] "Voit asentaa %s päivitystä" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Odota, tämä voi kestää jonkun aikaa." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Päivitys on valmis" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Uusi versio: %s (koko: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versio: %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Jakeluasi ei enää tueta" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -999,17 +1007,17 @@ msgstr "" "Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja " "päivittämisestä osoitteesta http://www.ubuntu.com/" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1371,200 +1379,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 päivitykset" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Yhteisön ylläpitämät (universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Muiden tarjoamat ohjelmat" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Yhteisön ylläpitämät (universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Ei-vapaat ohjelmat (multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "USA:sta vientirajoitetut ohjelmat" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Asennetaan päivityksiä" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Virallisesti tuettu" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Virallisesti tuettu" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 päivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Jotkin ohjelmat eivät ole enää virallisesti tuettuja" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Rajoitettu tekijänoikeus" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 päivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" @@ -1917,15 +1943,9 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Muiden tarjoamat ohjelmat" - #~ msgid "Non-free software" #~ msgstr "Ei-vapaat ohjelmat" -#~ msgid "US export restricted software" -#~ msgstr "USA:sta vientirajoitetut ohjelmat" - #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "" #~ "Ubuntu-arkiston automaattinen allekirjoitusavain " diff --git a/po/fr.po b/po/fr.po index 18e5ac8a..6847a205 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-26 21:09+0000\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" @@ -17,115 +17,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Quotidiennement" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Tous les deux jours" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Hebdomadaire" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Toutes les deux semaines" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Tous les %s jours" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Après une semaine" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Après deux semaines" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Après un mois" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Après %s jours" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Installation des mises à jour" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Mises à jour des logiciels" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importer la clé" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Erreur lors de l'importation du fichier sélectionné" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 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." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 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." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -136,11 +144,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Veuillez saisir un nom pour le disque" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Veuillez insérer un disque dans le lecteur :" @@ -859,20 +867,20 @@ msgstr "Téléchargement du fichier %li sur %li à %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "La liste des modifications n'est pas encore disponible. Veuillez réessayer " "plus tard." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "La liste des modifications n'est pas encore disponible. Veuillez réessayer " "plus tard." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -880,134 +888,134 @@ msgstr "" "Échec du téléchargement de la liste des modifications. Veuillez vérifier que " "votre connexion Internet est activée." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Mettre à jour vers la version la plus récente d'Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Installation des mises à jour" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Impossible d'installer toutes les mises à jour disponibles" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s : \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Téléchargement de la liste des nouveautés…" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Taille du téléchargement : %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Votre système est à jour" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format 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" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Veuillez patienter, cela peut prendre du temps." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "La mise à jour est terminée" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nouvelle version : %s (taille : %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s : \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Votre distribution n'est plus supportée" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1017,17 +1025,17 @@ msgstr "" "devez passer à une version plus récente d'Ubuntu Linux. Rendez-vous sur " "http://www.ubuntu.com pour de plus amples informations à ce sujet." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1397,200 +1405,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Mises à jour pour Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Maintenu par la communauté (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Logiciel contribué" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu Dapper Drake 6.06" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Maintenu par la communauté (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Maintenu par la communauté (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Non-libre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-libre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Logiciel restreint à l'export (USA)" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu Dapper Drake 6.06" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Installation des mises à jour" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu Breezy Badger 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supportés officiellement" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu Breezy Badger 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Mises à jour de sécurité" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Mises à jour de sécurité" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Supporté officiellement" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mises à jour pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "« Backports » pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu Breezy Badger 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Maintenu par la communauté (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Non-libre (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Certains logiciels ne sont plus supportés officiellement" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Copyright restreint" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Mises à jour de sécurité" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" @@ -1979,15 +2005,9 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Logiciel contribué" - #~ msgid "Non-free software" #~ msgstr "Logiciel non-libre" -#~ msgid "US export restricted software" -#~ msgstr "Logiciel restreint à l'export (USA)" - #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "" #~ "Clé de signature automatique de l'archive Ubuntu " diff --git a/po/fur.po b/po/fur.po index 2cc80acf..32880a22 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-30 14:37+0000\n" "Last-Translator: marcuz \n" "Language-Team: Friulian \n" @@ -17,108 +17,116 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Ogni dì" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Ogni dòi dîs" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Ogni setemàne" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Ogni dôs setemànis" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Ogni %s dîs" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Dòpo une setemàne" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Dòpo dôs setemànis" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Dopo un mèis" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Dopo %s dîs" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Impuarte la clâf" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -126,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -756,162 +764,162 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1229,183 +1237,197 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/gl.po b/po/gl.po index e55428b7..5d4b8dc1 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:42+0000\n" "Last-Translator: Ignacio Casal Quinteiro \n" "Language-Team: Galego\n" @@ -17,116 +17,124 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.10.2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "Detalles" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Instalando actualizacións..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Actualizacións de software" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Fonte" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Fonte" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Erro importando o ficheiro seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "O ficheiro seleccionado pode que non sexa un ficheiro de clave GPG ou que " "esté corrupto." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Erro ao quitar a clave" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un " "erro." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -134,11 +142,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -781,16 +789,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Hai unha versión nova de Ubuntu dispoñible!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -799,154 +807,154 @@ msgstr "" "Fallou ao descargar o informe de cambios. Comprobe se ten algunha conexión " "activa." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Actualizacións de seguranza de Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 #, fuzzy msgid "Cannot install all available updates" msgstr "Comprobando se hai actualizacións..." -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versión %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Descargando cambios" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Instalando actualizacións..." msgstr[1] "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versión %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "A súa distribución xa non está soportada" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1289,205 +1297,223 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualizacións de Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Mantido pola comunidade (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Software contribuido" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD con Ubuntu 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Actualizacións de Ubuntu 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Mantido pola comunidade (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Mantido pola comunidade (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Non libre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non libre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Software con restriccións de exportación estadounidense" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Actualizacións de Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Actualizacións de seguranza de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Instalando actualizacións..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD con Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Soporte oficial" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD con Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizacións de seguranza de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Actualizacións de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualizacións de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD con Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD con Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Soporte oficial" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizacións de seguranza de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Actualizacións de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualizacións de Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD con Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Mantido pola comunidade (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Non libre (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD con Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Soporte oficial" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Dereito de copia restrinxido" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizacións de seguranza de Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Actualizacións de Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualizacións de Ubuntu 5.10" @@ -1733,15 +1759,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "Binario" -#~ msgid "Contributed software" -#~ msgstr "Software contribuido" - #~ msgid "Non-free software" #~ msgstr "Software non libre" -#~ msgid "US export restricted software" -#~ msgstr "Software con restriccións de exportación estadounidense" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 \"Woody\"" diff --git a/po/he.po b/po/he.po index 106ac280..02fe3885 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-30 11:15+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -20,112 +20,120 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.10.2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "מידי יום" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "כל יומיים" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "כל שבוע" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "כל שבועים" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "כל %s ימים" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "אחרי שבוע" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "אחרי שבועים" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "אחרי חודש" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "אחרי %s ימים" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "מתקין עדכונים..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "עדכוני תוכנה" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "מקור" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "מקור" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "שגיאה בייבוא קובץ נבחר" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "הקובץ הנבחר הוא לא מפתח GPG או שהוא לא תקין." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -136,11 +144,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "אנא הכניסו תקליטור לכונן:" @@ -781,171 +789,171 @@ msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" msgid "Downloading file %li of %li with unknown speed" msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "גרסה חדשה של אובונטו זמינה!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "נכשל בהורדת השינויים. אנא בדוק אם החיבור לאינטרנט עובד." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "עדכוני אבטחה - אובונטו 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "משדרג את אובונטו" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "לא ניתן להתקין את כל העדכונים הזמינים" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "גרסה %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "מוריד שינוייים" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "מתקין עדכונים..." msgstr[1] "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 #, fuzzy msgid "Update is complete" msgstr "ההורדה הושלמה" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "גרסה %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "ההפצה שלך כבר לא נתמכת, סליחה." -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1288,205 +1296,223 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "עדכונים - אובונטו 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "מתוחזק ע\"י קהילה (Universe(" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "תוכנה שנתרמה" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "עדכונים - אובונטו 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "מתוחזק ע\"י קהילה (Universe(" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "לא-חופשי (Multiverse(" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "לא-חופשי (Multiverse(" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "תוכנה מוגבלת בארה\"ב" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "עדכונים - אובונטו 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "עדכוני אבטחה - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "מתקין עדכונים..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "נתמך רשמית" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "נתמך רשמית" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "לא-חופשי (Multiverse(" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "נתמך רשמית" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "זכויות יוצרים מגבילות" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "עדכונים - אובונטו 5.10" @@ -1749,15 +1775,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "בינארי" -#~ msgid "Contributed software" -#~ msgstr "תוכנה שנתרמה" - #~ msgid "Non-free software" #~ msgstr "תוכנה לא-חופשית" -#~ msgid "US export restricted software" -#~ msgstr "תוכנה מוגבלת בארה\"ב" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "דביאן 3.0 \"וודי\"" diff --git a/po/hi.po b/po/hi.po index 6a509cb7..0a14e9f3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Hindi \n" @@ -17,108 +17,116 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -126,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -756,162 +764,162 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1229,183 +1237,197 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/hr.po b/po/hr.po index 52847e7a..255a4694 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-24 20:54+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -18,110 +18,118 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Dnevno" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Svaki drugi dan" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Tjedno" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Svaki drugi tjedan" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Svakih %s dana" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Nakon tjedan dana" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Nakon dva tjedna" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Nakon mjesec dana" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Nakon %s dana" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Instaliraj nadogradnje" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Nadogradnje programa" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Unos ključa" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Greška prilikom uvoženja odabrane datoteke" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Odabrana datoteka možda nije GPG ključ ili je možda oštećena." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Greška prilikom brisanja ključa" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -132,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Upišite ime za disk" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Ubacite CD u uređaj:" @@ -847,18 +855,18 @@ msgstr "Preuzimam datoteku %li od %li pri %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -866,99 +874,99 @@ msgstr "" "Preuzimanje popisa promjena nije uspjelo. Molim, provjerite svoju internet " "vezu." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Nadogradi na zadnju verziju Ubuntua" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Instaliraj nadogradnje" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Ne mogu instalirati sve dostupne nadogradnje" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Verzija %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Preuzimam popis promjena..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Veličina preuzimanja: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -966,35 +974,35 @@ msgstr[0] "Možete instalirati %s nadogradnju" msgstr[1] "Možete instalirati %s nadogradnje" msgstr[2] "Možete instalirati %s nadogradnji" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Molim pričekajte, ovo može potrajati." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Nadogradnja je gotova" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nova verzija: %s (Veličina: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Verzija %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Vaša distibucija više nije podržana" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1004,17 +1012,17 @@ msgstr "" "na noviju verziju Ubuntu Linuxa. Pogledajte na http://www.ubuntu.com za više " "detalja o nadogradnji." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Popis programa je oštećen" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1373,201 +1381,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 osvježenja" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Održavani od strane zajednice (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Neslobodni (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Održavani od strane zajednice (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Održavani od strane zajednice (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Neslobodni (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neslobodni (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Instaliraj nadogradnje" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Službeno podržani" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 osvježenja" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backporti" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Službeno podržani" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 osvježenja" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 backporti" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Održavani od strane zajednice (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Neslobodni (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Neki paketi više nisu službeno podržani" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Ograničeno autorsko pravo" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 osvježenja" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 backporti" diff --git a/po/hu.po b/po/hu.po index b6efe310..4e4bda92 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-28 21:22+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -17,110 +17,118 @@ msgstr "" "X-Generator: KBabel 1.3.1\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Naponta" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Kétnaponta" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Hetente" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Minden két hétben" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "%s naponta" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Egy hét után" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Két hét után" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Egy hónap után" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s nap után" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Telepítés" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Szoftverfrissítések" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Kulcs importálása" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Hiba a kiválasztott fájl importálása közben" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "A kiválasztott fájl vagy nem GPG kulcsfájl, vagy sérült." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Az Ön által kijelölt kulcs nem távolítható el. Kérem, jelentse ezt hibaként." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Kérem, adja meg a lemez nevét" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Kérem, helyezzen be egy lemezt a meghajtóba:" @@ -845,16 +853,16 @@ msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" msgid "Downloading file %li of %li with unknown speed" msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -862,133 +870,133 @@ msgstr "" "A módosítások listájának letöltése meghiúsult. Ellenőrizze az " "internetkapcsolatát." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 biztonsági frissítések" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Frissítés az Ubuntu legújabb változatára" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Telepítés" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Nem telepíthető minden rendelkezésre álló frissítés" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "%s verzió: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Módosítások listájának letöltése..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Letöltés mérete: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s frissítést telepíthet" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Kis türelmet, ez eltarthat egy ideig." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "A frissítés befejeződött" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Új verzió: %s (Méret: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "%s verzió: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "A terjesztés már nem támogatott" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -998,17 +1006,17 @@ msgstr "" "Frissítsen az Ubuntu Linux egy újabb változatára. A frissítéssel kapcsolatos " "információkat az http://www.ubuntu.com weboldalon talál." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "A szoftverindex sérült" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1370,201 +1378,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 frissítések" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Közösségi karbantartású (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Nem-szabad (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Közösségi karbantartású (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Közösségi karbantartású (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Nem-szabad (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Nem-szabad (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 biztonsági frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Telepítés" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Hivatalosan támogatott" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Hivatalosan támogatott" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Közösségi karbantartású (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Nem-szabad (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Néhány szoftver már nincs hivatalosan támogatva" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Szerzői jogi korlátozás alatt" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" diff --git a/po/id.po b/po/id.po index 5714019a..82b44e53 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-28 18:46+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -16,111 +16,119 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Harian" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Setiap dua hari" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Mingguan" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Setiap dua minggu" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Setiap %s hari" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Setelah satu minggu" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Setelah dua minggu" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Setelah satu bulan" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Setelah %s hari" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Instal Update" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Perangkat Lunak Mutakhir" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Impor kunci" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Kesalahan mengimpor berkas terpilih" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Berkas terpilih mungkin bukan berkas kunci GPG atau berkas mungkin korup." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Kesalahan menghapus kunci" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Silakan masukkan nama untuk cakram" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Silakan masukan cakram ke dalam penggerak" @@ -840,16 +848,16 @@ msgstr "Mengunduh berkas %li dari %li dengan %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Senarai dari perubahan belum tersedia. Silakan coba lagi nanti." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Senarai dari perubahan belum tersedia. Silakan coba lagi nanti." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -857,133 +865,133 @@ msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Pemutakhiran lewat Internet" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Upgrade ke versi Ubuntu terakhir" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Tidak dapat menginstal semua pemutakhiran yang tersedia" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versi %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Mengunduh senarai dari perubahan..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Ukuran unduh: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Anda dapat instal %s pemutakhiran" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Silakan tunggu, hal ini membutuhkan beberapa waktu." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Pemutakhiran selesai" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versi baru: %s (Ukuran: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versi %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Distribusi anda tidak disokong lagi" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -993,17 +1001,17 @@ msgstr "" "lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." "ubuntu.com untuk informasi lebih lanjut." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1364,199 +1372,216 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Dikelola oleh komunitas (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Tidak-bebas (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Updates" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Dikelola oleh komunitas (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Dikelola oleh komunitas (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Tidak-bebas (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Tidak-bebas (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Pemutakhiran lewat Internet" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Instal Update" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi disokong" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Resmi disokong" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 LTS Updates" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Dikelola oleh komunitas (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Tidak-bebas (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Hak cipta terlarang" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/it.po b/po/it.po index a9c5d7df..b38a79e6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-24 14:01+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -18,115 +18,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Ogni giorno" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Ogni due giorni" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Ogni settimana" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Ogni due settimane" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Ogni %s giorni" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Dopo una settimana" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Dopo due settimane" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Dopo un mese" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Dopo %s giorni" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Installazione degli aggiornamenti" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Aggiornamenti Software" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Sorgente" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Sorgente" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importa chiave" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Errore nell'importare il file selezionato" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Il file selezionato potrebbe non essere un file di chiave GPG o potrebbe " "essere corrotto." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Errore nel rimuovere la chiave" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La chiave selezionata non può essere rimossa. Notificare questo evento come " "bug." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -137,11 +145,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Inserire un nome per il disco" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Inserire un disco nell'unità:" @@ -857,18 +865,18 @@ msgstr "Scaricamento del file %li di %li a %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Scaricamento del file %li di %li a velocità sconosciuta" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -876,134 +884,134 @@ msgstr "" "Fallito lo scaricamento dell'elenco dei cambiamenti. Verificare la " "connessione ad Internet." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Aggiorna all'ultima versione di Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Installazione degli aggiornamenti" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Impossibile installare tutti gli aggiornamenti disponibili" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versione %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Scaricamento dell'elenco dei cambiamenti..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Dati da scaricare: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Il sistema è aggiornato!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "È possibile installare %s aggiornamento" msgstr[1] "È possibile installare %s aggiornamenti" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Attendere, l'operazione potrebbere richiedere del tempo." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Aggiornamento completato" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nuova versione: %s (Dimensione: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versione %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "La distribuzione in uso non è più supportata" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1013,17 +1021,17 @@ msgstr "" "versione più aggiornata di Ubuntu Linux. Per maggiori informazioni " "consultare http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "L'indice dei programmi è rovinato" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1389,201 +1397,219 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Aggiornamenti di Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Mantenuto dalla comunità (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Software contribuito" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD con Ubuntu·4.10·\"Warty·Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Mantenuto dalla comunità (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Mantenuto dalla comunità (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Non libero (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non libero (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Software non esportabile dagli USA" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Installazione degli aggiornamenti" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supportato ufficialmente" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Aggiornamenti di Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Backport di Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD con Ubuntu·5.04·\"Hoary·Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD con Ubuntu·5.04·\"Hoary·Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Supportato ufficialmente" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Aggiornamenti di Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Backport di Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD con Ubuntu·4.10·\"Warty·Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Mantenuto dalla comunità (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Non libero (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD con Ubuntu·4.10·\"Warty·Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Software non più supportato ufficialmente" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Copyright con restrizioni" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Aggiornamenti di Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Backport di Ubuntu 5.10" @@ -1951,15 +1977,9 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Binary" #~ msgstr "Binario" -#~ msgid "Contributed software" -#~ msgstr "Software contribuito" - #~ msgid "Non-free software" #~ msgstr "Software non libero" -#~ msgid "US export restricted software" -#~ msgstr "Software non esportabile dagli USA" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian·3.0·\"Woody\"" diff --git a/po/ja.po b/po/ja.po index 67e4b650..56e3fa45 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-24 07:06+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -18,112 +18,120 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "X 日ごとに" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "2日ごと" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "X 週ごとに" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "2週ごと" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "%s 日ごと" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "1週間後" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "2週間後" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "1ヶ月後" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s 日後" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "アップデートをインストール中" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "ソフトウェアのアップデート" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "ソース" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "ソース" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "鍵のインポート" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "選択したファイルのインポートエラー" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "鍵削除のエラー" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -134,11 +142,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "ディスク名を入力してください" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "ディスクをドライブに挿入してください:" @@ -834,16 +842,16 @@ msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" msgid "Downloading file %li of %li with unknown speed" msgstr "ダウンロード中: 速度不明で %li のうち %li" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "変更点がまだ取得できません。あとで試してください。" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "変更点がまだ取得できません。あとで試してください。" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -851,133 +859,133 @@ msgstr "" "変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" "い。" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 セキュリティアップデート" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Ubuntu の最新バージョンにアップグレード" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "アップデートをインストール中" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "すべてのアップデートをインストールすることができません" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "バージョン %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "変更点を取得中..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "ダウンロードサイズ: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 個のアップデートがインストールされます" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "しばらくお待ちください。少々時間がかかります。" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "アップデートが完了しました" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新しいバージョン: %s (サイズ: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "バージョン %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "このディストリビューションはすでにサポート対象外です" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -987,17 +995,17 @@ msgstr "" "Ubuntu Linux にアップグレードしてください。\r\n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1358,200 +1366,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 アップデート" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "コミュニティによるメンテナンス (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "寄贈ソフトウェア" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "コミュニティによるメンテナンス (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "コミュニティによるメンテナンス (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "非フリー (Multiuniverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非フリー (Multiuniverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 セキュリティアップデート" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "アップデートをインストール中" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "公式サポート" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 アップデート" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 バックポート" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "公式サポート" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 アップデート" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 バックポート" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·5.10·'Breezy·Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "コミュニティによるメンテナンス (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "非フリー (Multiuniverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "いくつかのソフトウェアはもう公式にサポートされません" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "限定的な著作権(Restricted)" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 セキュリティアップデート" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 アップデート" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 バックポート" @@ -1955,15 +1981,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "寄贈ソフトウェア" - #~ msgid "Non-free software" #~ msgstr "非フリーソフトウェア" -#~ msgid "US export restricted software" -#~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" - #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "Ubuntu Archive Automatic Signing Key " diff --git a/po/ka.po b/po/ka.po index d80fcac3..b5602a0e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:19+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -19,112 +19,120 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0\n" "X-Generator: KBabel 1.11.2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "ყოველ დღიურად" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "ყოველ 2 დღეში" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "კვირეული" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "ყოველ 2 კვირაში" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "ყოველ %s დღეში" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "ერთ კვირაში" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "ორი კვირის შემდგომ" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "ერთი თვის შემდგომ" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s დღის შემდეგ" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "განახლებების _დაყენება" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "პროგრამული განახლებები" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "გასაღების იმპორტი" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "ამორჩეული ფაილის იმპორტი ვერ მოხერხდა" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "ამორჩეული ფაილი შეიძლება არ იყოს GPG გასაღების ფაილი ან შეიძლება იყოს " "დაზიანებული." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "გასღების წაშლა ვერ მოხერხდა" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "ამორჩეული გასაღების წაშლა ვე რმოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -135,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "შეიყვანეთ დისკის სახელი" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "მოათავსეთ დისკი დისკწამყვანში:" @@ -819,152 +827,152 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "განახლება -სკენ ვერსია ის" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "შეუძლებელია ყველა არსებული განახლების ჩაყენება" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "ვერსია %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "მიმდინარეობს ჩამოქაჩვა სია ის." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "ჩამოსატვირთის ზომა: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "თქვენ შეგიძლიათ %s განახლების ჩადგმა" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "განახლება გასრულებულია" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "ახალი ვერსია: %s (ზომა: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "ვერსია %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 #, fuzzy msgid "" "You will not get any further security fixes or critical updates. Upgrade to " @@ -974,17 +982,17 @@ msgstr "" "თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი " "იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 #, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " @@ -1346,200 +1354,215 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 განახლებები" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "არათავისუფალი (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "არათავისუფალი (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "არათავისუფალი (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "განახლებების _დაყენება" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 განახლებები" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 განახლებები" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "არათავისუფალი (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "არა" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 #, fuzzy msgid "Restricted copyright" msgstr "შეზღუდული" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 განახლებები" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" diff --git a/po/ko.po b/po/ko.po index 539fe6e8..f2212584 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-28 15:14+0000\n" "Last-Translator: darehanl \n" "Language-Team: Korean \n" @@ -17,109 +17,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "매일" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "이틀 마다" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "매주" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "두 주 마다" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "%s 일 마다" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "한 주 후에" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "두 주 후에" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "한 달 후에" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s 일 후에" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "업데이트를 설치(_I)" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "소프트웨어 업데이트" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "키 가져오기" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "선택한 파일 가져오기 오류" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "선택된 파일은 GPG 키 파일이 아니거나 잘못된 것입니다." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "키 삭제 오류" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "선택한 키를 지울 수 없습니다. 버그 리포팅 하십시오." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -130,11 +138,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "디스크에 사용할 이름을 입력하십시오." -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "드라이브에 디스크를 넣으십시오:" @@ -830,149 +838,149 @@ msgstr "%li 의 %li 파일 내려 받는 중, 속도 %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "%li 의 %li 파일 내려 받는 중, 속도 알 수 없음" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "바뀐 목록을 아직 이용할 수 없습니다. 잠시 후에 다시 해주시기 바랍니다." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "바뀐 목록을 아직 이용할 수 없습니다. 잠시 후에 다시 해주시기 바랍니다." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" "바뀐 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "우분투 5.10 보안 업데이트" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "우분투 최신 버젼으로 업그레이드 합니다." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "업데이트를 설치(_I)" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "설치할 수 없는 업데이트가 있습니다" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "버전 %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "바뀐 목록을 다운로드 하는 중..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "다운로드 크기: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 개의 업데이트를 설치할 수 있습니다." -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "잠시만 기다리십시오. 이 작업은 약간의 시간이 걸립니다." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "업데이트가 끝났습니다." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "새 버전: %s (크기: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "버전 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "더 이상 지원되지 않는 배포판입니다." -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -982,17 +990,17 @@ msgstr "" "그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" "서 보실 수 있습니다." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'를 이용할 수 있습니다" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1345,201 +1353,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 5.10 업데이트" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "커뮤니티에서 관리유지함 (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "자유소프트웨어 아님 (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "커뮤니티에서 관리유지함 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "커뮤니티에서 관리유지함 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "자유소프트웨어 아님 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "자유소프트웨어 아님 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "우분투 5.10 보안 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "업데이트를 설치(_I)" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "공식적으로 지원됨" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "우분투 5.10 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "우분투 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "공식적으로 지원됨" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "우분투 5.10 보안 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "우분투 5.10 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "우분투 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "커뮤니티에서 관리유지함 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "자유소프트웨어 아님 (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "더 이상 공식적으로 지원하지 않는 소프트웨어가 있습니다." #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "저작권 제한됨" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "우분투 5.10 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "우분투 5.10 Backports" diff --git a/po/ku.po b/po/ku.po index 32eb3214..2029bd01 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" @@ -17,108 +17,116 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Rojane" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Her du roj" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Heftane" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Her du hefte" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Her %s roj" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Piştî hefteyekê" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Piştî du hefte" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Piştî mehekê" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Piştî %s roj" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -126,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -757,163 +765,163 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Ubuntu tê bilindkirin" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Guhertoya %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Mezinahiya daxistinê: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Tu dikarî %s rojanekirinê saz bikî" msgstr[1] "Tu dikarî %s rojanekirinan saz bikî" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Rojanekirin temam bû" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Guhertoya %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1235,194 +1243,209 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Neazad (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Neazad (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neazad (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Bi piştgirtiya fermî" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Bi piştgirtiya fermî" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Neazad (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Bi piştgirtiya fermî" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/lt.po b/po/lt.po index f4691734..47688c99 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-28 20:07+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -17,110 +17,118 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" "100<10 || n%100>=20) ? 1 : 2);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Kasdien" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Kas dvi dienas" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Kas savaitę" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Kas dvi savaites" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Kas %s dienas" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Po savaitės" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Po dviejų savaičių" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Po mėnesio" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Po %s dienų" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Diegiami atnaujinimai" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Programinės įrangos atnaujinimai" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importuoti raktą" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Importuojant pasirinktą failą įvyko klaida" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Pasirinktas failas gali būti sugadintas arba ne GPG rakto failas." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Įveskite disko pavadinimą" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Įdėkite diską į įrenginį:" @@ -836,114 +844,114 @@ msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" msgid "Downloading file %li of %li with unknown speed" msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "Nepavyko atsiųsti pakeitimų sąrašo. Patikrinkite Interneto ryšį." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 saugumo atnaujinimai" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Atnaujinti iki naujausios Ubuntu versijos" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Negalima įdiegti visų galimų atnaujinimų" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versija %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Atsiunčiamas pakeitimų sąrašas..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -951,35 +959,35 @@ msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[1] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[2] "Rodyti ir įdiegti galimus atnaujinimus" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Palaukite, tai gali užtrukti." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Atnaujinimas užbaigtas" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nauja versija: %s (Dydis: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versija %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Jūsų distribucija daugiau nebepalaikoma" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -989,17 +997,17 @@ msgstr "" "Atnaujinkite į naujausią „Ubuntu Linux“ versiją. Daugiau informacijos apie " "atnaujinimą rasite http://www.ubuntu.com ." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1364,200 +1372,217 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 atnaujinimai" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Prižiūrima bendruomenės (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Ne Laisva (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 „Dapper Drake“" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Prižiūrima bendruomenės (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Prižiūrima bendruomenės (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Ne Laisva (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ne Laisva (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 „Dapper Drake“" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Diegiami atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficialiai palaikoma" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 „Breezy Badger“" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Prižiūrima oficialiai" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 „Breezy Badger“" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Prižiūrima bendruomenės (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Ne Laisva (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Apribotos autorinės teisės" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 atnaujinimai" diff --git a/po/mk.po b/po/mk.po index 41a8e55c..45c9194a 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -17,115 +17,123 @@ msgstr "" "Plural-Forms: nplurals=3; plural= n==1 || n%10==1 ? 0 : 1\n" "X-Generator: KBabel 1.10\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "Детали" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Инсталирам надградби..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Надградба на софтвер" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Изворен код" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Изворен код" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Грешка при увоз на избраната датотека" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Избраната датотека може да не е GPG датотека или пак може да е расипана." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -133,11 +141,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -784,16 +792,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Достапна е нова верзија на Убунту!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -802,101 +810,101 @@ msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Безбедносни надградби за Debian Stable" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 #, fuzzy msgid "Cannot install all available updates" msgstr "Проверувам за надградби..." -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Верзија %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, fuzzy, python-format msgid "Download size: %s" msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -904,53 +912,53 @@ msgstr[0] "Инсталирам надградби..." msgstr[1] "Инсталирам надградби..." msgstr[2] "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Верзија %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуција повеќе не е поддржана" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1294,202 +1302,220 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Надградби за Убунту 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Оддржувано од заедницата (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Додатен софтвер" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Оддржувано од заедницата (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Оддржувано од заедницата (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Неслободно (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Неслободно (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Забранет софтвер во САД" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Безбедносни надградби за Debian Stable" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Инсталирам надградби..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официјално поддржано" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Безбедносни надградби за Убунту 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Надградби за Убунту 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Надградби за Убунту 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Официјално поддржано" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "Безбедносни надградби за Убунту 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "Надградби за Убунту 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Надградби за Убунту 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Оддржувано од заедницата (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Неслободно (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Официјално поддржано" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Restricted copyright" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Безбедносни надградби за Убунту 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Надградби за Убунту 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Надградби за Убунту 5.10" @@ -1767,15 +1793,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "Бинарни" -#~ msgid "Contributed software" -#~ msgstr "Додатен софтвер" - #~ msgid "Non-free software" #~ msgstr "Неслободен софтвер" -#~ msgid "US export restricted software" -#~ msgstr "Забранет софтвер во САД" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 \"Woody\"" diff --git a/po/ms.po b/po/ms.po index c11414eb..c48e70bd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-30 13:49+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -17,111 +17,119 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Harian" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Setiap dua hari" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Mingguan" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Setiap dua minggu" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Setiap %s hari" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Selepas satu minggu" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Selepas dua minggu" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Selepas satu bulan" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Selepas %s hari" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Kekunci impot" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Ralat semasa mengimpot fail yang dipilih" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Fail yang dipilih mungkin bukan fail kekunci GPG atau fail mungkin rosak" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Ralat semasa mengeluarkan kekunci" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Kekunci yang anda pilih tidak dapat di keluarkan. Sila laporkan ini sebagai " "ralat pepijat." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -132,11 +140,11 @@ msgstr "" "↵\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Sila masukkan nama untuk cakera padat" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Sila masukkan cakera padat kedalam pemacu" @@ -796,162 +804,162 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1269,184 +1277,198 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/nb.po b/po/nb.po index fc7aedb4..9e675e7d 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-29 13:06+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -17,112 +17,120 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.10\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Daglig" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Annenhver dag" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Ukentlig" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Hver andre uke" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Hver %s dag" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Etter en uke" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Etter to uker" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Etter en måned" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Etter %s dager" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Installerer oppdateringer" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Programvareoppdateringer" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Kilde" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Kilde" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importer nøkkel" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Feil under importering av valgt fil" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Enten er valgt fil ikke en GPG-nøkkelfil, eller så er den kanskje skadet" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Kunne ikke fjerne nøkkelen" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -133,11 +141,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Vennligst oppgi et navn for platen" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Vennligst sett inn en plate i CD-spilleren:" @@ -848,16 +856,16 @@ msgstr "Laster ned filen %li av %li med %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Laster ned fil %li av %li ved ukjent hastighet" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Listen over endringer er ikke tilgjengelig ennå. Prøv senere." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Listen over endringer er ikke tilgjengelig ennå. Prøv senere." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -865,134 +873,134 @@ msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Oppgrader til siste versjon av Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Installerer oppdateringer" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Kan ikke installere alle tilgjengelige oppdateringer." -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versjon %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Laster ned listen med endringer..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Nedlastingsstørrelse: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s oppdatering" msgstr[1] "Du kan installere %s oppdateringer" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Vennligst vent, dette kan ta litt tid." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Oppdateringen er fullført" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny versjon: %s (Størrelse: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1002,17 +1010,17 @@ msgstr "" "oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." "ubuntu.com for mer informasjon om oppgradering." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1374,201 +1382,219 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Oppdateringer" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Vedlikeholdt av miljøet (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Bidratt programvare" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "US eksport begrenset programvare" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Installerer oppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offisielt støttet" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Oppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Offisielt støttet" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Oppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Noe programvare er ikke lenger offisielt støttet" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" @@ -1879,15 +1905,9 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "Binary" #~ msgstr "Binær" -#~ msgid "Contributed software" -#~ msgstr "Bidratt programvare" - #~ msgid "Non-free software" #~ msgstr "Non-free programvare" -#~ msgid "US export restricted software" -#~ msgstr "US eksport begrenset programvare" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 «Woody»" diff --git a/po/ne.po b/po/ne.po index c521494d..e20b5a99 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -18,112 +18,120 @@ msgstr "" "X-Generator: KBabel 1.9.1\n" "Plural-Forms: nplurals=2;plural=(n!=0)\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "विवरणहरु" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "सफ्टवेयर अद्यावधिकहरु" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "स्रोत" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "स्रोत" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "चयन गरिएको फाइल आयात गर्दा त्रुटि" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "चयन गरिएको फाइल जिपिजि कुञ्जि फइल नहुन सक्छ अथवा यो दुषित हुन सक्दछ" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -773,169 +781,169 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "युबन्टुको एउटा नयाँ विमोचन उपलब्ध छ!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "संस्करण %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, fuzzy, python-format msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" msgstr[1] "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "संस्करण %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "तपाईंको वितरण समर्थित छैन" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1279,206 +1287,224 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "योगदान गरिएको सफ्टवेयर" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "नन-फ्री (बहुभर्स)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "युएस निषेधित सफ्टवेयर" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "कार्यालय बाट समर्थित" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "कार्यालय बाट समर्थित" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "कार्यालय बाट समर्थित" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "निषेधित प्रतिलिपि अधिकार" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" @@ -1746,15 +1772,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "बाईनरी" -#~ msgid "Contributed software" -#~ msgstr "योगदान गरिएको सफ्टवेयर" - #~ msgid "Non-free software" #~ msgstr "नन-फ्री सफ्टवेयर" -#~ msgid "US export restricted software" -#~ msgstr "युएस निषेधित सफ्टवेयर" - #, fuzzy #~ msgid "Debian Unstable \"Sid\"" #~ msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" diff --git a/po/nl.po b/po/nl.po index 0039dc95..3979d843 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-24 01:32+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -16,113 +16,121 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Dagelijks" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Elke twee dagen" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Wekelijks" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Elke twee weken" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Elke %s dagen" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Na één week" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Na twee weken" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Na één maand" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Na %s dagen" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Up_dates installeren" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Software-updates" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Sleutel importeren" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Fout bij het importeren van het geselecteerde bestand." -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Het geselecteerde bestand is misschien geen GPG-sleutel, of het kan " "beschadigd zijn." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Fout bij het verwijderen van de sleutel" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "De door u geselecteerde sleutel kon niet verwijderd worden. Gelieve dit als " "fout te melden." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -133,11 +141,11 @@ msgstr "" "↵\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Geef het cd-schijfje een naam" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Plaats een schijf in de speler:" @@ -853,20 +861,20 @@ msgstr "Downloaden van bestand %li uit %li met %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " "Probeer het later nog eens." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " "Probeer het later nog eens." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -874,134 +882,134 @@ msgstr "" "Kon de lijst met wijzigingen niet downloaden. Controleer uw " "internetverbinding." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 veiligheidsupdates" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Upgrade naar de nieuwste versie van Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Kan de beschikbare updates niet installeren" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versie %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Het overzicht van de wijzigingen wordt gedownload..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Downloadgrootte: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "U kunt %s update installeren" msgstr[1] "U kunt %s updates installeren" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Een ogenblik geduld, dit kan even duren." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "De update is voltooid" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nieuwe versie: %s (Grootte: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versie %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Uw distributie wordt niet langer ondersteund" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1011,17 +1019,17 @@ msgstr "" "upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." "com voor meer informatie over upgraden." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Software-index is beschadigd" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1382,201 +1390,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 updates" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Door de gemeenschap beheerd (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Niet-vrij (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Door de gemeenschap beheerd (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Door de gemeenschap beheerd (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Niet-vrij (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Niet-vrij (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 veiligheidsupdates" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Up_dates installeren" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officieel ondersteund" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 updates" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Officieel ondersteund" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 updates" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Door de gemeenschap beheerd (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Niet-vrij (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Bepaalde software wordt niet meer officieel ondersteund" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Beperkte auteursrechten" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 updates" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 backports" diff --git a/po/no.po b/po/no.po index ce95de07..dbe32eff 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -17,113 +17,121 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.10\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "Detaljer" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Installerer oppdateringer..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Programvareoppdateringer" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Kilde" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Kilde" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Feil under importering av fil" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Den valgte filen er ikke en GPG-fil eller så er den skadet." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Feil under fjerning av nøkkel" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -778,169 +786,169 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "Feil under nedlasting av endringer. Sjekk tilkoblingen til internett." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Security Updates" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versjon %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, fuzzy, python-format msgid "Download size: %s" msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installerer oppdateringer..." msgstr[1] "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1283,205 +1291,223 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Updates" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Vedlikeholdt av miljøet (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Bidratt programvare" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Updates" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "US eksport begrenset programvare" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Installerer oppdateringer..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD med Ubuntu 5.10 «Breezy Badger»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Offisielt støttet" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD med Ubuntu 5.10 «Breezy Badger»" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Offisielt støttet" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Offisielt støttet" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Updates" @@ -1760,15 +1786,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "Binær" -#~ msgid "Contributed software" -#~ msgstr "Bidratt programvare" - #~ msgid "Non-free software" #~ msgstr "Non-free programvare" -#~ msgid "US export restricted software" -#~ msgstr "US eksport begrenset programvare" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 «Woody»" diff --git a/po/oc.po b/po/oc.po index 2a369d2a..c62d7e82 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-29 08:11+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -18,111 +18,119 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Cada jorn" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Cada dos jorns" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Cada setmana" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Cada dos setmanas" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Cada %s jorns" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Après una setmana" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Après dos setmanas" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Après un mes" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Après %s jorns" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importar clau" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Error al moment d'importar lo fichièr seleccionat" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Lo fichièr seleccionat es benlèj pas una clau GPG o es possible que siá " "corrumput." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Error al moment de suprimir la clau" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -133,11 +141,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Picatz un nom pel disc" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Metètz un disc dins lo legidor :" @@ -764,164 +772,164 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Metre a jorn Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Mesas a jorn per internet" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s : \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Talha de la descarga : %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podètz installar %s mesa a jorn" msgstr[1] "Podètz installar %s mesas a jorn" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s : \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1243,197 +1251,212 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Pas liure (multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Pas liure (multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pas liure (multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Pas liure (multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/pa.po b/po/pa.po index 396fec53..14d8ece1 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-04-28 23:31+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -17,110 +17,118 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.9.1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "ਵੇਰਵਾ" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -128,11 +136,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -763,164 +771,164 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." msgstr[1] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1252,185 +1260,199 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/pl.po b/po/pl.po index a54f3a7a..d82309de 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:59+0000\n" "Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" @@ -17,111 +17,119 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Codziennie" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Co dwa dni" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Co tydzień" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Co dwa tygodnie" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Co %s dni" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Po tygodniu" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Po dwóch tygodniach" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Po miesiącu" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Po %s dniach" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Instalowanie pakietów" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Aktualizacje oprogramowania" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Źródłowy" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Źródłowy" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Zaimportuj klucz" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Błąd podczas importowania wybranego pliku" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Wybrany plik może nie być kluczem GPG lub może być uszkodzony." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -132,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Proszę podać nazwę dla płyty" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Proszę włożyć płytę do napędu:" @@ -846,16 +854,16 @@ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -863,99 +871,99 @@ msgstr "" "Nie udało się pobrać informacji o zmianach. Proszę sprawdzić połączenie z " "Internetem." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Zaktualizuj do najnowszej wersji Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Instalowanie pakietów" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Nie można zainstalować wszystkich dostępnych aktualizacji" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Wersja %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Pobieranie informacji o zmianach..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Rozmiar do pobrania: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -963,35 +971,35 @@ msgstr[0] "Ilość dostępnych aktualizacji: %s" msgstr[1] "Ilość dostępnych aktualizacji: %s" msgstr[2] "Ilość dostępnych aktualizacji: %s" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Proszę czekać, to może chwilę potrwać." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Aktualizacja została ukończona." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nowa wersja: %s (Rozmiar: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Wersja %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Twoja dystrybucja nie jest już wspierana" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1001,17 +1009,17 @@ msgstr "" "krytycznych aktualizacji. Zaktualizuj do nowszej wersji Ubuntu Linux. " "Odwiedź http://www.ubuntu.com po więcej informacji." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1374,200 +1382,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Aktualizacje dla Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Utrzymywane przez społeczność (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Inne oprogramowanie (Contributed)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Utrzymywane przez społeczność (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Utrzymywane przez społeczność (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Nie-wolnodostępne (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Oprogramowanie objęte restrykcjami eksportowymi USA" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Instalowanie pakietów" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Wspierane oficjalnie" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 5.04" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Wspierane oficjalnie" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Utrzymywane przez społeczność (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Niektóre programy nie są już oficjalnie wspierane" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "O ograniczonych prawach kopiowania" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" @@ -1951,15 +1977,9 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Inne oprogramowanie (Contributed)" - #~ msgid "Non-free software" #~ msgstr "Oprogramowanie nie-wolnodostępne" -#~ msgid "US export restricted software" -#~ msgstr "Oprogramowanie objęte restrykcjami eksportowymi USA" - #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "Klucz automatycznego podpisu archiwum Ubuntu " diff --git a/po/pt.po b/po/pt.po index 1ed06dff..9c701587 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-24 10:17+0000\n" "Last-Translator: Joao Carvalhinho \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -15,112 +15,120 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Diariamente" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "De 2 em 2 dias" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Semanalmente" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "De 2 em 2 semanas" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Todos os %s dias" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Após uma semana" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Após duas semanas" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Após um mês" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Depois de %s dias" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "A instalar actualizações" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Actualizações de Software" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importar chave" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Erro ao importar ficheiro seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "O ficheiro seleccionado pode não ser um ficheiro de chave GPG ou pode estar " "corrompido." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Erro ao remover a chave" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -131,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Por favor introduza um nome para o disco" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Por favor introduza um disco no leitor:" @@ -847,18 +855,18 @@ msgstr "A descarregar ficheiro %li de %li a %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -866,134 +874,134 @@ msgstr "" "Falha a descarregar a lista de alterações. Por favor verifique a sua ligação " "à internet." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Actualizações de Segurança" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Actualize para a última versão do Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "A instalar actualizações" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Impossível de instalar todas as actualizações disponíveis" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versão %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "A descarregar lista de alterações..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Pode instalar %s actualização" msgstr[1] "Pode instalar %s actualizações" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Por favor aguarde, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "A actualização está completa" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nova versão: %s (Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versão %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "A sua distribuição já não é suportada" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1003,17 +1011,17 @@ msgstr "" "versão mais recente do Ubuntu Linux. Veja http://www.ubuntu.com para mais " "informação em como actualizar." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "O índice de software está quebrado" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1375,201 +1383,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Actualizações" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Mantido pela comunidade (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Não-livre (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Mantido pela comunidade (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Mantido pela comunidade (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Não-livre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Não-livre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "A instalar actualizações" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado Oficialmente" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Actualizações" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Suportado Oficialmente" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Actualizações" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Mantido pela comunidade (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Algum software já não é suportado oficialmente" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Direitos de autor restritos" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Actualizações" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" diff --git a/po/pt_BR.po b/po/pt_BR.po index 5a47815c..57131852 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-26 22:31+0000\n" "Last-Translator: KurtKraut \n" "Language-Team: Ubuntu-BR \n" @@ -16,115 +16,123 @@ msgstr "" "X-Poedit-Country: BRAZIL\n" "Plural-Forms: nplurals=2; plural=n > 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Diário" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "A cada dois dias" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Semanalmente" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "A cada duas semanas" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "A cada %s dias" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Após uma semana" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Após duas semanas" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Após um mês" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Após %s dias" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Instalando Atualizações" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Modificando os canais de programas" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importar Chave" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Erro importando o arquivo selecionado" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "O arquivo selecionado pode não ser um arquivo de chave GPG ou pode estar " "corrompido." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Erro removendo a chave" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que você selecionou não pôde se removida. Por favor reporte isto " "como um erro." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -135,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Por favor digite um nome para o disco" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Por favor insira um disco no drive:" @@ -850,20 +858,20 @@ msgstr "Obtendo arquivo %li de %li a %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "A lista de alterações não está disponível ainda. Por favor, tente novamente " "mais tarde." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "A lista de alterações não está disponível ainda. Por favor, tente novamente " "mais tarde." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -871,134 +879,134 @@ msgstr "" "Não foi possível baixar a lista de mudanças. Por favor, verifique sua " "conexão com a internet." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Atualizações de Segurança do Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Atualizar para a última versão do Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Instalando Atualizações" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Não foi possível instalar todas as atualizações disponíveis" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Obtendo a lista de alterações" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Você pode instalar %s atualização" msgstr[1] "Você pode instalar %s atualizações" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Por favor, espere, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Atualização completa" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "New version: %s (Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Sua distribuição não é mais suportada" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1008,17 +1016,17 @@ msgstr "" "falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. " "Veja http://www.ubuntu-br.org" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "A índex de software está quebrado" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1384,200 +1392,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Atualizações do Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Mantido pela Comunidade (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Contributed software" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Mantido pela Comunidade (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Mantido pela Comunidade (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Não-livre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Não-livre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "US export restricted software" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Instalando Atualizações" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suporte oficial" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Atualizações do Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Backports do Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Suportado Oficialmente" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Atualizações do Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Mantido pela Comunidade (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Alguns softwares não são mais oficialmente suportado." #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Restrito por copyright" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Atualizações do Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 5.10" @@ -2012,15 +2038,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Contributed software" - #~ msgid "Non-free software" #~ msgstr "Non-free software" -#~ msgid "US export restricted software" -#~ msgstr "US export restricted software" - #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "Ubuntu Archive Automatic Signing Key " diff --git a/po/ro.po b/po/ro.po index df181e9a..e4231744 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-24 17:39+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -17,116 +17,124 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n %\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Zilnic" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "La fiecare două zile" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Săptămânal" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "La fiecare 2 săptămâni" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "La fiecare %s zile" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "După o saptămână" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "După două săptămâni" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "După o lună" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "După %s zile" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_Instalează actualizarile" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Actualizări software" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "" "Binar\n" "Sursă" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "" "Binar\n" "Sursă" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 #, fuzzy msgid "Import key" msgstr "Importă cheie" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Eroare la importarea fişierului selectat" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Fişierul selectat nu pare a fi o cheie GPG sau poate fi corupt." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Eroare la ştergerea cheii." -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -137,11 +145,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Introduceţi un nume pentru disc" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Introduceţi un disc în unitate:" @@ -784,16 +792,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Nu există nici un pachet de actualizat." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -802,100 +810,100 @@ msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Actualizări de Securitate Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Se actualizează Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_Instalează actualizarile" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Versiunea %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Se descarcă listă schimbărilor..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -903,53 +911,53 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versiunea nouă: %s (Mărime: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Versiunea %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Distribuţia dvs. nu mai este suportată" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1295,202 +1303,220 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualizări Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Pachete întreţinute de comunitate (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Software în contribuţie" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Actualizări de securitate Ubuntu 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Pachete întreţinute de comunitate (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Pachete întreţinute de comunitate (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Pachete non-libere (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pachete non-libere (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Software cu restricţii de export din SUA" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Actualizări de securitate Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Actualizări de Securitate Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_Instalează actualizarile" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Pachete suportate oficial" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Actualizări Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualizări de securitate Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Actualizări de securitate Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Actualizări de securitate Ubuntu 5.04" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Pachete suportate oficial" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Actualizări Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualizări de securitate Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Pachete întreţinute de comunitate (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Pachete non-libere (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Pachete suportate oficial" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Copyright restrictiv" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizări de securitate Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Actualizări Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualizări de securitate Ubuntu 5.04" @@ -1738,15 +1764,9 @@ msgstr "" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Software în contribuţie" - #~ msgid "Non-free software" #~ msgstr "Software non-liber" -#~ msgid "US export restricted software" -#~ msgstr "Software cu restricţii de export din SUA" - #, fuzzy #~ msgid "" #~ "Available Updates\n" diff --git a/po/ru.po b/po/ru.po index aa147236..616a59c8 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-25 19:23+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -18,110 +18,118 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Ежедневно" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Каждые два дня" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Еженедельно" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Каждые две недели" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Каждые %s дней" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Через неделю" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Через две недели" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Через месяц" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Через %s дней" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Установить обновления" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Обновления программ" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Импортировать ключ" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Ошибка при импортировании выбранного файла" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Возможно выбранный файл не является файлом ключа GPG или поврежден." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Ошибка при удалении ключа" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -132,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Введите название для диска" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Пожалуйста, вставьте диск в привод:" @@ -843,18 +851,18 @@ msgstr "Загрузка файла %li из %li со скоростью %s/с" msgid "Downloading file %li of %li with unknown speed" msgstr "Загрузка файла %li из %li с неизвестной скоростью" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "" "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -862,99 +870,99 @@ msgstr "" "Не удалось загрузить список изменений. Пожалуйста, проверьте соединение с " "интернет." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Обновления безопасности Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Обновить систему до последней версии Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Установить обновления" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Невозможно установить все доступные обновления" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Версия %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Загрузка списка изменений..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Размер загружаемых данных: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -962,35 +970,35 @@ msgstr[0] "Вы можете установить %s обновление" msgstr[1] "Вы можете установить %s обновления" msgstr[2] "Вы можете установить %s обновлений" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Пожалуйста подождите, это может занять некоторое время." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Обновление завершено" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Новая версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Версия %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Ваша версия Ubuntu больше не поддерживается" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1000,17 +1008,17 @@ msgstr "" "обновления. Обновите систему до более поздней версии Ubuntu Linux. Для " "получения информации об обновлении посетите http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Индекс программ поврежден" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1369,201 +1377,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Обновления Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Поддерживается сообществом (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Несвободное (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Поддерживается сообществом (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Поддерживается сообществом (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Несвободное (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Несвободное (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Обновления безопасности Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Установить обновления" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официально поддерживается" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Обновления Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Официально поддерживается" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Обновления Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Поддерживается сообществом (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Несвободное (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Некоторые программы больше не поддерживаются официально" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Ограниченные авторские права" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Обновления Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" diff --git a/po/rw.po b/po/rw.po index c19cfd45..1eae4fdb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:44+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -24,114 +24,122 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "Error scaning the CD\n" @@ -139,11 +147,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -778,16 +786,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "ni a Gishya Bya Bihari" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -795,152 +803,152 @@ msgid "" msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "5" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, fuzzy, python-format msgid "Version %s: \n" msgstr "Verisiyo \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Iyimura... i" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Verisiyo \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ikwirakwiza... ni Oya" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1280,205 +1288,221 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "5" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Kohereza Nta gukoresha bisesuye" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Kigenga" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Kigenga" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Kohereza Nta gukoresha bisesuye" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Kwinjiza porogaramu" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "5" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "5" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 #, fuzzy msgid "Non-free (Multiverse)" msgstr "Kigenga" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 #, fuzzy msgid "Restricted copyright" msgstr "Uburenganzira bw'umuhimbyi" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "5" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "5" @@ -1802,10 +1826,6 @@ msgstr "" #~ msgid "Non-free software" #~ msgstr "Kigenga" -#, fuzzy -#~ msgid "US export restricted software" -#~ msgstr "Kohereza Nta gukoresha bisesuye" - #, fuzzy #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "com" diff --git a/po/sk.po b/po/sk.po index bab83ef0..8714b482 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-24 17:32+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -17,111 +17,119 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural= (n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Denne" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Každý druhý deň" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Raz týždenne" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Každý druhý týždeň" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Každých %s dní" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Po jednom týždni" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Po dvoch týždňoch" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Po mesiaci" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Po %s dňoch" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Nainštalovať _aktualizácie" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Aktualizácie softvéru" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Zdrojový" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Zdrojový" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importovať kľúč" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Chyba pri importovaní vybraného súboru" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Vybraný súbor nie je autentifikačným kľúčom GPG alebo je poškodený." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Chyba pri odstraňovaní kľúča" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -132,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Prosím, zadajte názov disku" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Prosím, vložte disk do mechaniky:" @@ -844,16 +852,16 @@ msgstr "Sťahovanie súboru %li z %li pri %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Zoznam zmien ešte nie je k dispozícii. Skúste neskôr." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Zoznam zmien ešte nie je k dispozícii. Skúste neskôr." -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -861,99 +869,99 @@ msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Aktualizovať na najnovšiu verziu Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Nainštalovať _aktualizácie" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Nebolo možné nainštalovať všetky dostupné aktualizácie" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Verzia %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Získava sa zoznam zmien..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Veľkosť na stiahnutie: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -961,35 +969,35 @@ msgstr[0] "Môžete nainštalovať %s aktualizáciu" msgstr[1] "Môžete nainštalovať %s aktualizácie" msgstr[2] "Môžete nainštalovať %s aktualizácií" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Čakajte prosím, toto môže chvíľu trvať." -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Aktualizácia je dokončená" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nová verzia: %s (veľkosť: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Verzia %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Vaša distribúcia už nie je podporovaná" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1000,17 +1008,17 @@ msgstr "" "Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." "com.\"" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Index softvéru je poškodený" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1375,201 +1383,219 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 - aktualizácie" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Udržiavané komunitou (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Softvér závislý na neslobornom softvéri" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Udržiavané komunitou (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Udržiavané komunitou (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Neslobodné (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neslobodné (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Softvér s obmedzených exportom pre USA" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Nainštalovať _aktualizácie" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálne podporované" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 - aktualizácie" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 - backporty" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Oficiálne podporované" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 - aktualizácie" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 - backporty" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Udržiavané komunitou (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Neslobodné (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Niektoré programy už nie sú viac oficiálne podporované" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "S obmedzujúcou licenciou" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 bezpečnostné aktualizácie" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 aktualizácie" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 - backporty" @@ -1922,15 +1948,9 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "Binary" #~ msgstr "Binárny" -#~ msgid "Contributed software" -#~ msgstr "Softvér závislý na neslobornom softvéri" - #~ msgid "Non-free software" #~ msgstr "Neslobodný softvér" -#~ msgid "US export restricted software" -#~ msgstr "Softvér s obmedzených exportom pre USA" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 \"Woody\"" diff --git a/po/sr.po b/po/sr.po index 67267f54..c2cd91c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-27 12:27+0000\n" "Last-Translator: Dejan Milosavljevic \n" "Language-Team: Serbian \n" @@ -18,108 +18,116 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Svaki dan" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Svaki drugi dan" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Svake nedelje" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Svake druge nedelje" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Svakih %s dana" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Posle jedne nedelje" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Posle dve nedelje" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Posle jednog meseca" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Posle %s dana" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importiranje kljuca" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -127,11 +135,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -760,110 +768,110 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -871,52 +879,52 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1234,183 +1242,197 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/sv.po b/po/sv.po index 73b452a0..34bd43c1 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:18+0000\n" "Last-Translator: Robin Sonefors \n" "Language-Team: Swedish \n" @@ -17,114 +17,122 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Dagligen" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Varannan dag" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Varje vecka" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Varannan vecka" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Var %s:e dag" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Efter en vecka" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Efter två veckor" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Efter en månad" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Efter %s dagar" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "%d uppdateringar" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, fuzzy, python-format +msgid "%s (%s)" +msgstr "%s - %s/s" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, fuzzy, python-format msgid "Server for %s" msgstr "Server" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Programvaruuppdateringar" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 #, fuzzy msgid "Active" msgstr "Aktivera" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Källkod" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Källkod" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Importera nyckel" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Fel vid importing av vald fil" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Den valda filen verkar inte vara en GPG-nyckel eller så är filen trasig." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Fel vid borttagning av nyckeln" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Nyckeln du valde kan inte tas bort. Var vänlig anmäl detta som en bugg." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -135,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Skriv in ett namn på skivan" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Sätt in en skiva i enheten:" @@ -847,16 +855,16 @@ msgstr "Hämtar hem fil %li av %li i %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Hämtar hem fil %li av %li med okänd hastighet" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Listan med ändringar är inte tillgänglig än. Försök igen senare" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "Listan med ändringar är inte tillgänglig än. Försök igen senare" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -864,137 +872,137 @@ msgstr "" "Misslyckades med att hämta listan med ändringar. Kontrollera din " "internetanslutning." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 #, fuzzy msgid "Recommended updates of Ubuntu" msgstr "%d uppdateringar" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Uppdatera till senaste versionen av Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Uppdateringar" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "Det går inte att installera alla tillgängliga uppdateringar" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "Hämtar lista med ändringar..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "Markera _inga" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "Markera _alla" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 #, fuzzy msgid "None" msgstr "en" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 #, fuzzy msgid "1 KB" msgstr "%d kB" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, fuzzy, python-format msgid "%.0f KB" msgstr "%.2f MB" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, fuzzy, python-format msgid "%.1f MB" msgstr "%.2f MB" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "Nerladdningsstorlek: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installera %s uppdatering" msgstr[1] "Du kan installera %s uppdateringar" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "Var god vänta, det här kan ta lite tid" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "Uppdateringen är färdig" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny version: %s (Storlek: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s:" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, fuzzy, python-format msgid "(Size: %s)" msgstr "Storlek:" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "Din distribution stöds inte längre" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -1004,17 +1012,17 @@ msgstr "" "till en senare version av Ubuntu Linux. Se http://www.ubuntu.com för mer " "information om att uppgradera." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "Indexet för program är trasigt" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1380,202 +1388,220 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Uppdateringar" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Gemenskapsunderhållen (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Bidragen programvara" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Gemenskapsunderhållen (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Gemenskapsunderhållen (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Ickefri (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ickefri (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Programvara med USA-exportbegränsningar" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 #, fuzzy msgid "Recommended updates" msgstr "%d uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "%d uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 #, fuzzy msgid "Backported updates" msgstr "%d uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Stöds officiellt" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "Stöds officiellt" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Bakåtportar" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Gemenskapsunderhållen (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Ickefri (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Viss programvara har inte längre officiellt stöd" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Begränsad upphovsrätt" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" @@ -1978,15 +2004,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "Bidragen programvara" - #~ msgid "Non-free software" #~ msgstr "Ickefri programvara" -#~ msgid "US export restricted software" -#~ msgstr "Programvara med USA-exportbegränsningar" - #~ msgid "Sources" #~ msgstr "Källor" @@ -3665,9 +3685,6 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "%%p%%%% (%s of %s) - %s/s" #~ msgstr "%%p%%%% (%s av %s) - %s/s" -#~ msgid "%s - %s/s" -#~ msgstr "%s - %s/s" - #~ msgid "Downloading data..." #~ msgstr "Hämtar data..." diff --git a/po/th.po b/po/th.po index 013adc5c..afcc2d56 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-24 16:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -16,109 +16,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "ทุกวัน" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "ทุก 2 วัน" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "ทุกอาทิตย์" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "ทุก 2 อาทิตย์" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "ทุก %s วัน" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "หลังจาก 1 อาทิตย์" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "หลังจาก 2 อาทิตย์" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "หลังจาก 1 เดือน" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "หลังจาก %s วัน" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "_ติดตั้งปรัยปรุง" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "ซอฟต์แวร์ปรับปรุง" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "นำเข้ากุญแจ" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "ไม่สามารถนำเข้าไฟล์ที่เลือกไว้" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "ไฟล์ที่เลือกไว้อาจจะไม่ใช่ GPG กุญแจไฟล์หรืออาจจะเสียหาย" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "มีปัญหาขณะลบกุจแจ" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -129,11 +137,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "กรุณาใส่ชื่อสำหรับแผ่นดิสก์" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "กรุณาใส่แผ่นดิสก์เข้าไปในเครื่อง:" @@ -807,149 +815,149 @@ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li msgid "Downloading file %li of %li with unknown speed" msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" "ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "อูบันตู 5.10 Security Updates" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "ปรับปรุงให้เป็นรุ่นล่าสุดของอูบันตู" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "_ติดตั้งปรัยปรุง" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "ไม่สามารถปรับปรุงทั้งหมดที่มีได้" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "รุ่น %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "กำลังดาวน์โหลดรายการของการเปลี่ยนแปลง..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "ขนาดดาวน์โหลด: %s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "คุณสามารถติดตั้ง %s รายการปรับปรุง" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "กรุณารอสักครู่ นี่อาจจะใช้เวลาสักหน่อย" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "ปรับปรุงเสร็จสิ้นแล้ว" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "รุ่นใหม่: %s (ขนาด: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "รุ่น %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "ชุดเผยแพร่(distribution)ของคุณไม่มีบริการสนับสนุนแล้ว" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -959,17 +967,17 @@ msgstr "" "ปรับปรุงขึ้นไปรุ่นถัดไปของอูบันตูลีนุกซ์ กรุณาอ่าน http://www.ubuntu.com " "สำหรับรายละเอียดเพิ่มเติมในการปรับปรุงรุ่น" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1318,201 +1326,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "อูบันตู 5.10 Updates" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "ชุมชนดูแล (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "ไม่ฟรี(ลิขสิทธิ์)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "ชุมชนดูแล (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "ชุมชนดูแล (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "ไม่ฟรี(ลิขสิทธิ์)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "อูบันตู 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "_ติดตั้งปรัยปรุง" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "สนับสนุนอย่างเป็นทางการ" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "อูบันตู 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "อูบันตู 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "อูบันตู 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "สนับสนุนอย่างเป็นทางการ" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "อูบันตู 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "อูบันตู 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "อูบันตู 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "อูบันตู 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "ชุมชนดูแล (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "ซอฟแวร์บางตัวไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "จำกัดลิขสิทธิ์" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "อูบันตู 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "อูบันตู 5.10 Backports" diff --git a/po/tr.po b/po/tr.po index bcf26874..f1a299ec 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Özgur KIRCALI \n" "Language-Team: Turkish \n" @@ -17,109 +17,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Günlük" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Her iki günde bir" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Haftalık" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Her iki haftada bir" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Her %s günde bir" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Bir hafta sonra" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "İki hafta sonra" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Bir ay sonra" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s gün sonra" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Kanal Düzenle" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Anahtar aktar" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Seçili dosyayı aktarmada hata" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Anahtar kaldırmada hata" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -130,11 +138,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Lütfen disk için bir isim girin" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Lütfen sürücüye bir disk yerleştirin:" @@ -778,162 +786,162 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1256,196 +1264,211 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Sınırlı telif hakkı" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi olarak desteklenenler" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Resmi olarak desteklenenler" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Resmi olarak desteklenenler" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Sınırlı telif hakkı" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" diff --git a/po/uk.po b/po/uk.po index d9e4931b..2b33d01f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Serhey Kusyumoff \n" "Language-Team: Ukrainian \n" @@ -15,113 +15,121 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "Подробиці" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 #, fuzzy msgid "Every two days" msgstr "Кожні %s днів" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Кожні %s днів" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Через %s днів" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Встановлення оновлень..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Оновлення програм" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Текст програми" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Текст програми" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "Імпортувати ключ" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Помилка імпорту вибраного файлу" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Вибраний файл, можливо, не є файлом GPG ключа або він пошкоджений." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Помилка видалення ключа" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -129,11 +137,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "Введіть назву диску" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "Вставте диск в пристрій:" @@ -800,16 +808,16 @@ msgstr "Завантажується файл %li of %li at %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Завантажується файл %li of %li на невизначенії швидкості" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Доступний новий випуск Ubuntu!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -817,102 +825,102 @@ msgid "" msgstr "" "не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Оновлення безпеки Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "Апгрейд системи Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Встановлення оновлень..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 #, fuzzy msgid "Cannot install all available updates" msgstr "Пошук пакунків для апгрейду" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Версія %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Завантаження змін" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -920,54 +928,54 @@ msgstr[0] "Неможливо провести апргрейд системи" msgstr[1] "Неможливо провести апргрейд системи" msgstr[2] "Неможливо провести апргрейд системи" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 #, fuzzy msgid "Update is complete" msgstr "Завантадення пакунків завершено" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Версія %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ваш дистрибутив вже не підтримується" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1312,205 +1320,223 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Оновлення Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Підтримується спільнотою (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Супутнє програмне забезпечення" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD диск з Ubuntu 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Оновлення Ubuntu 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Підтримується спільнотою (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Підтримується спільнотою (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Не-вільний (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Не-вільний (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "ПЗ під експортними обмеженнями США" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Оновлення Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Оновлення безпеки Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Встановлення оновлень..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск з Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Офіціально підтримуються" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск з Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Оновлення безпеки Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Оновлення Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Оновлення Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск з Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск з Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Офіціально підтримуються" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Оновлення безпеки Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Оновлення Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Оновлення Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск з Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Підтримується спільнотою (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Не-вільний (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск з Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Офіціально підтримуються" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Обмежені авторські права" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Оновлення безпеки Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Оновлення Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Оновлення Ubuntu 5.10" @@ -1772,15 +1798,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "Двійковий" -#~ msgid "Contributed software" -#~ msgstr "Супутнє програмне забезпечення" - #~ msgid "Non-free software" #~ msgstr "Не вільне програмне забезпечення" -#~ msgid "US export restricted software" -#~ msgstr "ПЗ під експортними обмеженнями США" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 \"Woody\"" diff --git a/po/update-manager.pot b/po/update-manager.pot index 8df83d5f..225e73e8 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,108 +17,116 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -126,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -756,162 +764,162 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1229,183 +1237,197 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/ur.po b/po/ur.po index 0ca4f881..0064ae7b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -17,109 +17,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "روز" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "ھر دو دن" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "ھفتھ وار" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "ھر دو ھفتے" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "ھر %s دن" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "ایک ھفتھ" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "دو ھفتھ باد" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "ایک ماھ باد" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "بعد %s دن" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 #, fuzzy msgid "Import key" msgstr "امپورٹ کی" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -127,11 +135,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -757,162 +765,162 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1231,183 +1239,197 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/urd.po b/po/urd.po index 19309f94..0a34f9a4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -17,109 +17,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "روز" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "ھر دو دن" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "ھفتھ وار" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "ھر دو ھفتے" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "ھر %s دن" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "ایک ھفتھ" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "دو ھفتھ باد" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "ایک ماھ باد" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "بعد %s دن" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 #, fuzzy msgid "Import key" msgstr "امپورٹ کی" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -127,11 +135,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -757,162 +765,162 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 msgid "Important security updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1231,183 +1239,197 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 msgid "Important security updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 msgid "Proposed updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/vi.po b/po/vi.po index d2b8372b..0c564a83 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -16,111 +16,119 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0\n" "X-Generator: LocFactoryEditor 1.2.2\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Hằng ngày" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "Hằng hai ngày" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "Hằng tuần" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "Hằng hai tuần" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "Hằng %s ngày" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "Sau một tuần" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "Sau hai tuần" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "Sau một tháng" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Sau %s ngày" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Bản cập nhật phần mềm" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "Nguồn" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "Nguồn" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "Gặp lỗi khi nhập tâp tin đã chọn" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -128,11 +136,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -766,16 +774,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Có một bản phát hành Ubuntu mới công bố." -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -784,153 +792,153 @@ msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 #, fuzzy msgid "Cannot install all available updates" msgstr "Đang kiểm tra có cập nhật..." -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "Phiên bản %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "Đang tải các thay đổi" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "Phiên bản %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Không còn hỗ trợ lại bản phát hành của bạn." -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1272,205 +1280,223 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Bản cập nhật Ubuntu 5.10" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "Do cộng đồng bảo quản (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "Phần mềm đã đóng góp" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "Do cộng đồng bảo quản (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "Do cộng đồng bảo quản (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "Không tự do (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Không tự do (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "Phần mềm bị giới hạn xuất Mỹ" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Đang cài đặt bản cập nhật..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Được hỗ trợ một cách chính thức" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Bản cập nhật Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "Được hỗ trợ một cách chính thức" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Bản cập nhật Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Bản cập nhật Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "Do cộng đồng bảo quản (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "Không tự do (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "Được hỗ trợ một cách chính thức" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "Bản quyền bị giới hạn" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Bản cập nhật Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" @@ -1713,15 +1739,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "Nhị phân" -#~ msgid "Contributed software" -#~ msgstr "Phần mềm đã đóng góp" - #~ msgid "Non-free software" #~ msgstr "Phần mềm không tự do" -#~ msgid "US export restricted software" -#~ msgstr "Phần mềm bị giới hạn xuất Mỹ" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 « Woody »" diff --git a/po/xh.po b/po/xh.po index 3150d03d..1fc12d1e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-04-20 19:15+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -17,109 +17,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "Bonisa izihlaziyo" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "Bonisa izihlaziyo" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -127,11 +135,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -757,165 +765,165 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Kukho i-%i yohlaziyo ekhoyo" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1241,185 +1249,199 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +msgid "Restricted software" +msgstr "" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" +#: ../data/channels/Ubuntu.info.in:79 +msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Bonisa izihlaziyo" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "Bonisa izihlaziyo" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 msgid "No longer oficially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index bf3055a0..b36da2ac 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-30 14:16+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -16,115 +16,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "每天" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "每两天" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "每周" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "每两周" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "每%s天" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "一周后" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "两周后" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "一月后" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s天后" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "安装更新" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "软件更新" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "" "二进制\n" "源代码" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "" "二进制\n" "源代码" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "导入密钥" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "在导入所选文件时出错" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "所选文件可能不是GPG密钥文件或者已经损坏." -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "删除密钥时候出错" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -135,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "请输入光盘的名称" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "请将光盘插入到光驱里:" @@ -803,148 +811,148 @@ msgstr "正在下载文件 %li/%li 速度是 %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "正在下载文件 %li/%li 速度未知" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "变动列表尚不可用。请稍后再试。" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "变动列表尚不可用。请稍后再试。" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "无法下载更新列表。请检查您的网络连接。" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 安全更新" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "升级到最新版本的Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "安装更新" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "无法安装所有升级" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "正在下载更新列表..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "下载文件大小:%s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "您的系统已为最新" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "你可以安装 %s 个更新" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "请稍等,这需要花一些时间。" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新版本:%s(大小:%s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "您的发行版不再被支持" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -954,17 +962,17 @@ msgstr "" "\r\n" "http://www.ubuntu.com 来获取更多有关升级的信息。" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "软件索引已被破坏" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1320,200 +1328,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 更新" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "社区维护(Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "贡献的软件" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6-06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "社区维护(Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "社区维护(Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "非自由(Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非自由(Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "美国限制出口的软件" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6-06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "安装更新" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支持" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 移植" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 安全更新" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 msgid "Oficially supported" msgstr "官方支持" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 移植" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "社区维护(Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "非自由(Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "一些软件已经不在被官方支持." #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "版权限制" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 移植" @@ -1764,11 +1790,5 @@ msgstr "非DFSG兼容软件" #~ msgid "CD" #~ msgstr "CD" -#~ msgid "Contributed software" -#~ msgstr "贡献的软件" - #~ msgid "Non-free software" #~ msgstr "非自由软件" - -#~ msgid "US export restricted software" -#~ msgstr "美国限制出口的软件" diff --git a/po/zh_HK.po b/po/zh_HK.po index 0f4a3c0e..65eb63ef 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -15,112 +15,120 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" msgstr "細節" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "正在安裝軟件更新..." -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "軟件更新" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 #, fuzzy msgid "(Source Code)" msgstr "源程式碼" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 #, fuzzy msgid "Source Code" msgstr "源程式碼" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "匯入指定檔案時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "選定的檔案可能不是 GPG 密碼匙,或者內容已損壞。" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -128,11 +136,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "" @@ -769,170 +777,170 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "Ubuntu 已推出新版本!" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 安全性更新" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 msgid "Updates of Ubuntu" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "正在安裝軟件更新..." -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 #, fuzzy msgid "Cannot install all available updates" msgstr "正在檢查更新套件..." -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 #, fuzzy msgid "Downloading the list of changes..." msgstr "正在下載更改紀錄" -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy msgid "Your system is up-to-date" msgstr "系統已經在最新狀態!" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "已經不再支援你用的發行版本" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1273,205 +1281,223 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 更新" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "協力維護軟件 (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "協力維護軟件" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 更新" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "協力維護軟件 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "協力維護軟件 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "非自由軟件 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非自由軟件 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:87 +#, fuzzy +msgid "By copyright or legal issues restricted software" +msgstr "美國禁止出口軟件" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 更新" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "正在安裝軟件更新..." #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 光碟 “Breezy Badger”" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "官方支援" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 光碟 “Breezy Badger”" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 光碟 “Hoary Hedgehog”" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 光碟 “Hoary Hedgehog”" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "官方支援" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "協力維護軟件 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "非自由軟件 (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "官方支援" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "版權受限" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 更新" @@ -1712,15 +1738,9 @@ msgstr "" #~ msgid "Binary" #~ msgstr "可執行檔" -#~ msgid "Contributed software" -#~ msgstr "協力維護軟件" - #~ msgid "Non-free software" #~ msgstr "非自由軟件" -#~ msgid "US export restricted software" -#~ msgstr "美國禁止出口軟件" - #~ msgid "Debian 3.0 \"Woody\"" #~ msgstr "Debian 3.0 “Woody”" diff --git a/po/zh_TW.po b/po/zh_TW.po index f73c1f29..62a2dc1f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-05 13:07+0200\n" +"POT-Creation-Date: 2006-09-10 01:15+0200\n" "PO-Revision-Date: 2006-05-31 12:00+0000\n" "Last-Translator: PCMan \n" "Language-Team: Chinese (Taiwan) \n" @@ -15,109 +15,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../SoftwareProperties/SoftwareProperties.py:135 +#: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "每天" -#: ../SoftwareProperties/SoftwareProperties.py:136 +#: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" msgstr "每兩天" -#: ../SoftwareProperties/SoftwareProperties.py:137 +#: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" msgstr "每周" -#: ../SoftwareProperties/SoftwareProperties.py:138 +#: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" msgstr "每隔兩周" -#: ../SoftwareProperties/SoftwareProperties.py:143 +#: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" msgstr "每隔 %s 天" -#: ../SoftwareProperties/SoftwareProperties.py:166 +#: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" msgstr "一週後" -#: ../SoftwareProperties/SoftwareProperties.py:167 +#: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" msgstr "兩週後" -#: ../SoftwareProperties/SoftwareProperties.py:168 +#: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" msgstr "一個月後" -#: ../SoftwareProperties/SoftwareProperties.py:173 +#: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "%s 天過後" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu -#: ../SoftwareProperties/SoftwareProperties.py:235 +#: ../SoftwareProperties/SoftwareProperties.py:252 #, fuzzy, python-format msgid "%s updates" msgstr "安裝更新套件(_I)" -#: ../SoftwareProperties/SoftwareProperties.py:294 +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" #. TRANSLATORS: %s is a country -#: ../SoftwareProperties/SoftwareProperties.py:298 -#: ../SoftwareProperties/SoftwareProperties.py:316 +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:302 +#: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:323 +#: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:580 -#: ../SoftwareProperties/SoftwareProperties.py:597 +#: ../SoftwareProperties/SoftwareProperties.py:601 +#: ../SoftwareProperties/SoftwareProperties.py:618 #, fuzzy msgid "Software Channel" msgstr "軟體更新" -#: ../SoftwareProperties/SoftwareProperties.py:588 -#: ../SoftwareProperties/SoftwareProperties.py:605 +#: ../SoftwareProperties/SoftwareProperties.py:609 +#: ../SoftwareProperties/SoftwareProperties.py:626 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:690 +#: ../SoftwareProperties/SoftwareProperties.py:711 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:696 +#: ../SoftwareProperties/SoftwareProperties.py:717 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:945 +#: ../SoftwareProperties/SoftwareProperties.py:966 msgid "Import key" msgstr "匯入金鑰" -#: ../SoftwareProperties/SoftwareProperties.py:955 +#: ../SoftwareProperties/SoftwareProperties.py:976 msgid "Error importing selected file" msgstr "匯入指定檔案時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:956 +#: ../SoftwareProperties/SoftwareProperties.py:977 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "選定的檔案可能不是 GPG 金鑰,或者內容已損壞。" -#: ../SoftwareProperties/SoftwareProperties.py:968 +#: ../SoftwareProperties/SoftwareProperties.py:989 msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:969 +#: ../SoftwareProperties/SoftwareProperties.py:990 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" -#: ../SoftwareProperties/SoftwareProperties.py:1015 +#: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" "Error scaning the CD\n" @@ -128,11 +136,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1072 +#: ../SoftwareProperties/SoftwareProperties.py:1093 msgid "Please enter a name for the disc" msgstr "請輸入光碟的名稱" -#: ../SoftwareProperties/SoftwareProperties.py:1088 +#: ../SoftwareProperties/SoftwareProperties.py:1109 msgid "Please insert a disc in the drive:" msgstr "請將光碟放入光碟機:" @@ -796,149 +804,149 @@ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" msgid "Downloading file %li of %li with unknown speed" msgstr "正在下載檔案 %li/%li,下載速度不明" -#: ../UpdateManager/UpdateManager.py:187 +#: ../UpdateManager/UpdateManager.py:197 #, fuzzy msgid "The list of changes is not available" msgstr "修改紀錄不存在,請稍後再試。" -#: ../UpdateManager/UpdateManager.py:193 +#: ../UpdateManager/UpdateManager.py:203 msgid "The list of changes is not available yet. Please try again later." msgstr "修改紀錄不存在,請稍後再試。" -#: ../UpdateManager/UpdateManager.py:198 +#: ../UpdateManager/UpdateManager.py:208 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "無法下載更動列表。請檢查網路連線是否正常。" -#: ../UpdateManager/UpdateManager.py:218 +#: ../UpdateManager/UpdateManager.py:228 #, fuzzy msgid "Important security updates of Ubuntu" msgstr "Ubuntu 5.10 安全性更新" -#: ../UpdateManager/UpdateManager.py:220 +#: ../UpdateManager/UpdateManager.py:230 msgid "Recommended updates of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:222 +#: ../UpdateManager/UpdateManager.py:232 msgid "Proposed updates for Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:223 +#: ../UpdateManager/UpdateManager.py:233 msgid "Backports of Ubuntu" msgstr "" -#: ../UpdateManager/UpdateManager.py:224 +#: ../UpdateManager/UpdateManager.py:234 #, fuzzy msgid "Updates of Ubuntu" msgstr "升級到最新版本的 Ubuntu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:232 ../UpdateManager/UpdateManager.py:245 +#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 #, fuzzy msgid "Other updates" msgstr "安裝更新套件(_I)" -#: ../UpdateManager/UpdateManager.py:266 +#: ../UpdateManager/UpdateManager.py:276 msgid "Cannot install all available updates" msgstr "無法安裝所有更新套件" -#: ../UpdateManager/UpdateManager.py:267 +#: ../UpdateManager/UpdateManager.py:277 msgid "" -"Some of the updates require more extensive changesthan expected.\n" +"Some of the updates require more extensive changes than expected.\n" "\n" -"This usually mean that your system is not fully upgraded or that you run a " +"This usually means that you have enabled unoffical repositories, that it is " +"not fully upgraded from the last distribution release or that you run a " "development release of the distribution.\n" "\n" "Would you like to perform a full distribution upgrade now?" msgstr "" -#: ../UpdateManager/UpdateManager.py:461 +#: ../UpdateManager/UpdateManager.py:474 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:522 +#: ../UpdateManager/UpdateManager.py:535 msgid "Downloading the list of changes..." msgstr "正在下載修改紀錄..." -#: ../UpdateManager/UpdateManager.py:546 +#: ../UpdateManager/UpdateManager.py:559 msgid "Select _None" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:565 msgid "Select _All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:596 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:594 +#: ../UpdateManager/UpdateManager.py:599 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:597 +#: ../UpdateManager/UpdateManager.py:602 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:600 +#: ../UpdateManager/UpdateManager.py:605 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:608 ../UpdateManager/UpdateManager.py:618 -#: ../UpdateManager/UpdateManager.py:642 +#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 #, python-format msgid "Download size: %s" msgstr "下載大小:%s" -#: ../UpdateManager/UpdateManager.py:627 +#: ../UpdateManager/UpdateManager.py:632 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../UpdateManager/UpdateManager.py:638 +#: ../UpdateManager/UpdateManager.py:643 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "您可以安裝 %s 個更新" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:671 +#: ../UpdateManager/UpdateManager.py:676 msgid "Please wait, this can take some time." msgstr "請稍候,這可能需要一點時間。" -#: ../UpdateManager/UpdateManager.py:673 +#: ../UpdateManager/UpdateManager.py:678 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新版本:%s (大小:%s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:834 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:836 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:846 msgid "Your distribution is not supported anymore" msgstr "您正使用的發行版本已不再支援" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:847 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 " @@ -947,17 +955,17 @@ msgstr "" "您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " "http://www.ubuntu.com以取得更多升級資訊。" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:866 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:901 msgid "Software index is broken" msgstr "軟體索引損壞" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 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 terminal to fix " @@ -1306,201 +1314,218 @@ msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description -#: ../data/channels/Ubuntu.info.in:7 +#: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 更新" +#. CompDescription +#: ../data/channels/Ubuntu.info.in:15 +#, fuzzy +msgid "Community maintained" +msgstr "協力維護軟體 (Universe)" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:20 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:23 +#, fuzzy +msgid "Restricted software" +msgstr "非自由軟體 (Multiverse)" + #. Description -#: ../data/channels/Ubuntu.info.in:28 +#: ../data/channels/Ubuntu.info.in:29 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:69 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 ‘Dapper Drake‘" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:73 -msgid "" -"OpenSource software that is officially supported by Canonical Ltd. (main)" +#: ../data/channels/Ubuntu.info.in:75 +msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:76 +#: ../data/channels/Ubuntu.info.in:78 #, fuzzy msgid "Community maintained (universe)" msgstr "協力維護軟體 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:77 -msgid "OpenSource software that is maintained by the community (universe)" -msgstr "" +#: ../data/channels/Ubuntu.info.in:79 +#, fuzzy +msgid "Community maintained Open Source software" +msgstr "協力維護軟體 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:80 +#: ../data/channels/Ubuntu.info.in:82 #, fuzzy msgid "Non-free drivers" msgstr "非自由軟體 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:81 -msgid "Proprietary drivers for devices (restricted) " +#: ../data/channels/Ubuntu.info.in:83 +msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:84 +#: ../data/channels/Ubuntu.info.in:86 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非自由軟體 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:85 -msgid "Software that is restricted by copyright or legal issues (multiverse)" +#: ../data/channels/Ubuntu.info.in:87 +msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:90 +#: ../data/channels/Ubuntu.info.in:92 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 ‘Dapper Drake‘" #. Description -#: ../data/channels/Ubuntu.info.in:104 +#: ../data/channels/Ubuntu.info.in:106 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:111 +#: ../data/channels/Ubuntu.info.in:113 msgid "Recommended updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:118 +#: ../data/channels/Ubuntu.info.in:120 #, fuzzy msgid "Proposed updates" msgstr "安裝更新套件(_I)" #. Description -#: ../data/channels/Ubuntu.info.in:125 +#: ../data/channels/Ubuntu.info.in:127 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:131 +#: ../data/channels/Ubuntu.info.in:134 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 ‘Breezy Badger’" #. CompDescription -#: ../data/channels/Ubuntu.info.in:134 ../data/channels/Debian.info.in:51 +#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支援" #. Description -#: ../data/channels/Ubuntu.info.in:148 +#: ../data/channels/Ubuntu.info.in:151 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 ‘Breezy Badger’" #. Description -#: ../data/channels/Ubuntu.info.in:162 +#: ../data/channels/Ubuntu.info.in:165 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:169 +#: ../data/channels/Ubuntu.info.in:172 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:176 +#: ../data/channels/Ubuntu.info.in:179 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 回移套件" #. Description -#: ../data/channels/Ubuntu.info.in:182 +#: ../data/channels/Ubuntu.info.in:186 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 ‘Breezy Badger’" #. Description -#: ../data/channels/Ubuntu.info.in:199 +#: ../data/channels/Ubuntu.info.in:203 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:207 #, fuzzy msgid "Oficially supported" msgstr "官方支援" #. Description -#: ../data/channels/Ubuntu.info.in:213 +#: ../data/channels/Ubuntu.info.in:217 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:220 +#: ../data/channels/Ubuntu.info.in:224 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:227 +#: ../data/channels/Ubuntu.info.in:231 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 回移套件" #. Description -#: ../data/channels/Ubuntu.info.in:233 +#: ../data/channels/Ubuntu.info.in:237 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 ‘Breezy Badger’" #. CompDescription -#: ../data/channels/Ubuntu.info.in:242 +#: ../data/channels/Ubuntu.info.in:246 msgid "Community maintained (Universe)" msgstr "協力維護軟體 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:245 +#: ../data/channels/Ubuntu.info.in:249 msgid "Non-free (Multiverse)" msgstr "非自由軟體 (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:250 +#: ../data/channels/Ubuntu.info.in:254 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:258 #, fuzzy msgid "No longer oficially supported" msgstr "有些軟體不再有官方支援" #. CompDescription -#: ../data/channels/Ubuntu.info.in:257 +#: ../data/channels/Ubuntu.info.in:261 msgid "Restricted copyright" msgstr "版權受限制" #. Description -#: ../data/channels/Ubuntu.info.in:264 +#: ../data/channels/Ubuntu.info.in:268 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:271 +#: ../data/channels/Ubuntu.info.in:275 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:278 +#: ../data/channels/Ubuntu.info.in:282 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 回移套件" diff --git a/tests/data/sources.list.testDistribution b/tests/data/sources.list.testDistribution index 031e4c51..1687c504 100644 --- a/tests/data/sources.list.testDistribution +++ b/tests/data/sources.list.testDistribution @@ -6,4 +6,6 @@ deb http://de.archive.ubuntu.com/ubuntu/ edgy-updates restricted deb http://de.archive.ubuntu.com/ubuntu/ edgy-security main deb http://de.archive.ubuntu.com/ubuntu/ edgy-security multiverse deb http://ftp.debian.org/debian sid main -deb http://de.archive.ubuntu.com/ubuntu/ breezy main \ No newline at end of file +deb ftp://ubuntu.cs.utah.edu/pub/ubuntu/ubuntu/ breezy main +deb ftp://ubuntu.cs.utah.edu/pub/ubuntu/ubuntu/ breezy-backports main +deb http://archive.ubuntu.com/ubuntu/ hoary main diff --git a/tests/test_aptsources.py b/tests/test_aptsources.py index 1db99e3c..3ee106be 100644 --- a/tests/test_aptsources.py +++ b/tests/test_aptsources.py @@ -81,6 +81,15 @@ class TestAptSources(unittest.TestCase): sources = aptsources.SourcesList() distro = aptsources.Distribution() distro.get_sources(sources) + # test if all suits of the current distro were detected correctly + dist_templates = set() + for s in sources: + if s.template: + dist_templates.add(s.template.name) + #print dist_templates + for d in ["edgy","edgy-security","edgy-updates","hoary","breezy", "breezy-backports"]: + self.assertTrue(d in dist_templates) + # test enable comp = "restricted" distro.enable_component(sources, comp) found = {} @@ -103,8 +112,8 @@ class TestAptSources(unittest.TestCase): found = {} for entry in sources: if (entry.type == "deb" and - entry.uri == "http://de.archive.ubuntu.com/ubuntu/" and - "edgy" in entry.dist): + entry.template and + entry.template.name == "edgy"): for c in entry.comps: if c == comp: if not found.has_key(entry.dist): -- cgit v1.2.3 From 698f03ea61b8a3b466f97f26ac21746c3a4efecb Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 11 Sep 2006 09:46:26 +0200 Subject: * updated changelog * added two other known bugs --- debian/changelog | 4 +++- debian/control | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index d83e1323..413dcfce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,8 +4,10 @@ update-manager (0.44.10) edgy; urgency=low - fix add_component() to avoid duplicated components - added MirrorsFile key to DistInfo code to have a better idea about the available mirrors + * debian/control: + - updated dbus dependencies (lp: #59862) - -- Michael Vogt Sun, 10 Sep 2006 00:01:29 +0200 + -- Michael Vogt Mon, 11 Sep 2006 09:38:21 +0200 update-manager (0.44.9) edgy; urgency=low diff --git a/debian/control b/debian/control index af942223..e3c72b8d 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Standards-Version: 3.6.2 Package: update-manager Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes +Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus Recommends: python-gnome2 Description: GNOME application that manages apt updates This is the GNOME apt update manager. It checks for updates and lets the user -- cgit v1.2.3 From f9f8e93cdca876b011b18dc96dd7162ad4c030af Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 11 Sep 2006 10:13:06 +0200 Subject: * added BUGS file --- BUGS | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 BUGS diff --git a/BUGS b/BUGS new file mode 100644 index 00000000..d1955490 --- /dev/null +++ b/BUGS @@ -0,0 +1,5 @@ +* aptsources.py: +- when turning off a new sources.list entry for the runing distro + (e.g. multiverse in a full edgy) and it is turned on again, the + source code checkbox becomes only half-checked +- when turning off/on a entry the comments become disordered -- cgit v1.2.3 From 4530643d34b9a9d469872a6d128e44e126095cf3 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 12:45:31 +0200 Subject: * use PANGO_ELLIPSIZE_END for the action label in the progress dialog to avoid ugly resizes of the dialog * replace "exmaing system" by "starting update manager" to avoid the confusion with checking for updates --- data/glade/UpdateManager.glade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/glade/UpdateManager.glade b/data/glade/UpdateManager.glade index 372be566..bb78008c 100644 --- a/data/glade/UpdateManager.glade +++ b/data/glade/UpdateManager.glade @@ -1373,7 +1373,7 @@ Your system does not check for updates automatically. You can configure this beh True - <big><b>Examining your system</b></big> + <big><b>Starting update manager</b></big> Software updates correct errors, eliminate security vulnerabilities and provide new features. False @@ -1431,7 +1431,7 @@ Software updates correct errors, eliminate security vulnerabilities and provide 0.5 0 0 - PANGO_ELLIPSIZE_NONE + PANGO_ELLIPSIZE_END -1 False 0 -- cgit v1.2.3 From 45d74191b4d72141c907ab9bd147b64787086f14 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 14:54:26 +0200 Subject: * replace "Ubuntu Upgrade" by "System Upgrade" - +1 for derivats * remove obsolete sample text in the obsolete dialog * convert glade files to glade3 * make sure that the tasks are always left aligned in the main window --- DistUpgrade/DistUpgrade.glade | 3152 +++++++++++++++++++++++++---------------- 1 file changed, 1934 insertions(+), 1218 deletions(-) diff --git a/DistUpgrade/DistUpgrade.glade b/DistUpgrade/DistUpgrade.glade index dbe7911d..ba55ace0 100644 --- a/DistUpgrade/DistUpgrade.glade +++ b/DistUpgrade/DistUpgrade.glade @@ -1,726 +1,1205 @@ - - - + + + - - True - 6 - Upgrading Ubuntu - False - GTK_WIN_POS_CENTER - True - - - - - True - 12 - - - True - 6 - 12 - - - True - 0.000000 - <span weight="bold" size="x-large">Upgrading to Ubuntu 6.10</span> - True - - - False - False - - - - - True - - - True - - - - False - False - - - - - True - 5 - 2 - 6 - 6 - - - True - 0.000000 - Restarting the system - - - 1 - 2 - 4 - 5 - GTK_FILL - - - - - - 18 - 18 - True - - - 4 - 5 - GTK_FILL - - - - - 18 - 18 - True - - - GTK_FILL - - - - - True - 0.000000 - Cleaning up - - - 1 - 2 - 3 - 4 - GTK_EXPAND | GTK_SHRINK | GTK_FILL - - - - - - True - 0.000000 - Fetching and installing the upgrades - - - 1 - 2 - 2 - 3 - GTK_EXPAND | GTK_SHRINK | GTK_FILL - - - - - - True - 0.000000 - Modifying the software channels - - - 1 - 2 - 1 - 2 - GTK_EXPAND | GTK_SHRINK | GTK_FILL - - - - - - True - 0.000000 - Preparing the upgrade - - - 1 - 2 - GTK_EXPAND | GTK_SHRINK | GTK_FILL - - - - - - 18 - 18 - True - - - 3 - 4 - GTK_FILL - - - - - 18 - 18 - True - - - 2 - 3 - GTK_FILL - - - - - 18 - 18 - True - - - 1 - 2 - GTK_FILL - - - - - 1 - - - - - 1 - - - - - True - 4 - - - 350 - True - 0.1 - - PANGO_ELLIPSIZE_END - - - False - False - - - - - True - 0.000000 - True - PANGO_ELLIPSIZE_END - - - False - False - 1 - - - - - 2 - - - - - True - False - True - 4 - - - True - - - True - create_terminal - - - - - True - 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 - - - False - 1 - - - - - - - True - Terminal - - - label_item - - - - - 3 - - - - - - - - - 6 - False - GTK_WIN_POS_CENTER_ON_PARENT - 500 - 400 - GDK_WINDOW_TYPE_HINT_DIALOG - True - True - True - False - - - True - 6 - - - True - 6 - 12 - - - True - 0.000000 - 0.000000 - gtk-dialog-question - 6 - - - False - - - - - True - 12 - - - True - True - 0.000000 - True - True - True - - - False - False - - - - - True - 0.000000 - True - True - - - False - False - 1 - - - - - True - True - 6 - - - 400 - 200 - True - True - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - - - True - True - False - - - - - - - True - Details - - - label_item - - - - - 2 - - - - - 1 - - - - - 1 - - - - - True - GTK_BUTTONBOX_END - - - True - True - True - gtk-cancel - True - -6 - - - - - True - True - True - _Start Upgrade - True - -8 - - - 1 - - - - - False - GTK_PACK_END - - - - - - - 6 - False - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - True - True - True - False - - - True - 12 - - - True - 6 - 12 - - - True - 0.000000 - 0.000000 - gtk-dialog-info - 6 - - - False - - - - - True - 0.000000 - 0.000000 - <b><big>Restart the system to complete the upgrade</big></b> - True - - - False - False - 1 - - - - - 1 - - - - - True - GTK_BUTTONBOX_END - - - True - True - True - -8 - - - True - 0.000000 - 0.000000 - - - True - 2 - - - True - gtk-refresh - - - False - False - - - - - True - _Restart Now - True - - - False - False - 1 - - - - - - - - - - - True - True - True - gtk-close - True - -7 - - - 1 - - - - - False - GTK_PACK_END - - - - - - - 6 - False - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - True - True - True - False - - - True - 12 - - - True - 6 - 12 - - - True - 0.000000 - 0.000000 - gtk-dialog-error - 6 - - - False - - - - - True - 12 - - - True - True - 0.000000 - True - True - True - - - False - - - - - 400 - 200 - True - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - - - True - True - 4 - 4 - False - 4 - 4 - - - - - 1 - - - - - 1 - - - - - 1 - - - - - True - GTK_BUTTONBOX_END - - - True - True - True - _Report Bug - True - -8 - - - - - True - True - True - True - gtk-close - True - -7 - - - 1 - - - - - False - GTK_PACK_END - - - - - - - 6 - False - GTK_WIN_POS_CENTER_ON_PARENT - 500 - 400 - GDK_WINDOW_TYPE_HINT_DIALOG - True - True - True - False - - - True - 6 - - - True - 6 - 12 - - - True - 12 - - - True - 0.000000 - 0.000000 - gtk-dialog-question - 6 - - - False - - - - - True - 12 - - - True - 0.000000 - 0.000000 - <b><big>Start the upgrade?</big></b> - True - True - - - False - False - - - - - True - 0.000000 - 0.000000 - The upgrade of your system requires + + + 6 + True + System Upgrade + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER + False + False + False + True + False + False + GDK_WINDOW_TYPE_HINT_NORMAL + GDK_GRAVITY_NORTH_WEST + True + True + + + + + + True + False + 12 + + + + 6 + True + False + 12 + + + + True + + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + 0 + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + 5 + 2 + False + 6 + 6 + + + + 18 + 18 + True + 0.5 + 0.5 + 0 + 0 + + + 0 + 1 + 4 + 5 + + + + + + + 18 + 18 + True + 0.5 + 0.5 + 0 + 0 + + + 0 + 1 + 0 + 1 + + + + + + + 18 + 18 + True + 0.5 + 0.5 + 0 + 0 + + + 0 + 1 + 3 + 4 + + + + + + + 18 + 18 + True + 0.5 + 0.5 + 0 + 0 + + + 0 + 1 + 2 + 3 + + + + + + + 18 + 18 + True + 0.5 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + + + + + + + True + Preparing the upgrade + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 1 + 2 + 0 + 1 + fill + + + + + + + True + Modifying the software channels + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 1 + 2 + 1 + 2 + fill + + + + + + + True + Fetching and installing the upgrades + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 1 + 2 + 2 + 3 + fill + + + + + + + True + Cleaning up + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 1 + 2 + 3 + 4 + fill + + + + + + + True + Restarting the system + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 1 + 2 + 4 + 5 + fill + + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + True + False + 4 + + + + 350 + True + GTK_PROGRESS_LEFT_TO_RIGHT + 0 + 0.10000000149 + + PANGO_ELLIPSIZE_END + + + 0 + False + False + + + + + + True + + False + False + GTK_JUSTIFY_LEFT + True + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_END + -1 + False + 0 + + + 0 + False + False + + + + + 0 + True + True + + + + + + True + False + True + False + 4 + + + + True + False + 0 + + + + True + create_terminal + 0 + 0 + Mon, 11 Sep 2006 12:48:22 GMT + + + 0 + True + True + + + + + + True + GTK_UPDATE_CONTINUOUS + False + 0 0 0 0 0 0 + + + 0 + False + True + + + + + + + + True + Terminal + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + label_item + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + + + 6 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER_ON_PARENT + False + 500 + 400 + False + False + True + True + True + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + True + False + + + + True + False + 6 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + True + -6 + + + + + + True + True + True + _Start Upgrade + True + GTK_RELIEF_NORMAL + True + -8 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + gtk-dialog-question + 6 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + False + 12 + + + + True + True + + False + True + GTK_JUSTIFY_LEFT + True + True + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + + False + True + GTK_JUSTIFY_LEFT + True + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + True + False + 6 + + + + 400 + 200 + True + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + False + False + False + True + False + False + False + + + + + + + + True + Details + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + label_item + + + + + 0 + True + True + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + + + 6 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER_ON_PARENT + False + False + False + True + True + True + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + True + False + + + + True + False + 12 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + GTK_RELIEF_NORMAL + True + -8 + + + + True + 0.5 + 0.5 + 0 + 0 + 0 + 0 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-refresh + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + _Restart Now + True + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + + + + + + + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + True + -7 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + gtk-dialog-info + 6 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + <b><big>Restart the system to complete the upgrade</big></b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + 0 + True + True + + + + + + + + 6 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER_ON_PARENT + False + False + False + True + True + True + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + True + False + + + + True + False + 12 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + _Report Bug + True + GTK_RELIEF_NORMAL + True + -8 + + + + + + True + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + True + -7 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + gtk-dialog-error + 6 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + False + 12 + + + + True + True + + False + True + GTK_JUSTIFY_LEFT + True + True + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + True + + + + + + 400 + 200 + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + False + False + True + GTK_JUSTIFY_LEFT + GTK_WRAP_NONE + True + 4 + 4 + 0 + 4 + 4 + 0 + + + + + + 0 + True + True + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + + + 6 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER_ON_PARENT + False + 500 + 400 + False + False + True + True + True + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + True + False + + + + True + False + 6 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + True + -6 + + + + + + True + True + True + _Continue + True + GTK_RELIEF_NORMAL + True + -8 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + False + 12 + + + + True + gtk-dialog-question + 6 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + False + 12 + + + + True + <b><big>Start the upgrade?</big></b> + False + True + GTK_JUSTIFY_LEFT + True + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + The upgrade of your system requires ... to download 2000 MByte @@ -729,502 +1208,739 @@ ... to update 200 packages This is you last chance to cancel the upgrade. - True - - - False - False - 1 - - - - - True - True - - - 400 - 200 - True - True - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - - - True - True - False - - - - - - - True - Details - - - label_item - - - - - False - False - 2 - - - - - False - False - 1 - - - - - False - False - - - - - 1 - - - - - True - GTK_BUTTONBOX_END - - - True - True - True - gtk-cancel - True - -6 - - - - - True - True - True - _Continue - True - -8 - - - 1 - - - - - False - GTK_PACK_END - - - - - - - 6 - False - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - True - True - True - False - - - True - 12 - - - True - 6 - 12 - - - True - 0.000000 - 0.000000 - gtk-dialog-question - 6 - - - False - - - - - True - 0.000000 - 0.000000 - <b><big>Cancel the running upgrade?</big></b> + False + False + GTK_JUSTIFY_LEFT + True + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + True + False + 0 + + + + 400 + 200 + True + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + False + False + False + True + False + False + False + + + + + + + + True + Details + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + label_item + + + + + 0 + False + False + + + + + 0 + False + False + + + + + 0 + False + False + + + + + 0 + True + True + + + + + + + + 6 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER_ON_PARENT + False + False + False + True + True + True + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + True + False + + + + True + False + 12 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + _Cancel Upgrade + True + GTK_RELIEF_NORMAL + True + -6 + + + + + + True + True + True + True + _Resume Upgrade + True + GTK_RELIEF_NORMAL + True + -5 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + gtk-dialog-question + 6 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + <b><big>Cancel the running upgrade?</big></b> The system could be in an unusable state if you cancel the upgrade. You are strongly adviced to resume the upgrade. - True - True - - - False - False - 1 - - - - - 1 - - - - - True - GTK_BUTTONBOX_END - - - True - True - True - _Cancel Upgrade - True - -6 - - - - - True - True - True - True - _Resume Upgrade - True - -5 - - - 1 - - - - - False - GTK_PACK_END - - - - - - - 5 - False - True - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - False - - - True - 12 - - - True - 6 - 12 - - - True - 0.000000 - 0.000000 - gtk-dialog-question - 6 - - - False - False - - - - - True - 12 - - - True - 0.000000 - True - True - - - False - False - - - - - 1 - - - - - 1 - - - - - True - True - - - True - - - True - True - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - - - 300 - True - True - False - False - - - - - False - False - - - - - - - True - Difference between the files - - - label_item - - - - - 2 - - - - - True - GTK_BUTTONBOX_END - - - True - True - True - True - True - -9 - - - True - 0.000000 - 0.000000 - - - True - 2 - - - True - gtk-cancel - - - False - False - - - - - True - _Keep - True - - - False - False - 1 - - - - - - - - - - - True - True - True - -8 - - - True - 0.000000 - 0.000000 - - - True - 2 - - - True - gtk-ok - - - False - False - - - - - True - _Replace - True - - - False - False - 1 - - - - - - - - - 1 - - - - - False - GTK_PACK_END - - - - - - - 6 - False - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - True - True - True - False - - - True - 12 - - - True - 6 - 12 - - - True - 0.000000 - 0.000000 - gtk-dialog-info - 6 - - - False - - - - - True - 12 - - - True - True - 0.000000 - True - True - True - - - False - - - - - 400 - 200 - True - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - - - True - True - 4 - 4 - False - 4 - 4 - - - - - 1 - - - - - 1 - - - - - 1 - - - - - True - GTK_BUTTONBOX_END - - - True - True - True - True - gtk-close - True - -5 - - - - - False - GTK_PACK_END - - - - - + False + True + GTK_JUSTIFY_LEFT + True + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + 0 + True + True + + + + + + + + 5 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER_ON_PARENT + True + False + False + True + False + False + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + False + False + + + + True + False + 12 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + True + True + GTK_RELIEF_NORMAL + True + -9 + + + + True + 0.5 + 0.5 + 0 + 0 + 0 + 0 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-cancel + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + _Keep + True + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + + + + + + + True + True + True + GTK_RELIEF_NORMAL + True + -8 + + + + True + 0.5 + 0.5 + 0 + 0 + 0 + 0 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-ok + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + _Replace + True + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + gtk-dialog-question + 6 + 0 + 0 + 0 + 0 + + + 0 + False + False + + + + + + True + False + 12 + + + + True + + False + True + GTK_JUSTIFY_LEFT + True + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + True + True + False + 0 + + + + True + False + 0 + + + + True + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + 300 + True + True + False + False + True + GTK_JUSTIFY_LEFT + GTK_WRAP_NONE + False + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + 0 + False + False + + + + + + + + True + Difference between the files + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + label_item + + + + + 0 + True + True + + + + + + + + 6 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER_ON_PARENT + False + False + False + True + True + True + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + True + False + + + + True + False + 12 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + True + -5 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + gtk-dialog-info + 6 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + False + 12 + + + + True + True + + False + True + GTK_JUSTIFY_LEFT + True + True + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + True + + + + + + 400 + 200 + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + False + False + True + GTK_JUSTIFY_LEFT + GTK_WRAP_NONE + True + 4 + 4 + 0 + 4 + 4 + 0 + + + + + + 0 + True + True + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + -- cgit v1.2.3 From bacc395f5e0e9ae48883d4cdd1258f98ee6d9b21 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 15:20:33 +0200 Subject: * only show an gtk-yes icon for completed taks * the current tasks has got a gtk-arrow icon - since gtk 2.10 this icon is themable. * reuse a hardcoded title - this should be a config option * really remove the sample text --- DistUpgrade/DistUpgrade.glade | 347 ++++++++++++++++++++++++++------------ DistUpgrade/DistUpgradeViewGtk.py | 9 +- 2 files changed, 249 insertions(+), 107 deletions(-) diff --git a/DistUpgrade/DistUpgrade.glade b/DistUpgrade/DistUpgrade.glade index ba55ace0..598e12be 100644 --- a/DistUpgrade/DistUpgrade.glade +++ b/DistUpgrade/DistUpgrade.glade @@ -38,7 +38,7 @@ True - + <b><big>Upgrading Ubuntu to version 6.10</big></b> False True GTK_JUSTIFY_LEFT @@ -100,101 +100,6 @@ 6 6 - - - 18 - 18 - True - 0.5 - 0.5 - 0 - 0 - - - 0 - 1 - 4 - 5 - - - - - - - 18 - 18 - True - 0.5 - 0.5 - 0 - 0 - - - 0 - 1 - 0 - 1 - - - - - - - 18 - 18 - True - 0.5 - 0.5 - 0 - 0 - - - 0 - 1 - 3 - 4 - - - - - - - 18 - 18 - True - 0.5 - 0.5 - 0 - 0 - - - 0 - 1 - 2 - 3 - - - - - - - 18 - 18 - True - 0.5 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - - - - True @@ -334,6 +239,246 @@ + + + + True + False + 0 + + + + GTK_ARROW_RIGHT + GTK_SHADOW_OUT + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + 18 + 18 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + 0 + 1 + 0 + 1 + fill + fill + + + + + + True + False + 0 + + + + GTK_ARROW_RIGHT + GTK_SHADOW_OUT + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + 18 + 18 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + 0 + 1 + 1 + 2 + fill + fill + + + + + + True + False + 0 + + + + GTK_ARROW_RIGHT + GTK_SHADOW_OUT + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + 18 + 18 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + 0 + 1 + 2 + 3 + fill + fill + + + + + + True + False + 0 + + + + GTK_ARROW_RIGHT + GTK_SHADOW_OUT + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + 18 + 18 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + 0 + 1 + 3 + 4 + fill + fill + + + + + + True + False + 0 + + + + GTK_ARROW_RIGHT + GTK_SHADOW_OUT + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + 18 + 18 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + 0 + 1 + 4 + 5 + fill + fill + + 0 @@ -1199,15 +1344,7 @@ True - The upgrade of your system requires - - ... to download 2000 MByte - - ... to install 23 new packages - ... to remove 19 packages - ... to update 200 packages - -This is you last chance to cancel the upgrade. + False False GTK_JUSTIFY_LEFT diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 73440f3e..5fd8d560 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -417,11 +417,16 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): if step > 1: image = getattr(self,"image_step%i" % (step-1)) label = getattr(self,"label_step%i" % (step-1)) - image.set_from_stock(gtk.STOCK_APPLY, size) + arrow = getattr(self,"arrow_step%i" % (step-1)) label.set_property("attributes",attrlist) + image.set_from_stock(gtk.STOCK_YES, size) + image.show() + arrow.hide() image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) - image.set_from_stock(gtk.STOCK_YES, size) + arrow = getattr(self,"arrow_step%i" % step) + arrow.show() + image.hide() attr = pango.AttrWeight(pango.WEIGHT_BOLD, 0, -1) # we can't make it bold here without layout changes in the view :( #attr = pango.AttrStyle(pango.STYLE_ITALIC, 0, -1) -- cgit v1.2.3 From d37a18474fd00a9cb3e57f13517628095c15bba7 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 16:04:40 +0200 Subject: * improve wording of some dialogs: no-longer-supported, no-upgrades-avaiable and replace-conf-file * introduce an abort method for the view to provide a visual feedback that the upgrade was canceled --- DistUpgrade/DistUpgradeControler.py | 17 +++++++++-------- DistUpgrade/DistUpgradeView.py | 3 +++ DistUpgrade/DistUpgradeViewGtk.py | 28 +++++++++++++++++----------- 3 files changed, 29 insertions(+), 19 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 02d25121..800590cb 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -485,15 +485,15 @@ class DistUpgradeControler(object): demoted = [pkg.name for pkg in installed_demotions] demoted.sort() logging.debug("demoted: '%s'" % " ".join(demoted)) - self._view.information(_("Some software no longer officially " - "supported"), - _("These installed packages are " - "no longer officially supported, " - "and are now only " - "community-supported ('universe').\n\n" - "If you don't have 'universe' enabled " + self._view.information(_("Support for some applications ended"), + _("Canonical Ltd. no longer provides " + "support for the following software " + "packages. You can still get support " + "from the community.\n\n" + "If you havn't enabled community " + "maintained software (universe), " "these packages will be suggested for " - "removal in the next step. "), + "removal in the next step."), "\n".join(demoted)) # mark packages that are now obsolete (and where not obsolete @@ -544,6 +544,7 @@ class DistUpgradeControler(object): self.aptcdrom.restoreBackup(self.sources_backup_ext) # generate a new cache self._view.updateStatus(_("Restoring original system state")) + self._view.abort() self.openCache() sys.exit(1) diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py index 9fda83d4..d5b430b8 100644 --- a/DistUpgrade/DistUpgradeView.py +++ b/DistUpgrade/DistUpgradeView.py @@ -72,6 +72,9 @@ class DistUpgradeView(object): on the current view """ pass + def abort(): + """ provide a visual feedback that the upgrade was aborted """ + pass def setStep(self, step): """ we have 5 steps current for a upgrade: 1. Analyzing the system diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 5fd8d560..a61bbcaa 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -199,13 +199,10 @@ class GtkInstallProgressAdapter(InstallProgress): def conffile(self, current, new): logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current) #self.expander.set_expanded(True) - prim = _("Replace configuration file\n'%s'?" % current) - sec = ("The configuration file %s was modified (by " - "you or by a script). An updated version is shipped " - "in this package. If you want to keep your current " - "version say 'Keep'. Do you want to replace the " - "current file and install the new package " - "maintainers version? " % current) + prim = _("Replace the customized configuration file\n'%s'?") % current + sec = _("You will loose all customizations, that have been made by " + "yourself or by a script, if you replace the file by its " + "latest version.") markup = "%s \n\n%s" % (prim, sec) self.parent.label_conffile.set_markup(markup) self.parent.dialog_conffile.set_transient_for(self.parent.window_main) @@ -410,7 +407,16 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): label = getattr(self,"label_step%i" % step) image.hide() label.hide() + def abort(self): + size = gtk.ICON_SIZE_MENU + step = self.step + image = getattr(self,"image_step%i" % step) + arrow = getattr(self,"arrow_step%i" % step) + image.set_from_stock(gtk.STOCK_NO, size) + image.show() + arrow.hide() def setStep(self, step): + self.step = step # first update the "last" step as completed size = gtk.ICON_SIZE_MENU attrlist=pango.AttrList() @@ -422,14 +428,13 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): image.set_from_stock(gtk.STOCK_YES, size) image.show() arrow.hide() + # show the an arrow for the current step and make the label bold image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) arrow = getattr(self,"arrow_step%i" % step) arrow.show() image.hide() attr = pango.AttrWeight(pango.WEIGHT_BOLD, 0, -1) - # we can't make it bold here without layout changes in the view :( - #attr = pango.AttrStyle(pango.STYLE_ITALIC, 0, -1) attrlist.insert(attr) label.set_property("attributes",attrlist) @@ -508,8 +513,9 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): # Show an error if no actions are planned if (pkgs_upgrade + pkgs_inst + pkgs_remove) < 1: # FIXME: this should go into DistUpgradeController - summary = _("Could not find any upgrades") - msg = _("Your system has already been upgraded.") + summary = _("Your system is up-to-date") + msg = _("There are no upgrades available for your system. " + "The upgrade will now be canceled.") self.error(summary, msg) return False -- cgit v1.2.3 From 2e2c637be425f7ecb4cbaeb8aa27e92c47c54fa0 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 17:16:38 +0200 Subject: * Move the "run full dit upgrade" dialog into the UpdateManager class - to avoid spliting the UI stuff into several classes * Use a glade based dialog with better buttons instead of yes/no * Improved wording --- UpdateManager/UpdateManager.py | 46 ++++-------- data/glade/UpdateManager.glade | 163 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 177 insertions(+), 32 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 343dcd85..69308ec6 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -219,7 +219,7 @@ class UpdateList: self.importance = importance self.description = desc - def __init__(self, parent_window): + def __init__(self): # a map of packages under their origin pipe = os.popen("lsb_release -c -s") dist = pipe.read().strip() @@ -236,14 +236,12 @@ class UpdateList: self.pkgs = {} self.matcher = {} self.num_updates = 0 - self.parent_window = parent_window for (origin, archive, desc, importance) in templates: self.matcher[(origin, archive)] = self.UpdateOrigin(desc, importance) self.unknown_origin = self.UpdateOrigin(_("Other updates"), -1) def update(self, cache): held_back = [] - broken = [] # do the upgrade cache.saveDistUpgrade() @@ -268,34 +266,7 @@ class UpdateList: held_back.append(pkg.name) for l in self.pkgs.keys(): self.pkgs[l].sort(lambda x,y: cmp(x.name,y.name)) - - # check if we have held-back something - if cache._depcache.KeepCount > 0: - keepcount = cache._depcache.KeepCount - msg = ("%s\n\n%s" % \ - (_("Cannot install all available updates"), - _("Some of the updates require more extensive changes " - "than expected.\n\n" - "This usually means that you have enabled unoffical " - "repositories, that it is not " - "fully upgraded from the last distribution release or " - "that you run a development release " - "of the distribution.\n\n" - "Would you like to perform a full distribution upgrade " - "now?"))) - dialog = gtk.MessageDialog(self.parent_window, 0, - gtk.MESSAGE_QUESTION, - gtk.BUTTONS_YES_NO,"") - dialog.set_default_response(gtk.RESPONSE_NO) - dialog.set_markup(msg) - dialog.set_title("") - dialog.vbox.set_spacing(6) - res = dialog.run() - if res == gtk.RESPONSE_YES: - os.execl("/usr/bin/gksu", - "/usr/bin/gksu", - "/usr/bin/update-manager --dist-upgrade") - dialog.destroy() + self.keepcount = cache._depcache.KeepCount class UpdateManagerDbusControler(dbus.service.Object): @@ -811,7 +782,7 @@ class UpdateManager(SimpleGladeApp): self.dl_size = 0 self.store.clear() self.initCache() - self.list = UpdateList(self.window_main) + self.list = UpdateList() # fill them again self.list.update(self.cache) @@ -929,6 +900,16 @@ class UpdateManager(SimpleGladeApp): if res == gtk.RESPONSE_YES: self.on_button_reload_clicked(None) + def check_all_updates_installable(self): + """ Check if all available updates can be installed and suggest + to run a distribution upgrade if not """ + if self.list.keepcount > 0: + self.dialog_dist_upgrade.set_transient_for(self.window_main) + res = self.dialog_dist_upgrade.run() + if res == gtk.RESPONSE_YES: + os.execl("/usr/bin/gksu", + "/usr/bin/gksu", + "/usr/bin/update-manager --dist-upgrade") def main(self, options): gconfclient = gconf.client_get_default() @@ -945,5 +926,6 @@ class UpdateManager(SimpleGladeApp): gtk.main_iteration() self.fillstore() + self.check_all_updates_installable() self.check_auto_update() gtk.main() diff --git a/data/glade/UpdateManager.glade b/data/glade/UpdateManager.glade index bb78008c..e9fd6bfc 100644 --- a/data/glade/UpdateManager.glade +++ b/data/glade/UpdateManager.glade @@ -1453,4 +1453,167 @@ Software updates correct errors, eliminate security vulnerabilities and provide + + 6 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_CENTER_ON_PARENT + True + False + False + True + True + True + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + True + False + + + + True + False + 12 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + _Distribution Upgrade + True + GTK_RELIEF_NORMAL + True + -8 + + + + + + True + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + True + -7 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + gtk-dialog-warning + 6 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + False + 12 + + + + True + True + <big><b>Not all updates can be installed</b></big> + False + True + GTK_JUSTIFY_LEFT + False + True + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + Run a distribution upgrade, to install as many updates as possible. + +This can be caused by an uncompleted upgrade, unofficial software packages or by running a development version. + False + False + GTK_JUSTIFY_LEFT + True + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + -- cgit v1.2.3 From 134c1c31fcbdc975d68ebb39e83c01830f078cc3 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 17:34:04 +0200 Subject: * show not installable updates as disabled in the update list * also check for non installable updates after an "apt-get update" --- UpdateManager/UpdateManager.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 69308ec6..623b406d 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -241,14 +241,14 @@ class UpdateList: self.unknown_origin = self.UpdateOrigin(_("Other updates"), -1) def update(self, cache): - held_back = [] + self.held_back = [] # do the upgrade cache.saveDistUpgrade() # sort by origin for pkg in cache: - if pkg.markedUpgrade or pkg.markedInstall: + if pkg.markedUpgrade or pkg.markedInstall or pkg.isUpgradable: # TRANSLATORS: updates from an 'unknown' origin originstr = _("Other updates") for aorigin in pkg.candidateOrigin: @@ -262,8 +262,8 @@ class UpdateList: self.pkgs[origin_node] = [] self.pkgs[origin_node].append(pkg) self.num_updates = self.num_updates + 1 - elif pkg.isUpgradable: - held_back.append(pkg.name) + if pkg.isUpgradable: + self.held_back.append(pkg.name) for l in self.pkgs.keys(): self.pkgs[l].sort(lambda x,y: cmp(x.name,y.name)) self.keepcount = cache._depcache.KeepCount @@ -390,6 +390,8 @@ class UpdateManager(SimpleGladeApp): return to_install = pkg.markedInstall or pkg.markedUpgrade renderer.set_property("active", to_install) + if pkg.name in self.list.held_back: + renderer.set_property("activatable", False) def package_column_view_func(self, cell_layout, renderer, model, iter): self.header_column_func(cell_layout, renderer, model, iter) @@ -705,6 +707,8 @@ class UpdateManager(SimpleGladeApp): self.window_main.set_sensitive(True) self.window_main.window.set_cursor(None) + self.check_all_updates_installable() + def inhibit_sleep(self): """Send a dbus signal to gnome-power-manager to not suspend the system""" -- cgit v1.2.3 From ae0d9a877711e2f12cf7e62899d5cc60d50e9bd0 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 17:58:30 +0200 Subject: * use a different label for the cache progress dialog if it gets reinitiated * clear the store after the long caching process to reduce visual noise * move the check_all_updates_installable call into fillstore itself --- UpdateManager/UpdateManager.py | 7 ++++--- data/glade/UpdateManager.glade | 29 ++++++++++++++++++++++++++--- 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 623b406d..432a00e0 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -699,6 +699,7 @@ class UpdateManager(SimpleGladeApp): time.sleep(0.05) while gtk.events_pending(): gtk.main_iteration() + self.label_cache_progress_title.set_label("%s" % _("Checking for updates")) self.fillstore() # Allow suspend after synaptic is finished @@ -707,7 +708,6 @@ class UpdateManager(SimpleGladeApp): self.window_main.set_sensitive(True) self.window_main.window.set_cursor(None) - self.check_all_updates_installable() def inhibit_sleep(self): """Send a dbus signal to gnome-power-manager to not suspend @@ -784,8 +784,8 @@ class UpdateManager(SimpleGladeApp): # clean most objects self.dl_size = 0 - self.store.clear() self.initCache() + self.store.clear() self.list = UpdateList() # fill them again @@ -814,6 +814,7 @@ class UpdateManager(SimpleGladeApp): self.store.append([contents, pkg.name, pkg]) self.update_count() self.setBusy(False) + self.check_all_updates_installable() return False def dist_no_longer_supported(self, meta_release): @@ -910,6 +911,7 @@ class UpdateManager(SimpleGladeApp): if self.list.keepcount > 0: self.dialog_dist_upgrade.set_transient_for(self.window_main) res = self.dialog_dist_upgrade.run() + self.dialog_dist_upgrade.hide() if res == gtk.RESPONSE_YES: os.execl("/usr/bin/gksu", "/usr/bin/gksu", @@ -930,6 +932,5 @@ class UpdateManager(SimpleGladeApp): gtk.main_iteration() self.fillstore() - self.check_all_updates_installable() self.check_auto_update() gtk.main() diff --git a/data/glade/UpdateManager.glade b/data/glade/UpdateManager.glade index e9fd6bfc..2a4965fd 100644 --- a/data/glade/UpdateManager.glade +++ b/data/glade/UpdateManager.glade @@ -1371,11 +1371,34 @@ Your system does not check for updates automatically. You can configure this beh 12 - + True - <big><b>Starting update manager</b></big> + <big><b>Starting update manager</b></big> + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + -Software updates correct errors, eliminate security vulnerabilities and provide new features. + + + True + Software updates correct errors, eliminate security vulnerabilities and provide new features. False True GTK_JUSTIFY_LEFT -- cgit v1.2.3 From 886ba2ffebef39bfb4ec11d4a0a6a3e13b2416bd Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 18:15:37 +0200 Subject: * use the update manager desktop file instead of the synaptic one, when we call synapitc - the user doesn't need to know that we use synaptic for the installation process --- UpdateManager/UpdateManager.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 432a00e0..9880b528 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -641,7 +641,7 @@ class UpdateManager(SimpleGladeApp): apt_pkg.PkgSystemUnLock() except SystemError: pass - cmd = ["gksu", "--desktop", "/usr/share/applications/synaptic.desktop", + cmd = ["gksu", "--desktop", "/usr/share/applications/update-manager.desktop", "--", "/usr/sbin/synaptic", "--hide-main-window", "--non-interactive", "--parent-window-id", "%s" % (id) ] if action == INSTALL: @@ -914,8 +914,9 @@ class UpdateManager(SimpleGladeApp): self.dialog_dist_upgrade.hide() if res == gtk.RESPONSE_YES: os.execl("/usr/bin/gksu", - "/usr/bin/gksu", - "/usr/bin/update-manager --dist-upgrade") + "/usr/bin/gksu", "--desktop", + "/usr/share/applications/update-manager.desktop", + "--", "/usr/bin/update-manager", "--dist-upgrade") def main(self, options): gconfclient = gconf.client_get_default() -- cgit v1.2.3 From b83afc695eb3d983d694ad9b8c9bad7a469b5a80 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 19:29:59 +0200 Subject: * Gtk seems to require that you set the activatable property of a cell renderer explictly to True if there is one with False * Rebuild channel templates --- UpdateManager/UpdateManager.py | 8 +++++--- data/channels/Ubuntu.info | 14 ++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 9880b528..af1ec6c3 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -248,7 +248,7 @@ class UpdateList: # sort by origin for pkg in cache: - if pkg.markedUpgrade or pkg.markedInstall or pkg.isUpgradable: + if pkg.isUpgradable: # TRANSLATORS: updates from an 'unknown' origin originstr = _("Other updates") for aorigin in pkg.candidateOrigin: @@ -262,7 +262,7 @@ class UpdateList: self.pkgs[origin_node] = [] self.pkgs[origin_node].append(pkg) self.num_updates = self.num_updates + 1 - if pkg.isUpgradable: + if pkg.isUpgradable and not (pkg.markedUpgrade or pkg.markedInstall): self.held_back.append(pkg.name) for l in self.pkgs.keys(): self.pkgs[l].sort(lambda x,y: cmp(x.name,y.name)) @@ -392,7 +392,9 @@ class UpdateManager(SimpleGladeApp): renderer.set_property("active", to_install) if pkg.name in self.list.held_back: renderer.set_property("activatable", False) - + else: + renderer.set_property("activatable", True) + def package_column_view_func(self, cell_layout, renderer, model, iter): self.header_column_func(cell_layout, renderer, model, iter) diff --git a/data/channels/Ubuntu.info b/data/channels/Ubuntu.info index 93ec83d2..379da07d 100644 --- a/data/channels/Ubuntu.info +++ b/data/channels/Ubuntu.info @@ -40,6 +40,7 @@ ParentSuite: edgy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Important security updates Suite: edgy-updates @@ -47,6 +48,7 @@ ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Recommended updates Suite: edgy-proposed @@ -54,6 +56,7 @@ ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Proposed updates Suite: edgy-backports @@ -61,6 +64,7 @@ ParentSuite: edgy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Backported updates Suite: dapper @@ -103,6 +107,7 @@ ParentSuite: dapper RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Important security updates Suite: dapper-updates @@ -110,6 +115,7 @@ ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Recommended updates Suite: dapper-proposed @@ -117,6 +123,7 @@ ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Proposed updates Suite: dapper-backports @@ -124,6 +131,7 @@ ParentSuite: dapper RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Backported updates Suite: breezy @@ -162,6 +170,7 @@ ParentSuite: breezy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.10 Security Updates Suite: breezy-updates @@ -169,6 +178,7 @@ ParentSuite: breezy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.10 Updates Suite: breezy-backports @@ -176,6 +186,7 @@ ParentSuite: breezy RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.10 Backports Suite: hoary @@ -214,6 +225,7 @@ ParentSuite: hoary RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 Security Updates Suite: hoary-updates @@ -221,6 +233,7 @@ ParentSuite: hoary RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 Updates Suite: hoary-backports @@ -228,6 +241,7 @@ ParentSuite: hoary RepositoryType: deb BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu +MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 Backports Suite: warty -- cgit v1.2.3 From cb5c5cca3e6d5b90018a2dc49b77d61dede3628c Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 19:38:20 +0200 Subject: * do not allow to toggle deactivated updates by row activation --- UpdateManager/UpdateManager.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index af1ec6c3..5d6518b1 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -732,9 +732,13 @@ class UpdateManager(SimpleGladeApp): def toggled(self, renderer, path): """ a toggle button in the listview was toggled """ - self.setBusy(True) iter = self.store.get_iter(path) pkg = self.store.get_value(iter, LIST_PKG) + # make sure that we don't allow to toggle deactivated updates + # this is needed for the call by the row activation callback + if pkg.name in self.list.held_back: + return False + self.setBusy(True) # update the cache if pkg.markedInstall or pkg.markedUpgrade: pkg.markKeep() -- cgit v1.2.3 From 28e75a4ae07be10a060793d42f05b3132ba3ebbb Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Mon, 11 Sep 2006 21:02:04 +0200 Subject: * Reuse the base_uri, match_uri and valid_mirrors property of the parent suite, if it was not declared explicitly for a child suite * remove the obsolete enabled property from the channel templates --- UpdateManager/Common/DistInfo.py | 7 ++++ data/channels/Ubuntu.info | 70 +--------------------------------------- data/channels/Ubuntu.info.in | 70 +--------------------------------------- 3 files changed, 9 insertions(+), 138 deletions(-) diff --git a/UpdateManager/Common/DistInfo.py b/UpdateManager/Common/DistInfo.py index 81f08200..d509cd9e 100644 --- a/UpdateManager/Common/DistInfo.py +++ b/UpdateManager/Common/DistInfo.py @@ -100,6 +100,13 @@ class DistInfo: for nanny in self.suites: if nanny.name == value: nanny.children.append(suite) + # reuse some properties of the parent suite + if suite.match_uri == None: + suite.match_uri = nanny.match_uri + if suite.valid_mirrors == None: + suite.valid_mirrors = nanny.valid_mirrors + if suite.base_uri == None: + suite.base_uri = nanny.base_uri elif field == 'Available': suite.available = value elif field == 'RepositoryType': diff --git a/data/channels/Ubuntu.info b/data/channels/Ubuntu.info index 379da07d..4588a9b1 100644 --- a/data/channels/Ubuntu.info +++ b/data/channels/Ubuntu.info @@ -7,19 +7,15 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 6.10 'Edgy Eft' Component: main -Enabled: 1 CompDescription: Officially supported CompDescriptionLong: By Canonical supported Open Source software Component: universe -Enabled: 0 CompDescription: Community maintained CompDescriptionLong: Community maintained Open Source software Component: restricted -Enabled: 1 CompDescription: Non-free drivers CompDescriptionLong: Proprietary drivers for devices Component: multiverse -Enabled: 0 CompDescription: Restricted software CompDescriptionLong: By copyright or legal issues restricted software @@ -29,10 +25,8 @@ BaseURI: cdrom:\[Ubuntu.*6.10 Description: Cdrom with Ubuntu 6.10 'Edgy Eft' Available: False Component: main -Enabled: 1 CompDescription: Oficially supported Component: restricted -Enabled: 1 CompDescription: Restricted copyright Suite: edgy-security @@ -40,31 +34,21 @@ ParentSuite: edgy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Important security updates Suite: edgy-updates ParentSuite: edgy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Recommended updates Suite: edgy-proposed ParentSuite: edgy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Proposed updates Suite: edgy-backports ParentSuite: edgy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Backported updates Suite: dapper @@ -74,19 +58,15 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 6.06 LTS 'Dapper Drake' Component: main -Enabled: 1 CompDescription: Officially supported CompDescriptionLong: By Canonical supported Open Source software Component: universe -Enabled: 0 CompDescription: Community maintained (universe) CompDescriptionLong: Community maintained Open Source software Component: restricted -Enabled: 1 CompDescription: Non-free drivers CompDescriptionLong: Proprietary drivers for devices Component: multiverse -Enabled: 0 CompDescription: Restricted software (Multiverse) CompDescriptionLong: By copyright or legal issues restricted software @@ -96,10 +76,8 @@ BaseURI: cdrom:\[Ubuntu.*6.06 Description: Cdrom with Ubuntu 6.06 LTS 'Dapper Drake' Available: False Component: main -Enabled: 1 CompDescription: Oficially supported Component: restricted -Enabled: 1 CompDescription: Restricted copyright Suite: dapper-security @@ -107,31 +85,21 @@ ParentSuite: dapper RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Important security updates Suite: dapper-updates ParentSuite: dapper RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Recommended updates Suite: dapper-proposed ParentSuite: dapper RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Proposed updates Suite: dapper-backports ParentSuite: dapper RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Backported updates Suite: breezy @@ -141,16 +109,12 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.10 'Breezy Badger' Component: main -Enabled: 1 CompDescription: Officially supported Component: restricted -Enabled: 1 CompDescription: Restricted copyright Component: universe -Enabled: 0 CompDescription: Community maintained (Universe) Component: multiverse -Enabled: 0 CompDescription: Non-free (Multiverse) Suite: breezy @@ -159,10 +123,8 @@ BaseURI: cdrom:\[Ubuntu.*5.10 Description: Cdrom with Ubuntu 5.10 'Breezy Badger' Available: False Component: main -Enabled: 1 CompDescription: Oficially supported Component: restricted -Enabled: 1 CompDescription: Restricted copyright Suite: breezy-security @@ -170,23 +132,16 @@ ParentSuite: breezy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.10 Security Updates Suite: breezy-updates ParentSuite: breezy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.10 Updates Suite: breezy-backports ParentSuite: breezy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.10 Backports Suite: hoary @@ -196,16 +151,12 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 'Hoary Hedgehog' Component: main -Enabled: 1 CompDescription: Oficially supported Component: restricted -Enabled: 1 CompDescription: Restricted copyright Component: universe -Enabled: 0 CompDescription: Community maintained (Universe) Component: multiverse -Enabled: 0 CompDescription: Non-free (Multiverse) Suite: hoary @@ -214,10 +165,8 @@ BaseURI: cdrom:\[Ubuntu.*5.04 Description: Cdrom with Ubuntu 5.04 'Hoary Hedgehog' Available: False Component: main -Enabled: 1 CompDescription: Oficially supported Component: restricted -Enabled: 1 CompDescription: Restricted copyright Suite: hoary-security @@ -225,23 +174,16 @@ ParentSuite: hoary RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 Security Updates Suite: hoary-updates ParentSuite: hoary RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 Updates Suite: hoary-backports ParentSuite: hoary RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 Backports Suite: warty @@ -250,16 +192,12 @@ BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 4.10 'Warty Warthog' Component: main -Enabled: 1 CompDescription: No longer oficially supported Component: restricted -Enabled: 1 CompDescription: Restricted copyright Component: universe -Enabled: 0 CompDescription: Community maintained (Universe) Component: multiverse -Enabled: 0 CompDescription: Non-free (Multiverse) Suite: warty @@ -268,29 +206,23 @@ BaseURI: cdrom:\[Ubuntu.*4.10 Description: Cdrom with Ubuntu 4.10 'Warty Warthog' Available: False Component: main -Enabled: 1 CompDescription: No longer oficially supported Component: restricted -Enabled: 1 CompDescription: Restricted copyright Suite: warty-security ParentSuite: warty RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.comubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com Description: Ubuntu 4.10 Security Updates Suite: warty-updates ParentSuite: warty RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 4.10 Updates Suite: warty-backports ParentSuite: warty RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 4.10 Backports diff --git a/data/channels/Ubuntu.info.in b/data/channels/Ubuntu.info.in index 2b20cf8f..d6070790 100644 --- a/data/channels/Ubuntu.info.in +++ b/data/channels/Ubuntu.info.in @@ -7,19 +7,15 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 6.10 'Edgy Eft' Component: main -Enabled: 1 _CompDescription: Officially supported _CompDescriptionLong: By Canonical supported Open Source software Component: universe -Enabled: 0 _CompDescription: Community maintained _CompDescriptionLong: Community maintained Open Source software Component: restricted -Enabled: 1 _CompDescription: Non-free drivers _CompDescriptionLong: Proprietary drivers for devices Component: multiverse -Enabled: 0 _CompDescription: Restricted software _CompDescriptionLong: By copyright or legal issues restricted software @@ -29,10 +25,8 @@ BaseURI: cdrom:\[Ubuntu.*6.10 _Description: Cdrom with Ubuntu 6.10 'Edgy Eft' Available: False Component: main -Enabled: 1 _CompDescription: Oficially supported Component: restricted -Enabled: 1 _CompDescription: Restricted copyright Suite: edgy-security @@ -40,31 +34,21 @@ ParentSuite: edgy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Important security updates Suite: edgy-updates ParentSuite: edgy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Recommended updates Suite: edgy-proposed ParentSuite: edgy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Proposed updates Suite: edgy-backports ParentSuite: edgy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Backported updates Suite: dapper @@ -74,19 +58,15 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 6.06 LTS 'Dapper Drake' Component: main -Enabled: 1 _CompDescription: Officially supported _CompDescriptionLong: By Canonical supported Open Source software Component: universe -Enabled: 0 _CompDescription: Community maintained (universe) _CompDescriptionLong: Community maintained Open Source software Component: restricted -Enabled: 1 _CompDescription: Non-free drivers _CompDescriptionLong: Proprietary drivers for devices Component: multiverse -Enabled: 0 _CompDescription: Restricted software (Multiverse) _CompDescriptionLong: By copyright or legal issues restricted software @@ -96,10 +76,8 @@ BaseURI: cdrom:\[Ubuntu.*6.06 _Description: Cdrom with Ubuntu 6.06 LTS 'Dapper Drake' Available: False Component: main -Enabled: 1 _CompDescription: Oficially supported Component: restricted -Enabled: 1 _CompDescription: Restricted copyright Suite: dapper-security @@ -107,31 +85,21 @@ ParentSuite: dapper RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Important security updates Suite: dapper-updates ParentSuite: dapper RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Recommended updates Suite: dapper-proposed ParentSuite: dapper RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Proposed updates Suite: dapper-backports ParentSuite: dapper RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Backported updates Suite: breezy @@ -141,16 +109,12 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.10 'Breezy Badger' Component: main -Enabled: 1 _CompDescription: Officially supported Component: restricted -Enabled: 1 _CompDescription: Restricted copyright Component: universe -Enabled: 0 _CompDescription: Community maintained (Universe) Component: multiverse -Enabled: 0 _CompDescription: Non-free (Multiverse) Suite: breezy @@ -159,10 +123,8 @@ BaseURI: cdrom:\[Ubuntu.*5.10 _Description: Cdrom with Ubuntu 5.10 'Breezy Badger' Available: False Component: main -Enabled: 1 _CompDescription: Oficially supported Component: restricted -Enabled: 1 _CompDescription: Restricted copyright Suite: breezy-security @@ -170,23 +132,16 @@ ParentSuite: breezy RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.10 Security Updates Suite: breezy-updates ParentSuite: breezy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.10 Updates Suite: breezy-backports ParentSuite: breezy RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.10 Backports Suite: hoary @@ -196,16 +151,12 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 'Hoary Hedgehog' Component: main -Enabled: 1 _CompDescription: Oficially supported Component: restricted -Enabled: 1 _CompDescription: Restricted copyright Component: universe -Enabled: 0 _CompDescription: Community maintained (Universe) Component: multiverse -Enabled: 0 _CompDescription: Non-free (Multiverse) Suite: hoary @@ -214,10 +165,8 @@ BaseURI: cdrom:\[Ubuntu.*5.04 _Description: Cdrom with Ubuntu 5.04 'Hoary Hedgehog' Available: False Component: main -Enabled: 1 _CompDescription: Oficially supported Component: restricted -Enabled: 1 _CompDescription: Restricted copyright Suite: hoary-security @@ -225,23 +174,16 @@ ParentSuite: hoary RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 Security Updates Suite: hoary-updates ParentSuite: hoary RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 Updates Suite: hoary-backports ParentSuite: hoary RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu -MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 Backports Suite: warty @@ -250,16 +192,12 @@ BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu _Description: Ubuntu 4.10 'Warty Warthog' Component: main -Enabled: 1 _CompDescription: No longer oficially supported Component: restricted -Enabled: 1 _CompDescription: Restricted copyright Component: universe -Enabled: 0 _CompDescription: Community maintained (Universe) Component: multiverse -Enabled: 0 _CompDescription: Non-free (Multiverse) Suite: warty @@ -268,29 +206,23 @@ BaseURI: cdrom:\[Ubuntu.*4.10 _Description: Cdrom with Ubuntu 4.10 'Warty Warthog' Available: False Component: main -Enabled: 1 _CompDescription: No longer oficially supported Component: restricted -Enabled: 1 _CompDescription: Restricted copyright Suite: warty-security ParentSuite: warty RepositoryType: deb BaseURI: http://security.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.comubuntu/|security.ubuntu.com +MatchURI: archive.ubuntu.com/ubuntu|security.ubuntu.com _Description: Ubuntu 4.10 Security Updates Suite: warty-updates ParentSuite: warty RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu _Description: Ubuntu 4.10 Updates Suite: warty-backports ParentSuite: warty RepositoryType: deb -BaseURI: http://archive.ubuntu.com/ubuntu/ -MatchURI: archive.ubuntu.com/ubuntu _Description: Ubuntu 4.10 Backports -- cgit v1.2.3 From e759f493056a1fbe9094181faa970f7fffecdb0b Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Tue, 12 Sep 2006 12:53:50 +0200 Subject: * fix the visual change of steps, if some steps are hidden * use the apply and cancel icons instead of yes/no for the status of a task --- DistUpgrade/DistUpgradeViewGtk.py | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index a61bbcaa..5a3779e9 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -319,6 +319,7 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): gtk.window_set_default_icon(icons.load_icon("update-manager", 32, 0)) SimpleGladeApp.__init__(self, gladedir+"/DistUpgrade.glade", None, domain="update-manager") + self.last_step = 0 # keep a record of the latest step # we dont use this currently #self.window_main.set_keep_above(True) self.window_main.realize() @@ -409,25 +410,26 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): label.hide() def abort(self): size = gtk.ICON_SIZE_MENU - step = self.step - image = getattr(self,"image_step%i" % step) - arrow = getattr(self,"arrow_step%i" % step) - image.set_from_stock(gtk.STOCK_NO, size) - image.show() - arrow.hide() + step = self.last_step + if step > 0: + image = getattr(self,"image_step%i" % step) + arrow = getattr(self,"arrow_step%i" % step) + image.set_from_stock(gtk.STOCK_CANCEL, size) + image.show() + arrow.hide() def setStep(self, step): - self.step = step # first update the "last" step as completed size = gtk.ICON_SIZE_MENU attrlist=pango.AttrList() - if step > 1: - image = getattr(self,"image_step%i" % (step-1)) - label = getattr(self,"label_step%i" % (step-1)) - arrow = getattr(self,"arrow_step%i" % (step-1)) + if self.last_step: + image = getattr(self,"image_step%i" % self.last_step) + label = getattr(self,"label_step%i" % self.last_step) + arrow = getattr(self,"arrow_step%i" % self.last_step) label.set_property("attributes",attrlist) - image.set_from_stock(gtk.STOCK_YES, size) + image.set_from_stock(gtk.STOCK_APPLY, size) image.show() arrow.hide() + self.last_step = step # show the an arrow for the current step and make the label bold image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) -- cgit v1.2.3 From 3f5e7c9dff677fd1c52e415c1491d4c63939ebcf Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Tue, 12 Sep 2006 13:54:33 +0200 Subject: * Rename the main window to "Distribution Upgrade" - that is also the name we refer to in update-manager and it fits to the acronym dist-upgrade --- DistUpgrade/DistUpgrade.glade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgrade.glade b/DistUpgrade/DistUpgrade.glade index 598e12be..615f698c 100644 --- a/DistUpgrade/DistUpgrade.glade +++ b/DistUpgrade/DistUpgrade.glade @@ -6,7 +6,7 @@ 6 True - System Upgrade + Distribution Upgrade GTK_WINDOW_TOPLEVEL GTK_WIN_POS_CENTER False -- cgit v1.2.3 From 9204b32c986dabe44ae755f5a665314187891c42 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Tue, 12 Sep 2006 14:20:31 +0200 Subject: * Remove the SourceEntryTemplates since they are obsolete now - they have only been in use by the former add dialog --- UpdateManager/Common/aptsources.py | 51 -------------------------------------- 1 file changed, 51 deletions(-) diff --git a/UpdateManager/Common/aptsources.py b/UpdateManager/Common/aptsources.py index bc6886d9..81b65cfa 100644 --- a/UpdateManager/Common/aptsources.py +++ b/UpdateManager/Common/aptsources.py @@ -87,7 +87,6 @@ class SourceEntry: file = apt_pkg.Config.FindDir("Dir::Etc")+apt_pkg.Config.Find("Dir::Etc::sourcelist") self.file = file # the file that the entry is located in self.parse(line) - # FIXME: this name is really misleading and already overloaded self.template = None # type DistInfo.Suite self.children = [] @@ -373,56 +372,6 @@ class SourcesList: #print self.parents return (parents, used_child_templates) -# templates for the add dialog -class SourceEntryTemplate(SourceEntry): - def __init__(self,a_type,uri,dist,description,comps): - self.comps_descriptions = [] - self.type = a_type - self.uri = uri - self.dist = dist - self.description = description - self.comps = comps - - def matches(self,source_entry): - """ check if a given source_entry matches this one """ - if (self.type != source_entry.type): - return False - if (self.dist != source_entry.dist): - return False - if not is_mirror(self.uri,source_entry.uri): - return False - for e_comp in source_entry.comps: - for t_comp in self.comps: - if e_comp == t_comp.name: break - else: - return False - return True - -class SourceCompTemplate: - def __init__(self, name, description, on_by_default): - self.name = name - self.description = description - self.on_by_default = on_by_default - -class SourceEntryTemplates: - - def __init__(self,datadir): - _ = gettext.gettext - self.templates = [] - - dinfo = DistInfo (base_dir=datadir+"channels/") - - for suite in dinfo.suites: - comps = [] - for comp in suite.components: - comps.append(SourceCompTemplate(comp.name, _(comp.description), - comp.enabled)) - self.templates.append (SourceEntryTemplate(suite.repository_type, - suite.base_uri, - suite.name, - suite.description, - comps)) - # matcher class to make a source entry look nice # lots of predefined matchers to make it i18n/gettext friendly class SourceEntryMatcher: -- cgit v1.2.3 From 659868a2c75856e1bb51ceb2e8ebee52e6f3d820 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Tue, 12 Sep 2006 15:18:43 +0200 Subject: * Remove the obsolete Enabled property completely from the code --- SoftwareProperties/SoftwareProperties.py | 4 ++-- UpdateManager/Common/DistInfo.py | 12 ++++-------- data/channels/README.channels | 5 ++--- 3 files changed, 8 insertions(+), 13 deletions(-) diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py index a18fec20..f2a2cc19 100644 --- a/SoftwareProperties/SoftwareProperties.py +++ b/SoftwareProperties/SoftwareProperties.py @@ -261,7 +261,7 @@ class SoftwareProperties(SimpleGladeApp): # TRANSLATORS: Label for the components in the Internet section # first %s is the description of the component # second %s is the code name of the comp, eg main, universe - label = _("%s (%s)") % (self.distro.source_template.components[comp][2], + label = _("%s (%s)") % (self.distro.source_template.components[comp][1], comp) checkbox = gtk.CheckButton(label) # check if the comp is enabled @@ -721,7 +721,7 @@ class SoftwareProperties(SimpleGladeApp): for comp in source.comps: if source.template.components.has_key(comp): print source.template.components[comp] - (desc, enabled, desc_long) = source.template.components[comp] + (desc, desc_long) = source.template.components[comp] contents += "\n%s" % desc else: contents += "\n%s" % comp diff --git a/UpdateManager/Common/DistInfo.py b/UpdateManager/Common/DistInfo.py index d509cd9e..83603ed9 100644 --- a/UpdateManager/Common/DistInfo.py +++ b/UpdateManager/Common/DistInfo.py @@ -48,7 +48,6 @@ class Component: self.name = "" self.description = "" self.description_long = "" - self.enabled = None class DistInfo: def __init__(self, @@ -85,7 +84,7 @@ class DistInfo: if suite: if component: suite.components["%s" % component.name] = \ - (component.description, component.enabled, + (component.description, component.description_long) component = None self.suites.append (suite) @@ -127,12 +126,10 @@ class DistInfo: elif field == 'Component': if component: suite.components["%s" % component.name] = \ - (component.description, component.enabled, + (component.description, component.description_long) component = Component () component.name = value - elif field == 'Enabled': - component.enabled = bool(int(value)) elif field == 'CompDescription': component.description = _(value) elif field == 'CompDescriptionLong': @@ -140,7 +137,7 @@ class DistInfo: if suite: if component: suite.components["%s" % component.name] = \ - (component.description, component.enabled, + (component.description, component.description_long) component = None self.suites.append (suite) @@ -159,7 +156,6 @@ if __name__ == "__main__": for component in suite.components: print " %s - %s - %s - %s" % (component, suite.components[component][0], - suite.components[component][1], - suite.components[component][2]) + suite.components[component][1]) for child in suite.children: print " %s" % child.description diff --git a/data/channels/README.channels b/data/channels/README.channels index 6bc76872..414148ed 100644 --- a/data/channels/README.channels +++ b/data/channels/README.channels @@ -37,11 +37,10 @@ Description: description of the suite. the translation is done through Component: a component/section of the suite (ignored if ParentSuite is set) -Enabled: activate the component by default (ignored if ParentSuite is - set) - CompDescription: humand readable description of the component/section (ignored if ParentSuite is set). the translation is done through gettext at runtime +ValidMirros: A file that contains a list of mirrors + -- cgit v1.2.3 From 069c04a209cee3a03aab24b753224022ece75dd3 Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Tue, 12 Sep 2006 15:20:32 +0200 Subject: * improve wording of the context menu for updates: select is for a selection and not for check buttons --- UpdateManager/UpdateManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 5d6518b1..7f62d0f0 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -531,13 +531,13 @@ class UpdateManager(SimpleGladeApp): """ if event.type == gtk.gdk.BUTTON_PRESS and event.button == 3: menu = gtk.Menu() - item_select_none = gtk.MenuItem(_("Select _None")) + item_select_none = gtk.MenuItem(_("_Uncheck All")) item_select_none.connect("activate", self.select_none_updgrades) menu.add(item_select_none) num_updates = self.cache.installCount if num_updates == 0: item_select_none.set_property("sensitive", False) - item_select_all = gtk.MenuItem(_("Select _All")) + item_select_all = gtk.MenuItem(_("_Check All")) item_select_all.connect("activate", self.select_all_updgrades) menu.add(item_select_all) menu.popup(None, None, None, 0, event.time) -- cgit v1.2.3 From ae9b9d7ef570cd75c9da0452693427fabf4fb2c1 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 12 Sep 2006 15:41:51 +0200 Subject: * UpdateManager/UpdateManager.py: - make sure to always have a srcver --- UpdateManager/UpdateManager.py | 5 ++++- debian/changelog | 8 ++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index b9ce315c..f1cb35a5 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -120,7 +120,7 @@ class MyCache(apt.Cache): # don't touch the gui in this function, it needs to be thread-safe pkg = self[name] - # get the src package name + # get the src package name srcpkg = pkg.sourcePackageName # assume "main" section @@ -146,6 +146,9 @@ class MyCache(apt.Cache): #print "srcver: %s" % srcver section = srcrecords.Section #print "srcsect: %s" % section + else: + # fail into the error handler + raise SystemError except SystemError, e: srcver = binver diff --git a/debian/changelog b/debian/changelog index 413dcfce..e6628ed7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +update-manager (0.44.11) edgy; urgency=low + + * UpdateManager/UpdateManager.py: + - fix error in get_changelog (lp: #59940). + Thanks to Denis Washington + + -- + update-manager (0.44.10) edgy; urgency=low * aptsources.py: -- cgit v1.2.3 From 23a9a469d3189e9ec1ed40bfe1c707e2a8916d70 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 12 Sep 2006 15:47:10 +0200 Subject: * prepared new upload --- debian/changelog | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index e6628ed7..935cfd85 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,12 @@ update-manager (0.44.11) edgy; urgency=low * UpdateManager/UpdateManager.py: - fix error in get_changelog (lp: #59940). Thanks to Denis Washington + - bugfix in the ListStore + - use the update-manager desktop file when runing synaptic + as the backend to get a consistent UI + - UI improvements (thanks to Sebastian Heinlein!) - -- + -- Michael Vogt Tue, 12 Sep 2006 15:43:16 +0200 update-manager (0.44.10) edgy; urgency=low -- cgit v1.2.3 From e3779b9cfd1f3bdc19841dff4709c8b2d4ad020c Mon Sep 17 00:00:00 2001 From: "glatzor@ubuntu.com" <> Date: Tue, 12 Sep 2006 16:01:17 +0200 Subject: * Avoid the term channel --- data/glade/SoftwarePropertiesDialogs.glade | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/glade/SoftwarePropertiesDialogs.glade b/data/glade/SoftwarePropertiesDialogs.glade index b4bf6180..7334d67a 100644 --- a/data/glade/SoftwarePropertiesDialogs.glade +++ b/data/glade/SoftwarePropertiesDialogs.glade @@ -164,9 +164,9 @@ True True - <big><b>Enter the complete APT line of the source that you want to add</b></big> + <big><b>Enter the complete APT line of the repository that you want to add as source</b></big> -The APT line includes the type, location and components of a source, for example <i>"deb http://ftp.debian.org sarge main"</i>. +The APT line includes the type, location and components of a repository, for example <i>"deb http://ftp.debian.org sarge main"</i>. False True GTK_JUSTIFY_LEFT @@ -859,9 +859,9 @@ Source True True - <b><big>The channel information is out-of-date</big></b> + <b><big>The information about available software is out-of-date</big></b> -You have to reload the channel information to install software and updates from newly added or changed channels. +To install software and updates from newly added or changed sources, you have to reload the information about available software. You need a working internet connection to continue. False -- cgit v1.2.3 From 3cb8e9aab902baaf454edd0020318d15f028682e Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 13 Sep 2006 09:23:59 +0200 Subject: * removed branding --- UpdateManager/UpdateManager.py | 13 ++++++------- debian/changelog | 3 ++- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 8f523202..3fe9ad1e 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -228,13 +228,12 @@ class UpdateList: dist = pipe.read().strip() del pipe - templates = [("%s-security" % dist, "Ubuntu", _("Important security updates" - " of Ubuntu"), 10), - ("%s-updates" % dist, "Ubuntu", _("Recommended updates of " - "Ubuntu"), 9), - ("%s-proposed" % dist, "Ubuntu", _("Proposed updates for Ubuntu"), 8), - ("%s-backports" % dist, "Ubuntu", _("Backports of Ubuntu"), 7), - (dist, "Ubuntu", _("Updates of Ubuntu"), 6)] + templates = [("%s-security" % dist, "Ubuntu", _("Important security updates") + , 10), + ("%s-updates" % dist, "Ubuntu", _("Recommended updates"), 9), + ("%s-proposed" % dist, "Ubuntu", _("Proposed updates"), 8), + ("%s-backports" % dist, "Ubuntu", _("Backports"), 7), + (dist, "Ubuntu", _("Normal updates"), 6)] self.pkgs = {} self.matcher = {} diff --git a/debian/changelog b/debian/changelog index 0e54d70b..71fd5f23 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,8 +7,9 @@ update-manager (0.44.11) edgy; urgency=low - use the update-manager desktop file when runing synaptic as the backend to get a consistent UI - UI improvements (thanks to Sebastian Heinlein!) + - remove branding - -- + -- Michael Vogt Tue, 12 Sep 2006 20:37:55 +0200 update-manager (0.44.10) edgy; urgency=low -- cgit v1.2.3 From 77bd6849a9bcd0855b47244558f1df7bc64da197 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 13 Sep 2006 14:56:29 +0200 Subject: * DistUpgrade/DistUpgradeView.py: - import subprocess --- DistUpgrade/DistUpgradeView.py | 1 + 1 file changed, 1 insertion(+) diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py index d5b430b8..a9cd16d7 100644 --- a/DistUpgrade/DistUpgradeView.py +++ b/DistUpgrade/DistUpgradeView.py @@ -43,6 +43,7 @@ def estimatedDownloadTime(requiredDownload): class DumbTerminal(object): def call(self, cmd): " expects a command in the subprocess style (as a list) " + import subprocess subprocess.call(cmd) -- cgit v1.2.3 From ef22ff2394fa60c8cff739a3caf4014fbcf7531c Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 16 Sep 2006 11:26:07 +0200 Subject: * bugfixes for the non-interactive mode --- UpdateManager/Common/DistInfo.py | 13 ++++++++----- UpdateManager/Common/aptsources.py | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/UpdateManager/Common/DistInfo.py b/UpdateManager/Common/DistInfo.py index 83603ed9..8153f04b 100644 --- a/UpdateManager/Common/DistInfo.py +++ b/UpdateManager/Common/DistInfo.py @@ -116,11 +116,14 @@ class DistInfo: elif field == 'MatchURI': suite.match_uri = value elif field == 'MirrorsFile': - suite.valid_mirrors = filter(lambda s: - ((s != "") and - (not s.startswith("#"))), - map(string.strip, - open(value))) + if os.path.exists(value): + suite.valid_mirrors = filter(lambda s: + ((s != "") and + (not s.startswith("#"))), + map(string.strip, + open(value))) + else: + print "WARNING: can't read '%s'" % value elif field == 'Description': suite.description = _(value) elif field == 'Component': diff --git a/UpdateManager/Common/aptsources.py b/UpdateManager/Common/aptsources.py index 81b65cfa..836b8fae 100644 --- a/UpdateManager/Common/aptsources.py +++ b/UpdateManager/Common/aptsources.py @@ -396,7 +396,7 @@ class SourceEntryMatcher: f = os.path.basename(f) i = f.find(".info") f = f[0:i] - dist = DistInfo(f) + dist = DistInfo(f,base_dir=matcherPath) for suite in dist.suites: if suite.match_uri != None: self.templates.append(suite) -- cgit v1.2.3 From a1abd4d08a2cd3d6413ead7b133fac17c2f4a1cf Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 16 Sep 2006 11:55:04 +0200 Subject: * DistUpgrade/DistUpgradeConfigParser.py: - add optional "name" arguemnt --- DistUpgrade/DistUpgradeConfigParser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeConfigParser.py b/DistUpgrade/DistUpgradeConfigParser.py index 6879dfda..d5391939 100644 --- a/DistUpgrade/DistUpgradeConfigParser.py +++ b/DistUpgrade/DistUpgradeConfigParser.py @@ -2,10 +2,10 @@ from ConfigParser import ConfigParser, NoOptionError class DistUpgradeConfig(ConfigParser): - def __init__(self, datadir): + def __init__(self, datadir, name="DistUpgrade.cfg"): ConfigParser.__init__(self) self.datadir=datadir - self.read([datadir+'/DistUpgrade.cfg']) + self.read([datadir+"/"+name]) def getlist(self, section, option): try: tmp = self.get(section, option) -- cgit v1.2.3 From c5c5f86db727831f68c93e7a388e4e2cb8491cb6 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 18 Sep 2006 16:51:08 +0200 Subject: * typo fixes (thanks to Bruce Cowan) --- DistUpgrade/DistUpgradeCache.py | 4 ++-- DistUpgrade/DistUpgradeControler.py | 2 +- DistUpgrade/DistUpgradeViewGtk.py | 12 ++++++------ SoftwareProperties/SoftwareProperties.py | 2 +- UpdateManager/DistUpgradeFetcher.py | 2 +- data/channels/Ubuntu.info.in | 14 +++++++------- data/update-manager.schemas.in | 4 ++-- debian/changelog | 8 ++++++++ 8 files changed, 28 insertions(+), 20 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 680e7d9e..3c0efffa 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -155,7 +155,7 @@ class MyCache(apt.Cache): except SystemError, e: # FIXME: change the text to something more useful view.error(_("Could not calculate the upgrade"), - _("A unresolvable problem occured while " + _("A unresolvable problem occurred while " "calculating the upgrade.\n\n" "Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ " @@ -259,7 +259,7 @@ class MyCache(apt.Cache): "ubuntu-desktop, kubuntu-desktop or " "edubuntu-desktop package and it was not " "possible to detect which version of " - "ubuntu you are runing.\n " + "ubuntu you are running.\n " "Please install one of the packages " "above first using synaptic or " "apt-get before proceeding.")) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 800590cb..52670371 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -293,7 +293,7 @@ class DistUpgradeControler(object): if self.sources_disabled: self._view.information(_("Third party sources disabled"), - _("Some third party entries in your souces.list " + _("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 synaptic." diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 5a3779e9..1385d18f 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -484,19 +484,19 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): if pkgs_remove > 0: # FIXME: make those two seperate lines to make it clear # that the "%" applies to the result of ngettext - msg += gettext.ngettext("%s package is going to be removed.", - "%s packages are going to be removed.", + msg += gettext.ngettext("%d package is going to be removed.", + "%d packages are going to be removed.", pkgs_remove) % pkgs_remove msg += " " if pkgs_inst > 0: - msg += gettext.ngettext("%s new package is going to be " + msg += gettext.ngettext("%d new package is going to be " "installed.", - "%s new packages are going to be " + "%d new packages are going to be " "installed.",pkgs_inst) % pkgs_inst msg += " " if pkgs_upgrade > 0: - msg += gettext.ngettext("%s package is going to be upgraded.", - "%s packages are going to be upgraded.", + msg += gettext.ngettext("%d package is going to be upgraded.", + "%d packages are going to be upgraded.", pkgs_upgrade) % pkgs_upgrade msg +=" " if downloadSize > 0: diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py index f2a2cc19..1c8a3425 100644 --- a/SoftwareProperties/SoftwareProperties.py +++ b/SoftwareProperties/SoftwareProperties.py @@ -1033,7 +1033,7 @@ class SoftwareProperties(SimpleGladeApp): type=gtk.MESSAGE_ERROR, buttons=gtk.BUTTONS_OK, message_format=None) - dialog.set_markup(_("Error scaning the CD\n\n%s"%msg)) + dialog.set_markup(_("Error scanning the CD\n\n%s"%msg)) res = dialog.run() dialog.destroy() return diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py index af07cfb4..cda27e2f 100644 --- a/UpdateManager/DistUpgradeFetcher.py +++ b/UpdateManager/DistUpgradeFetcher.py @@ -219,7 +219,7 @@ class DistUpgradeFetcher(object): if not self.verifyDistUprader(): error(self.window_main, _("Verfication failed"), - _("Verfing the upgrade failed. There may be a problem " + _("Verifying the upgrade failed. There may be a problem " "with the network or with the server. ")) self.cleanup() return diff --git a/data/channels/Ubuntu.info.in b/data/channels/Ubuntu.info.in index d6070790..1afc66c9 100644 --- a/data/channels/Ubuntu.info.in +++ b/data/channels/Ubuntu.info.in @@ -25,7 +25,7 @@ BaseURI: cdrom:\[Ubuntu.*6.10 _Description: Cdrom with Ubuntu 6.10 'Edgy Eft' Available: False Component: main -_CompDescription: Oficially supported +_CompDescription: Officially supported Component: restricted _CompDescription: Restricted copyright @@ -76,7 +76,7 @@ BaseURI: cdrom:\[Ubuntu.*6.06 _Description: Cdrom with Ubuntu 6.06 LTS 'Dapper Drake' Available: False Component: main -_CompDescription: Oficially supported +_CompDescription: Officially supported Component: restricted _CompDescription: Restricted copyright @@ -123,7 +123,7 @@ BaseURI: cdrom:\[Ubuntu.*5.10 _Description: Cdrom with Ubuntu 5.10 'Breezy Badger' Available: False Component: main -_CompDescription: Oficially supported +_CompDescription: Officially supported Component: restricted _CompDescription: Restricted copyright @@ -151,7 +151,7 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 5.04 'Hoary Hedgehog' Component: main -_CompDescription: Oficially supported +_CompDescription: Officially supported Component: restricted _CompDescription: Restricted copyright Component: universe @@ -165,7 +165,7 @@ BaseURI: cdrom:\[Ubuntu.*5.04 _Description: Cdrom with Ubuntu 5.04 'Hoary Hedgehog' Available: False Component: main -_CompDescription: Oficially supported +_CompDescription: Officially supported Component: restricted _CompDescription: Restricted copyright @@ -192,7 +192,7 @@ BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu _Description: Ubuntu 4.10 'Warty Warthog' Component: main -_CompDescription: No longer oficially supported +_CompDescription: No longer officially supported Component: restricted _CompDescription: Restricted copyright Component: universe @@ -206,7 +206,7 @@ BaseURI: cdrom:\[Ubuntu.*4.10 _Description: Cdrom with Ubuntu 4.10 'Warty Warthog' Available: False Component: main -_CompDescription: No longer oficially supported +_CompDescription: No longer officially supported Component: restricted _CompDescription: Restricted copyright diff --git a/data/update-manager.schemas.in b/data/update-manager.schemas.in index ad72c893..3740318c 100644 --- a/data/update-manager.schemas.in +++ b/data/update-manager.schemas.in @@ -11,7 +11,7 @@ Remind to reload the channel list - If automatic checking for updates is disabeld, you have + If automatic checking for updates is disabled, you have to reload the channel list manually. This option allows to hide the reminder shown in this case. @@ -28,7 +28,7 @@ Show details of an update Stores the state of the expander that contains the - list of changs and the description + list of changes and the description diff --git a/debian/changelog b/debian/changelog index 71fd5f23..a6886655 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +update-manager (0.44.12) edgy; urgency=low + + * DistUpgrade/DistUpgradeViewGtk.py: + - use '%d' instead of '%s' where appropriate + * fixed lots of typos (lp: #60633) + + -- Michael Vogt Mon, 18 Sep 2006 16:37:52 +0200 + update-manager (0.44.11) edgy; urgency=low * UpdateManager/UpdateManager.py: -- cgit v1.2.3 From 33d4c53df7e8daeacb6034815ff39fb5ebc4d32a Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 18 Sep 2006 17:17:04 +0200 Subject: * changelog updated --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index a6886655..0346d48e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,7 @@ update-manager (0.44.12) edgy; urgency=low * DistUpgrade/DistUpgradeViewGtk.py: - - use '%d' instead of '%s' where appropriate + - use '%d' instead of '%s' where appropriate (lp: #60239) * fixed lots of typos (lp: #60633) -- Michael Vogt Mon, 18 Sep 2006 16:37:52 +0200 -- cgit v1.2.3 From 1dd21dbda1eeee6daf6eaf4a2f7c4bf1ce25ce08 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 19 Sep 2006 11:35:13 +0200 Subject: * DistUpgrade/DistUpgradeCache.py, UpdateManager/UpdateManager.py: - filter out python-apt warnings * UpdateManager/UpdateManager.py: - make sure that src_ver is always initialized --- DistUpgrade/DistUpgradeCache.py | 1 + UpdateManager/UpdateManager.py | 4 ++++ debian/changelog | 9 +++++++++ 3 files changed, 14 insertions(+) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 3c0efffa..4b6fd680 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -1,6 +1,7 @@ import warnings warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) +warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) import apt import apt_pkg import os diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 3fe9ad1e..0d70b56c 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -33,8 +33,11 @@ try: except: import fakegconf as gconf import gobject +from warnings import warn +warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) import apt import apt_pkg + import gettext import copy import string @@ -130,6 +133,7 @@ class MyCache(apt.Cache): # get the source version, start with the binaries version binver = pkg.candidateVersion + srcver = pkg.candidateVersion #print "bin: %s" % binver try: # try to get the source version of the pkg, this differs diff --git a/debian/changelog b/debian/changelog index 0346d48e..7c759639 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +update-manager (0.44.13) edgy; urgency=low + + * UpdateManager/UpdateManager.py: + - make sure that src_ver is always initialized (thanks to + Simira for reporting) + - filter python-apt future warning (especially for seb128) + + -- + update-manager (0.44.12) edgy; urgency=low * DistUpgrade/DistUpgradeViewGtk.py: -- cgit v1.2.3 From 040c4c726d15962c942f0b286299da2c48e9bccb Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 12:07:36 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - start a initial backports feature --- DistUpgrade/DistUpgrade.cfg | 4 ++++ DistUpgrade/DistUpgradeControler.py | 45 +++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index 7a8ebba9..03388b07 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -39,5 +39,9 @@ To=edgy ValidOrigin=Ubuntu ValidMirrors = mirrors.cfg +[Backports] +Packages=apt,dpkg,python-apt +DebLine=deb http://people.ubuntu.com/~mvo/backports/dapper/ / + [Network] MaxRetries=3 \ No newline at end of file diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 52670371..19babaa3 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -31,6 +31,7 @@ import logging import re import statvfs import shutil +import glob from DistUpgradeConfigParser import DistUpgradeConfig from aptsources import SourcesList, SourceEntry, Distribution, is_mirror @@ -270,6 +271,11 @@ class DistUpgradeControler(object): self.toDist+"-security", comps) else: self.abort() + + # add the backports URI (if we have it) + line = self.config.get("Backports","DebLine") + if line and (not SourceEntry(line) in self.sources.list): + self.sources.list.append(SourceEntry(line)) # write (well, backup first ;) ! self.sources.backup(self.sources_backup_ext) @@ -548,6 +554,42 @@ class DistUpgradeControler(object): self.openCache() sys.exit(1) + def getRequiredBackports(self): + " download the backports specified in DistUpgrade.cfg " + # save cachedir and setup new one + cachedir = apt_pkg.Config.Find("Dir::Cache::archives") + backportsdir = os.path.join(os.getcwd(),"backports") + if not os.path.exists(backportsdir): + os.mkdir(backportsdir) + if not os.path.exists(os.path.join(backportsdir,"partial")): + os.mkdir(os.path.join(backportsdir,"partial")) + apt_pkg.Config.Set("Dir::Cache::archives",backportsdir) + + # mark the backports for upgrade and get them + pm = apt_pkg.GetPackageManager(self.cache._depcache) + fetcher = apt_pkg.GetAcquire(self._view.getFetchProgress()) + + # FIXME: add a version line to the cfg file to make sure + # we get the right version file! + for pkgname in self.config.getlist("Backports","Packages"): + self.cache[pkgname].markInstall() + pm.GetArchives(fetcher,self.cache._list,self.cache._records) + + # reset the cache dir + apt_pkg.Config.Set("Dir::Cache::archives",cachedir) + + self.setupRequiredBackports(backportsdir) + + def setupRequiredBackports(self, backportsdir): + " setup the required backports in a evil way " + backportsdir = os.path.normpath(backportsdir) + # unpack it + for deb in glob.glob(backportsdir+"*.deb"): + os.system("dpkg-deb -x %s %s" % (deb, backportsdir)) + # setup some pathes to make sure the new stuff is used + os.putenv("LD_LIBRARY_PATH",os.path.join(backportsdir,"/usr/lib")) + os.putenv("PYTHONPATH",os.path.join(backportsdir,"/usr/lib/python2.4/")) + os.putenv("PATH","%s:%s" % (os.path.join(backportsdir,"/usr/bin"),os.getenv("PATH"))) # this is the core def edgyUpgrade(self): @@ -602,6 +644,9 @@ class DistUpgradeControler(object): "in the bugreport.") % pkg) self.abort() + # get backported packages (if needed) + self.getRequiredBackports() + # calc the dist-upgrade and see if the removals are ok/expected # do the dist-upgrade self._view.setStep(3) -- cgit v1.2.3 From 9d4b2d3c59f133b79f25959a9e34a4255ab0447b Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 12:29:11 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - do not mark the backports for install and use the PM interface but the apt_pkg.GetPkgAcqFile() so that we don't have to worry about dependencies --- DistUpgrade/DistUpgradeControler.py | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 19babaa3..0ae879dc 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -566,30 +566,41 @@ class DistUpgradeControler(object): apt_pkg.Config.Set("Dir::Cache::archives",backportsdir) # mark the backports for upgrade and get them - pm = apt_pkg.GetPackageManager(self.cache._depcache) fetcher = apt_pkg.GetAcquire(self._view.getFetchProgress()) - # FIXME: add a version line to the cfg file to make sure # we get the right version file! for pkgname in self.config.getlist("Backports","Packages"): - self.cache[pkgname].markInstall() - pm.GetArchives(fetcher,self.cache._list,self.cache._records) + pkg = self.cache[pkgname] + pkg._lookupRecord(True) + path = apt_pkg.ParseSection(pkg._records.Record)["Filename"] + cand = pkg._depcache.GetCandidateVer(pkg._pkg) + for (packagefile,i) in cand.FileList: + indexfile = self.cache._list.FindIndex(packagefile) + if indexfile: + uri = indexfile.ArchiveURI(path) + apt_pkg.GetPkgAcqFile(fetcher, uri=uri, + descr=_("Fetching backport of '%s'" % pkgname)) + res = fetcher.Run() + if res != fetcher.ResultContinue: + # ick! error ... + return False # reset the cache dir apt_pkg.Config.Set("Dir::Cache::archives",cachedir) - - self.setupRequiredBackports(backportsdir) + return self.setupRequiredBackports(backportsdir) def setupRequiredBackports(self, backportsdir): " setup the required backports in a evil way " backportsdir = os.path.normpath(backportsdir) # unpack it for deb in glob.glob(backportsdir+"*.deb"): - os.system("dpkg-deb -x %s %s" % (deb, backportsdir)) + ret = os.system("dpkg-deb -x %s %s" % (deb, backportsdir)) + # FIXME: do error checking # setup some pathes to make sure the new stuff is used os.putenv("LD_LIBRARY_PATH",os.path.join(backportsdir,"/usr/lib")) os.putenv("PYTHONPATH",os.path.join(backportsdir,"/usr/lib/python2.4/")) os.putenv("PATH","%s:%s" % (os.path.join(backportsdir,"/usr/bin"),os.getenv("PATH"))) + return True # this is the core def edgyUpgrade(self): -- cgit v1.2.3 From 2f0d800812e27c97be60a9e9da7d7b1645d0533d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 13:10:22 +0200 Subject: * DistUpgrade/DistUpgrade.cfg: - added version identifier to the config to ensure that we get the right version of backported packages (currently set to ~dapper) * DistUpgrade/DistUpgradeControler.py: - check the versionlist of the backported packages to find the one we need --- DistUpgrade/DistUpgrade.cfg | 2 ++ DistUpgrade/DistUpgradeControler.py | 26 +++++++++++++++++++++++--- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index 03388b07..62a4bb8b 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -41,7 +41,9 @@ ValidMirrors = mirrors.cfg [Backports] Packages=apt,dpkg,python-apt +VersionIdent=~edgy DebLine=deb http://people.ubuntu.com/~mvo/backports/dapper/ / + [Network] MaxRetries=3 \ No newline at end of file diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 0ae879dc..4d8e9bf5 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -558,7 +558,9 @@ class DistUpgradeControler(object): " download the backports specified in DistUpgrade.cfg " # save cachedir and setup new one cachedir = apt_pkg.Config.Find("Dir::Cache::archives") + cwd = os.getcwd() backportsdir = os.path.join(os.getcwd(),"backports") + os.chdir(backportsdir) if not os.path.exists(backportsdir): os.mkdir(backportsdir) if not os.path.exists(os.path.join(backportsdir,"partial")): @@ -568,16 +570,33 @@ class DistUpgradeControler(object): # mark the backports for upgrade and get them fetcher = apt_pkg.GetAcquire(self._view.getFetchProgress()) # FIXME: add a version line to the cfg file to make sure - # we get the right version file! + # we get the right version file! and add sanity checking + # that we don't get (accidently) the edgy version for pkgname in self.config.getlist("Backports","Packages"): pkg = self.cache[pkgname] - pkg._lookupRecord(True) + # look for the right version (backport) + for ver in pkg._pkg.VersionList: + print ver.VerStr + if self.config.get("Backports","VersionIdent") in ver.VerStr: + break + else: + # FIXME: be more clever here (exception) + print "No backport found!?!" + return False + if ver.FileList == None: + print "No FileList for: %s " % self._pkg.Name() + return False + f, index = ver.FileList.pop(0) + pkg._records.Lookup((f,index)) path = apt_pkg.ParseSection(pkg._records.Record)["Filename"] cand = pkg._depcache.GetCandidateVer(pkg._pkg) for (packagefile,i) in cand.FileList: indexfile = self.cache._list.FindIndex(packagefile) if indexfile: - uri = indexfile.ArchiveURI(path) + match = re.match(r"<.*ArchiveURI='(.*)'>$", + str(indexfile)) + if match: + uri = match.group(1) + path apt_pkg.GetPkgAcqFile(fetcher, uri=uri, descr=_("Fetching backport of '%s'" % pkgname)) res = fetcher.Run() @@ -587,6 +606,7 @@ class DistUpgradeControler(object): # reset the cache dir apt_pkg.Config.Set("Dir::Cache::archives",cachedir) + os.chdir(cwd) return self.setupRequiredBackports(backportsdir) def setupRequiredBackports(self, backportsdir): -- cgit v1.2.3 From 34a9ff9157da1e60b0fc63b7cf583f8d38a0016e Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 13:39:13 +0200 Subject: * DistUpgrade/DistUpgrade.cfg: use ~dapper as identifier * DistUpgrade/DistUpgradeControler.py, DistUpgrade/dist-upgrade.py: - add "--haveBackports" to skip parts of the procedure - re-exec itself when all the backports are in place --- DistUpgrade/DistUpgrade.cfg | 4 +- DistUpgrade/DistUpgradeControler.py | 103 +++++++++++++++++++----------------- DistUpgrade/dist-upgrade.py | 4 +- 3 files changed, 59 insertions(+), 52 deletions(-) diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index 62a4bb8b..b7bc5216 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -41,9 +41,9 @@ ValidMirrors = mirrors.cfg [Backports] Packages=apt,dpkg,python-apt -VersionIdent=~edgy +VersionIdent=~dapper DebLine=deb http://people.ubuntu.com/~mvo/backports/dapper/ / [Network] -MaxRetries=3 \ No newline at end of file +MaxRetries=3 diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 4d8e9bf5..1481769c 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -87,7 +87,7 @@ class AptCdrom(object): class DistUpgradeControler(object): """ this is the controler that does most of the work """ - def __init__(self, distUpgradeView, cdromPath=None, datadir=None): + def __init__(self, distUpgradeView, options=None, datadir=None): # setup the pathes localedir = "/usr/share/locale/update-manager/" if datadir == None: @@ -96,6 +96,8 @@ class DistUpgradeControler(object): gladedir = datadir self.datadir = datadir + self.options = options + # init gettext gettext.bindtextdomain("update-manager",localedir) gettext.textdomain("update-manager") @@ -106,8 +108,8 @@ class DistUpgradeControler(object): self.cache = None # specific for the CDROM based upgrade - self.aptcdrom = AptCdrom(distUpgradeView, cdromPath) self.useNetwork = True + self.aptcdrom = AptCdrom(distUpgradeView, options.cdromPath) # the configuration self.config = DistUpgradeConfig(datadir) @@ -620,63 +622,66 @@ class DistUpgradeControler(object): os.putenv("LD_LIBRARY_PATH",os.path.join(backportsdir,"/usr/lib")) os.putenv("PYTHONPATH",os.path.join(backportsdir,"/usr/lib/python2.4/")) os.putenv("PATH","%s:%s" % (os.path.join(backportsdir,"/usr/bin"),os.getenv("PATH"))) - return True + + # now exec self again + os.execl(sys.argv[0],["--haveBackports"]) # this is the core def edgyUpgrade(self): - # sanity check (check for ubuntu-desktop, brokenCache etc) - self._view.updateStatus(_("Checking package manager")) - self._view.setStep(1) - - if not self.prepare(): - self.abort(1) + if not self.options.haveBackports: + # sanity check (check for ubuntu-desktop, brokenCache etc) + self._view.updateStatus(_("Checking package manager")) + self._view.setStep(1) + + if not self.prepare(): + self.abort(1) - # run a "apt-get update" now - if not self.doUpdate(): - sys.exit(1) + # run a "apt-get update" now + if not self.doUpdate(): + sys.exit(1) - # do pre-upgrade stuff (calc list of obsolete pkgs etc) - self.doPreUpgrade() + # do pre-upgrade stuff (calc list of obsolete pkgs etc) + self.doPreUpgrade() - # update sources.list - self._view.setStep(2) - self._view.updateStatus(_("Updating repository information")) - if not self.updateSourcesList(): - self.abort() - - # add cdrom (if we have one) - if (self.aptcdrom and - not self.aptcdrom.add(self.sources_backup_ext)): - sys.exit(1) + # update sources.list + self._view.setStep(2) + self._view.updateStatus(_("Updating repository information")) + if not self.updateSourcesList(): + self.abort() - # then update the package index files - if not self.doUpdate(): - self.abort() + # add cdrom (if we have one) + if (self.aptcdrom and + not self.aptcdrom.add(self.sources_backup_ext)): + sys.exit(1) - # then open the cache (again) - self._view.updateStatus(_("Checking package manager")) - self.openCache() - # now check if we still have some key packages after the update - # if not something went seriously wrong - for pkg in self.config.getlist("Distro","BaseMetaPkgs"): - if not self.cache.has_key(pkg): - # FIXME: we could offer to add default source entries here, - # but we need to be careful to not duplicate them - # (i.e. the error here could be something else than - # missing sources entires but network errors etc) - logging.error("No '%s' after sources.list rewrite+update") - self._view.error(_("Invalid package information"), - _("After your package information was " - "updated the essential package '%s' can " - "not be found anymore.\n" - "This indicates a serious error, please " - "report this bug against the 'update-manager' " - "package and include the files in /var/log/dist-upgrade/ " - "in the bugreport.") % pkg) + # then update the package index files + if not self.doUpdate(): self.abort() - # get backported packages (if needed) - self.getRequiredBackports() + # then open the cache (again) + self._view.updateStatus(_("Checking package manager")) + self.openCache() + # now check if we still have some key packages after the update + # if not something went seriously wrong + for pkg in self.config.getlist("Distro","BaseMetaPkgs"): + if not self.cache.has_key(pkg): + # FIXME: we could offer to add default source entries here, + # but we need to be careful to not duplicate them + # (i.e. the error here could be something else than + # missing sources entires but network errors etc) + logging.error("No '%s' after sources.list rewrite+update") + self._view.error(_("Invalid package information"), + _("After your package information was " + "updated the essential package '%s' can " + "not be found anymore.\n" + "This indicates a serious error, please " + "report this bug against the 'update-manager' " + "package and include the files in /var/log/dist-upgrade/ " + "in the bugreport.") % pkg) + self.abort() + + # get backported packages (if needed) + self.getRequiredBackports() # calc the dist-upgrade and see if the removals are ok/expected # do the dist-upgrade diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index 07320fb9..3f5bf61b 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -12,6 +12,8 @@ if __name__ == "__main__": parser = OptionParser() parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help="Use the given path to search for a cdrom with upgradable packages") + parser.add_option("-b", "--have-backports", dest="haveBackports", + default=False) (options, args) = parser.parse_args() if not os.path.exists("/var/log/dist-upgrade"): @@ -31,7 +33,7 @@ if __name__ == "__main__": logging.error("can't import view '%s'" % requested_view) print "can't find %s" % requested_view sys.exit(1) - app = DistUpgradeControler(view, cdromPath=options.cdromPath) + app = DistUpgradeControler(view, options) app.run() -- cgit v1.2.3 From 4f1f29f6b9bcc92c10428dc4a3ce783e7ad1f5c5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 15:41:07 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - bugfixes in the new "use-backports" code --- DistUpgrade/DistUpgradeControler.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 1481769c..22039aae 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -591,8 +591,7 @@ class DistUpgradeControler(object): f, index = ver.FileList.pop(0) pkg._records.Lookup((f,index)) path = apt_pkg.ParseSection(pkg._records.Record)["Filename"] - cand = pkg._depcache.GetCandidateVer(pkg._pkg) - for (packagefile,i) in cand.FileList: + for (packagefile,i) in ver.FileList: indexfile = self.cache._list.FindIndex(packagefile) if indexfile: match = re.match(r"<.*ArchiveURI='(.*)'>$", @@ -615,7 +614,7 @@ class DistUpgradeControler(object): " setup the required backports in a evil way " backportsdir = os.path.normpath(backportsdir) # unpack it - for deb in glob.glob(backportsdir+"*.deb"): + for deb in glob.glob(backportsdir+"/*.deb"): ret = os.system("dpkg-deb -x %s %s" % (deb, backportsdir)) # FIXME: do error checking # setup some pathes to make sure the new stuff is used @@ -624,7 +623,7 @@ class DistUpgradeControler(object): os.putenv("PATH","%s:%s" % (os.path.join(backportsdir,"/usr/bin"),os.getenv("PATH"))) # now exec self again - os.execl(sys.argv[0],["--haveBackports"]) + os.execv(sys.argv[0],[sys.argv[0],"--haveBackports"]) # this is the core def edgyUpgrade(self): -- cgit v1.2.3 From b117e7ca7ed21fe11a3c9554b3848544822a55e2 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 16:30:59 +0200 Subject: * DistUpgrade/backport-source.list: - the sources.list fragment for the backports * DistUpgrade/DistUpgradeControler.py: - run the backports fetching as early as possible --- DistUpgrade/DistUpgrade.cfg | 2 +- DistUpgrade/DistUpgradeControler.py | 107 ++++++++++++++++++------------------ DistUpgrade/backport-source.list | 2 + DistUpgrade/dist-upgrade.py | 2 +- 4 files changed, 58 insertions(+), 55 deletions(-) create mode 100644 DistUpgrade/backport-source.list diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index b7bc5216..767f555e 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -42,7 +42,7 @@ ValidMirrors = mirrors.cfg [Backports] Packages=apt,dpkg,python-apt VersionIdent=~dapper -DebLine=deb http://people.ubuntu.com/~mvo/backports/dapper/ / +SourcesList=backport-source.list [Network] diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 22039aae..fca2abaf 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -274,11 +274,6 @@ class DistUpgradeControler(object): else: self.abort() - # add the backports URI (if we have it) - line = self.config.get("Backports","DebLine") - if line and (not SourceEntry(line) in self.sources.list): - self.sources.list.append(SourceEntry(line)) - # write (well, backup first ;) ! self.sources.backup(self.sources_backup_ext) self.sources.save() @@ -558,6 +553,11 @@ class DistUpgradeControler(object): def getRequiredBackports(self): " download the backports specified in DistUpgrade.cfg " + # add the backports sources.list fragment + shutil.copy(self.config.get("Backports","SourcesList"), + apt_pkg.FindDir("Dir::Etc::sourceparts")) + # run update + self.doUpdate() # save cachedir and setup new one cachedir = apt_pkg.Config.Find("Dir::Cache::archives") cwd = os.getcwd() @@ -606,6 +606,7 @@ class DistUpgradeControler(object): return False # reset the cache dir + os.unlink(apt_pkg.FindDir("Dir::Etc::sourceparts")+"/backport-source.list") apt_pkg.Config.Set("Dir::Cache::archives",cachedir) os.chdir(cwd) return self.setupRequiredBackports(backportsdir) @@ -623,64 +624,64 @@ class DistUpgradeControler(object): os.putenv("PATH","%s:%s" % (os.path.join(backportsdir,"/usr/bin"),os.getenv("PATH"))) # now exec self again - os.execv(sys.argv[0],[sys.argv[0],"--haveBackports"]) + os.execv(sys.argv[0],[sys.argv[0],"--have-backports"]) # this is the core def edgyUpgrade(self): - if not self.options.haveBackports: - # sanity check (check for ubuntu-desktop, brokenCache etc) - self._view.updateStatus(_("Checking package manager")) - self._view.setStep(1) - - if not self.prepare(): - self.abort(1) + # sanity check (check for ubuntu-desktop, brokenCache etc) + self._view.updateStatus(_("Checking package manager")) + self._view.setStep(1) + + if not self.prepare(): + self.abort(1) - # run a "apt-get update" now - if not self.doUpdate(): - sys.exit(1) + if not self.options.haveBackports: + # get backported packages (if needed) + self.getRequiredBackports() - # do pre-upgrade stuff (calc list of obsolete pkgs etc) - self.doPreUpgrade() + # run a "apt-get update" now + if not self.doUpdate(): + sys.exit(1) - # update sources.list - self._view.setStep(2) - self._view.updateStatus(_("Updating repository information")) - if not self.updateSourcesList(): - self.abort() + # do pre-upgrade stuff (calc list of obsolete pkgs etc) + self.doPreUpgrade() - # add cdrom (if we have one) - if (self.aptcdrom and - not self.aptcdrom.add(self.sources_backup_ext)): - sys.exit(1) + # update sources.list + self._view.setStep(2) + self._view.updateStatus(_("Updating repository information")) + if not self.updateSourcesList(): + self.abort() - # then update the package index files - if not self.doUpdate(): - self.abort() + # add cdrom (if we have one) + if (self.aptcdrom and + not self.aptcdrom.add(self.sources_backup_ext)): + sys.exit(1) - # then open the cache (again) - self._view.updateStatus(_("Checking package manager")) - self.openCache() - # now check if we still have some key packages after the update - # if not something went seriously wrong - for pkg in self.config.getlist("Distro","BaseMetaPkgs"): - if not self.cache.has_key(pkg): - # FIXME: we could offer to add default source entries here, - # but we need to be careful to not duplicate them - # (i.e. the error here could be something else than - # missing sources entires but network errors etc) - logging.error("No '%s' after sources.list rewrite+update") - self._view.error(_("Invalid package information"), - _("After your package information was " - "updated the essential package '%s' can " - "not be found anymore.\n" - "This indicates a serious error, please " - "report this bug against the 'update-manager' " - "package and include the files in /var/log/dist-upgrade/ " - "in the bugreport.") % pkg) - self.abort() + # then update the package index files + if not self.doUpdate(): + self.abort() - # get backported packages (if needed) - self.getRequiredBackports() + # then open the cache (again) + self._view.updateStatus(_("Checking package manager")) + self.openCache() + # now check if we still have some key packages after the update + # if not something went seriously wrong + for pkg in self.config.getlist("Distro","BaseMetaPkgs"): + if not self.cache.has_key(pkg): + # FIXME: we could offer to add default source entries here, + # but we need to be careful to not duplicate them + # (i.e. the error here could be something else than + # missing sources entires but network errors etc) + logging.error("No '%s' after sources.list rewrite+update") + self._view.error(_("Invalid package information"), + _("After your package information was " + "updated the essential package '%s' can " + "not be found anymore.\n" + "This indicates a serious error, please " + "report this bug against the 'update-manager' " + "package and include the files in /var/log/dist-upgrade/ " + "in the bugreport.") % pkg) + self.abort() # calc the dist-upgrade and see if the removals are ok/expected # do the dist-upgrade diff --git a/DistUpgrade/backport-source.list b/DistUpgrade/backport-source.list new file mode 100644 index 00000000..5945e218 --- /dev/null +++ b/DistUpgrade/backport-source.list @@ -0,0 +1,2 @@ +# sources.list fragment for backported apt/dpkg/python-apt +deb http://people.ubuntu.com/~mvo/backports/dapper / \ No newline at end of file diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index 3f5bf61b..7174ce17 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -13,7 +13,7 @@ if __name__ == "__main__": parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help="Use the given path to search for a cdrom with upgradable packages") parser.add_option("-b", "--have-backports", dest="haveBackports", - default=False) + action="store_true",default=False) (options, args) = parser.parse_args() if not os.path.exists("/var/log/dist-upgrade"): -- cgit v1.2.3 From 16161a5d46af8b1440317958bfa64e7be5539677 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 16:45:39 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - bugfixes - use os.execve() when re-execing --- DistUpgrade/DistUpgradeControler.py | 12 ++++++------ DistUpgrade/dist-upgrade.py | 3 +++ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index fca2abaf..b443bf45 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -555,7 +555,7 @@ class DistUpgradeControler(object): " download the backports specified in DistUpgrade.cfg " # add the backports sources.list fragment shutil.copy(self.config.get("Backports","SourcesList"), - apt_pkg.FindDir("Dir::Etc::sourceparts")) + apt_pkg.Config.FindDir("Dir::Etc::sourceparts")) # run update self.doUpdate() # save cachedir and setup new one @@ -606,7 +606,7 @@ class DistUpgradeControler(object): return False # reset the cache dir - os.unlink(apt_pkg.FindDir("Dir::Etc::sourceparts")+"/backport-source.list") + os.unlink(apt_pkg.Config.FindDir("Dir::Etc::sourceparts")+"/backport-source.list") apt_pkg.Config.Set("Dir::Cache::archives",cachedir) os.chdir(cwd) return self.setupRequiredBackports(backportsdir) @@ -619,12 +619,12 @@ class DistUpgradeControler(object): ret = os.system("dpkg-deb -x %s %s" % (deb, backportsdir)) # FIXME: do error checking # setup some pathes to make sure the new stuff is used - os.putenv("LD_LIBRARY_PATH",os.path.join(backportsdir,"/usr/lib")) - os.putenv("PYTHONPATH",os.path.join(backportsdir,"/usr/lib/python2.4/")) - os.putenv("PATH","%s:%s" % (os.path.join(backportsdir,"/usr/bin"),os.getenv("PATH"))) + os.environ["LD_LIBRARY_PATH"] = os.path.join(backportsdir,"/usr/lib") + os.environ["PYTHONPATH"] = os.path.join(backportsdir,"/usr/lib/python2.4/") + os.environ["PATH"] = "%s:%s" % (os.path.join(backportsdir,"/usr/bin"),os.getenv("PATH")) # now exec self again - os.execv(sys.argv[0],[sys.argv[0],"--have-backports"]) + os.execve(sys.argv[0],[sys.argv[0],"--have-backports"], os.environ) # this is the core def edgyUpgrade(self): diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index 7174ce17..997297c2 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -9,6 +9,9 @@ from optparse import OptionParser if __name__ == "__main__": + # debug + print os.environ + parser = OptionParser() parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help="Use the given path to search for a cdrom with upgradable packages") -- cgit v1.2.3 From 1417e173a98b36e10d0e876f668caef090d7b4b7 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 17:09:05 +0200 Subject: * DistUpgrade/DistUpgrade.cfg: - use python2.4-apt * DistUpgrade/DistUpgradeControler.py: -fix pathes --- DistUpgrade/DistUpgrade.cfg | 2 +- DistUpgrade/DistUpgradeControler.py | 15 +++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index 767f555e..60c3ca9f 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -40,7 +40,7 @@ ValidOrigin=Ubuntu ValidMirrors = mirrors.cfg [Backports] -Packages=apt,dpkg,python-apt +Packages=apt,dpkg,python2.4-apt VersionIdent=~dapper SourcesList=backport-source.list diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index b443bf45..7d48db69 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -126,9 +126,8 @@ class DistUpgradeControler(object): # turn on debuging in the cache apt_pkg.Config.Set("Debug::pkgProblemResolver","true") apt_pkg.Config.Set("Debug::pkgDepCache::AutoInstall","true") - # FIXME: make this "append"? fd = os.open("/var/log/dist-upgrade/apt.log", - os.O_RDWR|os.O_CREAT|os.O_TRUNC, 0644) + os.O_RDWR|os.O_CREAT|os.O_APPEND, 0644) os.dup2(fd,1) os.dup2(fd,2) @@ -583,7 +582,7 @@ class DistUpgradeControler(object): break else: # FIXME: be more clever here (exception) - print "No backport found!?!" + raise Exception, "No backport found!?!" return False if ver.FileList == None: print "No FileList for: %s " % self._pkg.Name() @@ -613,15 +612,15 @@ class DistUpgradeControler(object): def setupRequiredBackports(self, backportsdir): " setup the required backports in a evil way " - backportsdir = os.path.normpath(backportsdir) # unpack it for deb in glob.glob(backportsdir+"/*.deb"): ret = os.system("dpkg-deb -x %s %s" % (deb, backportsdir)) # FIXME: do error checking # setup some pathes to make sure the new stuff is used - os.environ["LD_LIBRARY_PATH"] = os.path.join(backportsdir,"/usr/lib") - os.environ["PYTHONPATH"] = os.path.join(backportsdir,"/usr/lib/python2.4/") - os.environ["PATH"] = "%s:%s" % (os.path.join(backportsdir,"/usr/bin"),os.getenv("PATH")) + os.environ["LD_LIBRARY_PATH"] = backportsdir+"/usr/lib" + os.environ["PYTHONPATH"] = backportsdir+"/usr/lib/python2.4/site-packages/" + os.environ["PATH"] = "%s:%s" % (backportsdir+"/usr/bin", + os.getenv("PATH")) # now exec self again os.execve(sys.argv[0],[sys.argv[0],"--have-backports"], os.environ) @@ -635,7 +634,7 @@ class DistUpgradeControler(object): if not self.prepare(): self.abort(1) - if not self.options.haveBackports: + if self.options.haveBackports == False: # get backported packages (if needed) self.getRequiredBackports() -- cgit v1.2.3 From 3c13b603ab6bb720861441a3992bff55831942bf Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 19:07:42 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - add clear() function that is autoMark friendly * DistUpgrade/DistUpgradeControler.py: - bugfixes - pass the old arguments to the new execed child * DistUpgrade/dist-upgrade.py: - remove debug output --- DistUpgrade/DistUpgradeCache.py | 6 ++++-- DistUpgrade/DistUpgradeControler.py | 6 ++++-- DistUpgrade/dist-upgrade.py | 3 --- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 4b6fd680..99f3b585 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -67,10 +67,12 @@ class MyCache(apt.Cache): if pkg.markedDelete: self.to_remove.append(pkg.name) + def clear(self): + self.depcache.Init() + def restore_snapshot(self): """ restore a snapshot """ - for pkg in self: - pkg.markKeep() + self.clear() for name in self.to_remove: pkg = self[name] pkg.markDelete() diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 7d48db69..441952b2 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -557,15 +557,17 @@ class DistUpgradeControler(object): apt_pkg.Config.FindDir("Dir::Etc::sourceparts")) # run update self.doUpdate() + self.openCache() + # save cachedir and setup new one cachedir = apt_pkg.Config.Find("Dir::Cache::archives") cwd = os.getcwd() backportsdir = os.path.join(os.getcwd(),"backports") - os.chdir(backportsdir) if not os.path.exists(backportsdir): os.mkdir(backportsdir) if not os.path.exists(os.path.join(backportsdir,"partial")): os.mkdir(os.path.join(backportsdir,"partial")) + os.chdir(backportsdir) apt_pkg.Config.Set("Dir::Cache::archives",backportsdir) # mark the backports for upgrade and get them @@ -623,7 +625,7 @@ class DistUpgradeControler(object): os.getenv("PATH")) # now exec self again - os.execve(sys.argv[0],[sys.argv[0],"--have-backports"], os.environ) + os.execve(sys.argv[0],sys.argv+["--have-backports"], os.environ) # this is the core def edgyUpgrade(self): diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index 997297c2..7174ce17 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -9,9 +9,6 @@ from optparse import OptionParser if __name__ == "__main__": - # debug - print os.environ - parser = OptionParser() parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help="Use the given path to search for a cdrom with upgradable packages") -- cgit v1.2.3 From 80be6d4dd486d6c920b63ae52ebe7797e96eb0ee Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 19:37:29 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - if we use backports, make sure apt uses the right dpkg --- DistUpgrade/DistUpgradeControler.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 441952b2..871d94d1 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -420,6 +420,9 @@ class DistUpgradeControler(object): return res def doDistUpgrade(self): + if self.options.haveBackports: + backportsdir = os.getcwd()+"/backports" + apt_pkg.Config.Set("Dir::Bin::dpkg",backportsdir+"/usr/bin/dpkg"); currentRetry = 0 fprogress = self._view.getFetchProgress() iprogress = self._view.getInstallProgress(self.cache) -- cgit v1.2.3 From 51f9893e8cee1285c0baa9c1b3344c80b1edbd42 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 23:50:38 +0200 Subject: * DistUpgrade/dist-upgrade.py: - added --with-network, --without-network to avoid asking the "do you want to use a network" question --- DistUpgrade/DistUpgradeControler.py | 19 +++++++++++++------ DistUpgrade/dist-upgrade.py | 4 +++- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 871d94d1..c45a7da0 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -107,8 +107,10 @@ class DistUpgradeControler(object): self._view.updateStatus(_("Reading cache")) self.cache = None - # specific for the CDROM based upgrade - self.useNetwork = True + try: + self.useNetwork = getattr(self.options,"withNetwork") + except AttributeError: + pass self.aptcdrom = AptCdrom(distUpgradeView, options.cdromPath) # the configuration @@ -139,9 +141,9 @@ class DistUpgradeControler(object): self.openCache() if not self.cache.sanityCheck(self._view): return False - # FIXME: we may try to find out a bit more about the network connection here and ask more - # inteligent questions - if self.aptcdrom: + # FIXME: we may try to find out a bit more about the network + # connection here and ask more inteligent questions + if self.aptcdrom and not hasattr(self,"useNetwork"): res = self._view.askYesNoQuestion(_("Fetch data from the network for the upgrade?"), _("The upgrade can use the network to check " "the latest updates and to fetch packages that are not on the " @@ -628,7 +630,12 @@ class DistUpgradeControler(object): os.getenv("PATH")) # now exec self again - os.execve(sys.argv[0],sys.argv+["--have-backports"], os.environ) + args = sys.argv+["--have-backports"] + if self.useNetwork: + args.append("--with-network") + else: + args.append("--without-network") + os.execve(sys.argv[0],args, os.environ) # this is the core def edgyUpgrade(self): diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index 7174ce17..289f0c2e 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -12,7 +12,9 @@ if __name__ == "__main__": parser = OptionParser() parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help="Use the given path to search for a cdrom with upgradable packages") - parser.add_option("-b", "--have-backports", dest="haveBackports", + parser.add_option("--with-network", dest="withNetwork",action="store_true") + parser.add_option("--without-network", dest="withNetwork",action="store_false") + parser.add_option("--have-backports", dest="haveBackports", action="store_true",default=False) (options, args) = parser.parse_args() -- cgit v1.2.3 From bd5dc1971ab94c31d721d0df442b41e3eab2aca0 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Sep 2006 23:59:23 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - bugfixing in the useNetwork code --- DistUpgrade/DistUpgradeControler.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index c45a7da0..2d36e9cc 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -107,10 +107,7 @@ class DistUpgradeControler(object): self._view.updateStatus(_("Reading cache")) self.cache = None - try: - self.useNetwork = getattr(self.options,"withNetwork") - except AttributeError: - pass + self.useNetwork = getattr(self.options,"withNetwork",True) self.aptcdrom = AptCdrom(distUpgradeView, options.cdromPath) # the configuration @@ -143,7 +140,7 @@ class DistUpgradeControler(object): return False # FIXME: we may try to find out a bit more about the network # connection here and ask more inteligent questions - if self.aptcdrom and not hasattr(self,"useNetwork"): + if self.aptcdrom and not hasattr(self.options, "witheNetwork"): res = self._view.askYesNoQuestion(_("Fetch data from the network for the upgrade?"), _("The upgrade can use the network to check " "the latest updates and to fetch packages that are not on the " -- cgit v1.2.3 From ba58baea53b70a3a6604c2671b7a97585d7dbd3d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 23 Sep 2006 00:12:57 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - get the with,without-network argument passing right --- DistUpgrade/DistUpgradeControler.py | 8 ++++++-- DistUpgrade/dist-upgrade.py | 5 ++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 2d36e9cc..bcb54553 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -107,7 +107,10 @@ class DistUpgradeControler(object): self._view.updateStatus(_("Reading cache")) self.cache = None - self.useNetwork = getattr(self.options,"withNetwork",True) + if self.options.withNetwork == None: + self.useNetwork = True + else: + self.useNetwork = self.options.withNetwork self.aptcdrom = AptCdrom(distUpgradeView, options.cdromPath) # the configuration @@ -140,7 +143,7 @@ class DistUpgradeControler(object): return False # FIXME: we may try to find out a bit more about the network # connection here and ask more inteligent questions - if self.aptcdrom and not hasattr(self.options, "witheNetwork"): + if self.aptcdrom and self.options.withNetwork == None: res = self._view.askYesNoQuestion(_("Fetch data from the network for the upgrade?"), _("The upgrade can use the network to check " "the latest updates and to fetch packages that are not on the " @@ -602,6 +605,7 @@ class DistUpgradeControler(object): if match: uri = match.group(1) + path apt_pkg.GetPkgAcqFile(fetcher, uri=uri, + size=ver.Size, descr=_("Fetching backport of '%s'" % pkgname)) res = fetcher.Run() if res != fetcher.ResultContinue: diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index 289f0c2e..918dff02 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -13,9 +13,8 @@ if __name__ == "__main__": parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help="Use the given path to search for a cdrom with upgradable packages") parser.add_option("--with-network", dest="withNetwork",action="store_true") - parser.add_option("--without-network", dest="withNetwork",action="store_false") - parser.add_option("--have-backports", dest="haveBackports", - action="store_true",default=False) + parser.add_option("--without-network", dest="withNetwork",action="store_false", default=True) + parser.add_option("--have-backports", dest="haveBackports", action="store_true") (options, args) = parser.parse_args() if not os.path.exists("/var/log/dist-upgrade"): -- cgit v1.2.3 From b4c4ff2e88ca8f865721d4523cdfa6137aae4a59 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 23 Sep 2006 00:22:58 +0200 Subject: * DistUpgrade/dist-upgrade.py: - fixed in the argument ordering --- DistUpgrade/dist-upgrade.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index 918dff02..d7ce182b 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -12,9 +12,10 @@ if __name__ == "__main__": parser = OptionParser() parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help="Use the given path to search for a cdrom with upgradable packages") + parser.add_option("--have-backports", dest="haveBackports", + action="store_true"default=False) parser.add_option("--with-network", dest="withNetwork",action="store_true") - parser.add_option("--without-network", dest="withNetwork",action="store_false", default=True) - parser.add_option("--have-backports", dest="haveBackports", action="store_true") + parser.add_option("--without-network", dest="withNetwork",action="store_false") (options, args) = parser.parse_args() if not os.path.exists("/var/log/dist-upgrade"): -- cgit v1.2.3 From a4ddaf97e652de990ae26e46133161d084c78e78 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 23 Sep 2006 00:24:12 +0200 Subject: * DistUpgrade/dist-upgrade.py: - typo, I should stop now and go to bed --- DistUpgrade/dist-upgrade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index d7ce182b..ff2fb933 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -13,7 +13,7 @@ if __name__ == "__main__": parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help="Use the given path to search for a cdrom with upgradable packages") parser.add_option("--have-backports", dest="haveBackports", - action="store_true"default=False) + action="store_true", default=False) parser.add_option("--with-network", dest="withNetwork",action="store_true") parser.add_option("--without-network", dest="withNetwork",action="store_false") (options, args) = parser.parse_args() -- cgit v1.2.3 From b5549bd1e07a6d3dfa41f97116e687709ed4da78 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 23 Sep 2006 02:23:38 +0200 Subject: * changelog, README updated * DistUpgrade/build-tarball.sh: - cleanup better * po/*: - make update-po --- DistUpgrade/Changelog | 4 + DistUpgrade/README | 9 +- DistUpgrade/build-tarball.sh | 3 + debian/changelog | 2 +- po/ar.po | 458 +++++++++++++++++---------------- po/bg.po | 545 +++++++++++++++++++++------------------- po/bn.po | 531 ++++++++++++++++++++------------------- po/br.po | 458 +++++++++++++++++---------------- po/ca.po | 550 +++++++++++++++++++++------------------- po/cs.po | 546 +++++++++++++++++++++------------------- po/da.po | 532 ++++++++++++++++++++------------------- po/de.po | 551 +++++++++++++++++++++------------------- po/el.po | 552 +++++++++++++++++++++------------------- po/en_AU.po | 550 +++++++++++++++++++++------------------- po/en_CA.po | 490 ++++++++++++++++++------------------ po/en_GB.po | 489 ++++++++++++++++++------------------ po/es.po | 550 +++++++++++++++++++++------------------- po/fi.po | 558 +++++++++++++++++++++-------------------- po/fr.po | 553 +++++++++++++++++++++------------------- po/fur.po | 458 +++++++++++++++++---------------- po/gl.po | 487 ++++++++++++++++++------------------ po/he.po | 526 ++++++++++++++++++++------------------ po/hi.po | 458 +++++++++++++++++---------------- po/hr.po | 549 +++++++++++++++++++++------------------- po/hu.po | 550 +++++++++++++++++++++------------------- po/id.po | 549 +++++++++++++++++++++------------------- po/it.po | 551 +++++++++++++++++++++------------------- po/ja.po | 551 +++++++++++++++++++++------------------- po/ka.po | 534 ++++++++++++++++++++------------------- po/ko.po | 550 +++++++++++++++++++++------------------- po/ku.po | 486 ++++++++++++++++++------------------ po/lt.po | 548 +++++++++++++++++++++------------------- po/mk.po | 490 ++++++++++++++++++------------------ po/ms.po | 483 +++++++++++++++++------------------ po/nb.po | 550 +++++++++++++++++++++------------------- po/ne.po | 489 ++++++++++++++++++------------------ po/nl.po | 552 +++++++++++++++++++++------------------- po/no.po | 489 ++++++++++++++++++------------------ po/oc.po | 480 +++++++++++++++++------------------ po/pa.po | 472 +++++++++++++++++------------------ po/pl.po | 550 +++++++++++++++++++++------------------- po/pt.po | 551 +++++++++++++++++++++------------------- po/pt_BR.po | 553 +++++++++++++++++++++------------------- po/ro.po | 509 +++++++++++++++++++------------------ po/ru.po | 549 +++++++++++++++++++++------------------- po/rw.po | 485 +++++++++++++++++------------------ po/sk.po | 551 +++++++++++++++++++++------------------- po/sr.po | 458 +++++++++++++++++---------------- po/sv.po | 583 +++++++++++++++++++++++-------------------- po/th.po | 547 +++++++++++++++++++++------------------- po/tr.po | 491 ++++++++++++++++++------------------ po/uk.po | 509 +++++++++++++++++++------------------ po/update-manager.pot | 458 +++++++++++++++++---------------- po/ur.po | 458 +++++++++++++++++---------------- po/urd.po | 458 +++++++++++++++++---------------- po/vi.po | 487 ++++++++++++++++++------------------ po/xh.po | 471 +++++++++++++++++----------------- po/zh_CN.po | 547 +++++++++++++++++++++------------------- po/zh_HK.po | 487 ++++++++++++++++++------------------ po/zh_TW.po | 546 +++++++++++++++++++++------------------- 60 files changed, 15130 insertions(+), 13851 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 33ecff3d..54d194e6 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,7 @@ +2006-09-23: + - support fetching backports of selected packages first and + use them for the upgrade (needed to support Breaks) + - fetch/use apt/dpkg/python-apt backports for the upgrade 2006-09-06: - increased the "free-space-savety-buffer" to 100MB 2006-09-05: diff --git a/DistUpgrade/README b/DistUpgrade/README index 60c761d6..c38a422f 100644 --- a/DistUpgrade/README +++ b/DistUpgrade/README @@ -46,4 +46,11 @@ ForcedObsoletes: [Sources] - how to rewrite the sources.list -[Network] - network specific options \ No newline at end of file +[Network] - network specific options + +[Backports] - use specific packages for dist-upgrade +Packages= List of what packages to look for +VersionIdent=Version identification. needs to be uniq, dist-upgrader will + fetch the version that contains this string +SourcesList=a sources.list fragment that will be placed into + /etc/apt/sources.list.d and that contains the backported pkgs \ No newline at end of file diff --git a/DistUpgrade/build-tarball.sh b/DistUpgrade/build-tarball.sh index 4f88b848..df9d6506 100755 --- a/DistUpgrade/build-tarball.sh +++ b/DistUpgrade/build-tarball.sh @@ -3,7 +3,10 @@ DIST=edgy # cleanup +echo "Cleaning up" rm -f *~ *.bak *.pyc *.moved '#'* +sudo rm -rf backports/ profile/ result/ tarball/ *.deb + # update po (cd ../po; make update-po) diff --git a/debian/changelog b/debian/changelog index 7c759639..6631a01b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,7 +5,7 @@ update-manager (0.44.13) edgy; urgency=low Simira for reporting) - filter python-apt future warning (especially for seb128) - -- + -- Michael Vogt Sat, 23 Sep 2006 00:53:06 +0200 update-manager (0.44.12) edgy; urgency=low diff --git a/po/ar.po b/po/ar.po index 5a87efcd..dbd73c4a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Jadmadi \n" "Language-Team: Arabic \n" @@ -129,7 +129,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -142,79 +142,79 @@ msgstr "الرجاء ادخال اسم القرص" msgid "Please insert a disc in the drive:" msgstr "الرجاء ادخال القرص في الجهاز" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -224,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "قراءة من الكاش" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "importing" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "مصدر الطرف الثالث غير مفعل" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "خطاء خلال التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "لا يوجد مساحة كافية على القرص الصلب" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,72 +331,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -406,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -438,7 +443,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -470,19 +475,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -492,31 +503,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -524,36 +535,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -587,11 +601,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -622,7 +636,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -743,8 +757,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -767,110 +781,94 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -878,52 +876,56 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -939,84 +941,96 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1120,10 +1134,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1150,10 +1164,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1203,7 +1217,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1222,7 +1236,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1246,192 +1260,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/bg.po b/po/bg.po index d81f750b..81077455 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:40+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -132,9 +132,9 @@ msgstr "" "грешка." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -150,11 +150,11 @@ msgstr "Моля, въведете име за диска" msgid "Please insert a disc in the drive:" msgstr "Моля, поставете диск в устройството:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Повредени пакети" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -163,23 +163,23 @@ msgstr "" "този софтуер. Моля, поправете ги със synaptic или apt-get преди да " "продължите!" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Не може да бъдат надградени изисквани мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -188,11 +188,11 @@ msgstr "" "това като грешка. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "да е временен проблем с мрежата. Може би бихте искали да опитате отново по-" "късно. Вижте по-долу списъка на неудоствоерените пакети." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,15 +216,16 @@ msgstr "" "грешка! " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -233,12 +234,12 @@ msgstr "" " Моля, преди да продължите, инсталирайте един от тези пакети, като " "използвате synaptic или apt-get!" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Грешка при доставянето" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +249,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Четене на кеша" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Не е открит валиден огледален сървър" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +289,11 @@ msgstr "" "Ако изберете \"Не\", актуализирането ще бъде отменено." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +307,11 @@ msgstr "" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Информацията от хранилището е невалидна" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,13 +319,14 @@ msgstr "" "Надграждане на информацията от хранилището доведе до невалиден файл. Моля, " "съобщете това като грешка!" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Забранени са източници от трети страни" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -332,11 +334,11 @@ msgstr "" "Можете да ги разрешите отново след надграждането чрез инструмента software-" "properties или чрез synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Грешка по време на надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +346,11 @@ msgstr "" "Възникна проблем при актуализацията. Това обикновено е накакъв проблем с " "мрежата. Моля, проверете мрежовата връзка и опитайте пак!" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Недостатъчно свободно място на диска" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +359,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Не можеше да бъдат инсталирани надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +379,11 @@ msgstr "" "Надграждането сега ще бъде прекратено. Системата Ви може да е в " "неизползваемо състояние. Бе изпълнено възстановяване (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Не можеше да бъдат свалени надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,36 +391,36 @@ msgstr "" "Надграждането се прекратява. Моля, проверете Интернет връзката или " "инсталационния носител и опитайте отново! " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Премахване на остарелите пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "П_рескачане на стъпката" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Премахване" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Грешка при прехвърляне" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -427,27 +429,32 @@ msgstr "" "информация! " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Рестартиране на системата" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Проверка на диспечера на пакети" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Актуализиране информацията от хранилището" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 #, fuzzy msgid "Invalid package information" msgstr "Невалидна информация за пакет" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -460,19 +467,19 @@ msgstr "" "бъде открит.\n" "Това показва сериозна грешка. Моля, съобщете за това!" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Запитване за потвърждение" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." @@ -493,7 +500,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -523,23 +530,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Замяна на конфигурационния файл\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Командата \"diff\" не бе намерена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Възникна фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -555,28 +568,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -584,7 +597,7 @@ msgid "" "You have to download a total of %s. " msgstr "Трябва да изтеглите данни общо %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -593,32 +606,35 @@ msgstr "" "Надграждането може да отнеме няколко часа, като не може да бъде отменено по-" "нататък." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Не можеше да бъдат намерени надграждания" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Системата Ви е актуална" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Системата Ви вече е надградена." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Премахване на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Инсталиране на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Надграждане на %s" @@ -652,11 +668,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Нужно е рестартиране" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "Надграждането е завършено и има нужда от рестарт. Рестартиране сега?" @@ -692,10 +708,8 @@ msgid "Start the upgrade?" msgstr "Започване на надграждането?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Надграждане до Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -822,9 +836,10 @@ msgid "Verfication failed" msgstr "Грешка при удостоверяване" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Удостоверяването на надграждането не успя. Възможно е да има проблем с " "мрежата или със сървъра. " @@ -851,16 +866,16 @@ msgstr "Сваляне на файл %li от %li при %s/сек" msgid "Downloading file %li of %li with unknown speed" msgstr "Сваляне на файл %li от %li при неизвестна скорост" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Списъкът с промените още не е наличен. Моля, опитайте по-късно!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Списъкът с промените още не е наличен. Моля, опитайте по-късно!" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -868,134 +883,125 @@ msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Надграждане до последната версия на Ubuntu" +msgid "Normal updates" +msgstr "_Инсталиране на актуализациите" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Не могат да бъдат инсталирани всички актуализации" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Версия %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Сваляне на списъка с промени..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Проверка" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Размер за изтегляне: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Системата Ви е актуална" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Можете да инсталирате %s актуализация" msgstr[1] "Можете да инсталирате %s актуализации" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Моля, изчакайте! Това може да отнеме известно време." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Актуализацията е завършена" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_Инсталиране на актуализациите" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Нова версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Версия %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуция вече не се поддържа" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1005,17 +1011,17 @@ msgstr "" "Надградете до по-късна версия на Ubuntu Linux. Вижте http://www.ubuntu.com " "за повече информация за надграждането!" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1038,58 +1044,67 @@ msgstr "" "това в „Система” -> „Администрация” -> „Свойства на софтуера”" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Поддържане на системата в съвременно състояние" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Преглеждане на системата Ви\n" +"Грешка при сканиране на CD\n" "\n" -"Софтуерните актуализации поправят грешки, премахват уаизвими места в " -"сигурността и предлагат нови възможности." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Поддържане на системата в съвременно състояние" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Започване на надграждането?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Отмяна на _изтеглянето" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Провер_ка" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Проверка на софтуерните канали за нови актуализации" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Описание" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Бележки към изданието" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Показване напредъка на отделните файлове" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Актуализации на софтуера" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1097,32 +1112,37 @@ msgstr "" "Софтуерните актуализации поправят грешки, премахват уаизвими места в " "сигурността и предлагат нови възможности." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Надграждане" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Надграждане до последната версия на Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Проверка" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Поднови надграждането" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Скрий тази информация за в бъдеще" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Инсталиране на актуализациите" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1234,11 +1254,12 @@ msgid "_Install security updates without confirmation" msgstr "_Инсталирай актуализациите на сигурноста без потвърждение" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1272,10 +1293,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Добавете пълния APT ред за канала, който искате да добавитеUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Надграждане до Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 актуализации на сигурността" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Надграждане до последната версия на Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Не могат да бъдат инсталирани всички актуализации" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Преглеждане на системата Ви\n" +#~ "\n" +#~ "Софтуерните актуализации поправят грешки, премахват уаизвими места в " +#~ "сигурността и предлагат нови възможности." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Официално поддържан" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/bn.po b/po/bn.po index 110eeb8c..fee1579c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-26 12:09+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -128,9 +128,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -146,55 +146,55 @@ msgstr "ডিস্কের জন্য একটি নাম দিন" msgid "Please insert a disc in the drive:" msgstr "অনুগ্রহ করে ড্রাইভে একটি ডিস্ক দিন:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "ভাঙা প্যাকেজসমূহ" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "দরকারী meta-packages আপগ্রেড করতে পারে নি" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "'%s' ইন্সটল করা যাচ্ছে না" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -203,25 +203,25 @@ msgstr "" "রিপোর্ট করুন। " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "আনতে ব্যর্থ" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -231,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "ক্যাশ পড়া হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "কোন সঠিক মিরর পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -282,11 +282,11 @@ msgstr "" "'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " "হবে।" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "রিপোজিটরির তথ্য সঠিক নয়" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -294,22 +294,22 @@ msgstr "" "রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " "হিসাবে রিপোর্ট করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "তৃতীয় পার্টির উত্স নিষ্ক্রিয়" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "আপগ্রেড করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -317,11 +317,11 @@ msgstr "" "আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " "আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "ডিস্কে যথেস্ট ফাঁকা জায়গা নেই" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,11 +347,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -359,62 +359,67 @@ msgstr "" "আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " "করুন এবং আবার চেষ্টা করুন। " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "এই ধাপটি এড়িয়ে যাও (_এ)" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "সরাও (_স)" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,19 +429,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "তথ্যের জন্য জিজ্ঞাসা" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" @@ -457,7 +462,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "%li of %li ফাইল ডাউনলোড করছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "%li মিিনিট বাকি আছে" @@ -487,23 +492,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "কনফিগারেশন ফাইল '%s'\n" "কি সরানো হবে?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "'diff' কমান্ডটি পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -513,28 +524,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -542,37 +553,40 @@ msgid "" "You have to download a total of %s. " msgstr "আপনাকে সর্বমোট %s ডাউনলোড করতে হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "কোন আপগ্রেড পাওয়া যায় নি" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "আপনার সিস্টেম আপ-টু-ডেট" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "আপনার সিস্টেম ইতিমধ্যেই আপগ্রেড করা হয়েছে।" +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s মুছো" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s ইন্সটল" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s আপগ্রেড" @@ -606,11 +620,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "রিবুট করা প্রয়োজন" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" @@ -641,11 +655,8 @@ msgid "Start the upgrade?" msgstr "আপগ্রেড শুরু করবো?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"উবুন্টু \"ড্যাপার\" ৬.০৬ এ আপগ্রেড করছি" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -765,9 +776,10 @@ msgid "Verfication failed" msgstr "যথার্থ্যতা পরীক্ষা করতে ব্যর্থ" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা " "থাকতে পারে। " @@ -792,16 +804,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "পরিবর্তনের তালিকা এখনে উপস্হিত নয়। অনুগ্রহ করে পরে আবার চেষ্টা করুন।" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "পরিবর্তনের তালিকা এখনে উপস্হিত নয়। অনুগ্রহ করে পরে আবার চেষ্টা করুন।" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -809,151 +821,142 @@ msgid "" msgstr "" "পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "উবুন্টু এর সর্বশেষ ভার্সনে আপগ্রেড করো" +msgid "Normal updates" +msgstr "আপডেট ইন্সটল করো (_I)" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "সকল উপস্হিত আপডেট ইন্সটল করা যায় নি" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "ভার্সন %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "পরিবর্তনের তালিকা ডাউনলোড করা হচ্ছ..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "পরীক্ষা করো (_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "ডাউনলোড এর আকার: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "আপনার সিস্টেম আপ-টু-ডেট" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "আপনি %s আপডেট ইনস্টল করতে পারেন" msgstr[1] "আপনি %s আপডেট ইনস্টল করতে পারেন" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "অনুগ্রহ করে অপেক্ষা করুন, এটি কিছুটা সময় নিতে পারে।" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "আপডেট সম্পন্ন" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "আপডেট ইন্সটল করো (_I)" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "নতুন ভার্সন: %s (আকার: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "ভার্সন %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "আপনার ডিস্ট্রিবিউশনটি আর সমর্থিত নয়" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -969,85 +972,103 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:7 msgid "Keep your system up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট রাখুন" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" +msgstr "" +"সিডি স্ক্যানিং এ ত্রুটি\n" +"\n" +"%s" + +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "আপগ্রেড শুরু করবো?" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "ডাউনলোড বাতিল (_D)" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "পরিবর্তন" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "পরীক্ষা করো (_k)" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "নতুন আপডেট এর জন্য সফ্টওয়্যার চ্যানেল পরীক্ষা করো" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "বর্ননা" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "রিলিজ নোট" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "একটি ফাইলের অগ্রগতি দেখাও" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "সফ্টওয়্যার আপডেট" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "আপগ্রেড (_p)" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "উবুন্টু এর সর্বশেষ ভার্সনে আপগ্রেড করো" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "পরীক্ষা করো (_C)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "পুনরায় আপগ্রেড শুরু (_R)" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "ভবিষ্যতে এই তথ্য আড়াল রাখো (_H)" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "পরিবর্তন" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1156,10 +1177,10 @@ msgstr "নিরাপত্তা জনিত আপডেট গুলো #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1186,10 +1207,10 @@ msgstr "ইউ-আর-আই:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1241,7 +1262,7 @@ msgstr "নতুন ডিস্ট্রিবিউশন রিলিজে #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1260,7 +1281,7 @@ msgstr "update-manager ডায়ালগের আকার সংরক্ষ #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1286,209 +1307,186 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "উবুন্টু ৫.১০ আপডেট" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "ফ্রি নয় (মাল্টিভার্স)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "ফ্রি নয় (মাল্টিভার্স)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "আপডেট ইন্সটল করো (_I)" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "অফিসিয়াল ভাবে সমর্থিত" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" @@ -1539,6 +1537,37 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Some software no longer officially supported" +#~ msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" + +#~ msgid "Could not find any upgrades" +#~ msgstr "কোন আপগ্রেড পাওয়া যায় নি" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "আপনার সিস্টেম ইতিমধ্যেই আপগ্রেড করা হয়েছে।" + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "উবুন্টু \"ড্যাপার\" ৬.০৬ এ আপগ্রেড " +#~ "করছি" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "উবুন্টু এর সর্বশেষ ভার্সনে আপগ্রেড করো" + +#~ msgid "Cannot install all available updates" +#~ msgstr "সকল উপস্হিত আপডেট ইন্সটল করা যায় নি" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "অফিসিয়াল ভাবে সমর্থিত" + #~ msgid "The following updates will be skipped:" #~ msgstr "নিম্নের আপডেটগুলো বাদ দেয়া হবে:" diff --git a/po/br.po b/po/br.po index 644917da..8b9e8dd9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -133,7 +133,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -146,79 +146,79 @@ msgstr "Roit un anv evit ar bladenn marplij" msgid "Please insert a disc in the drive:" msgstr "Lakait ur bladenn e-barzh ul lenner marplij:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Pakadoù torr" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -228,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,42 +274,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +318,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,72 +335,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -410,19 +415,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -442,7 +447,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -474,19 +479,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -496,28 +507,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -525,36 +536,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -588,11 +602,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -623,7 +637,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -744,8 +758,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -768,162 +782,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -939,84 +941,96 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1121,10 +1135,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1151,10 +1165,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1204,7 +1218,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1223,7 +1237,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1247,192 +1261,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/ca.po b/po/ca.po index cb40bdb5..1afba09e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-29 21:18+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -133,9 +133,9 @@ msgstr "" "programació." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -151,11 +151,11 @@ msgstr "Introduïu un nom per al disc" msgid "Please insert a disc in the drive:" msgstr "Inseriu un disc a la unitat:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Paquets trencats" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -163,24 +163,24 @@ msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb " "aquesta aplicació. Utilitzeu el Synaptic o apt-get abans de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -189,11 +189,11 @@ msgstr "" "de l'error. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "amb la xarxa. Podeu provar-ho després. A continuació es mostra la llista amb " "els paquets no autenticats." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "No s'ha pogut instal·lar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,15 +217,16 @@ msgstr "" "els error. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -235,12 +236,12 @@ msgstr "" " Instal·leu algun dels paquets anteriors des del Synaptic o amb l'apt-get " "per poder continuar." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Ha fallat l'extracció" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -250,15 +251,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "S'està llegint la memòria cau" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "No s'ha trobat una rèplica vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -283,11 +284,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -296,11 +297,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "La informació del dipòsit no és vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -308,13 +309,14 @@ msgstr "" "En actualitzar la informació del dipòsit s'ha produït un error. Informeu de " "l'error." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "S'han desactivat les fonts de tercers" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -322,11 +324,11 @@ msgstr "" "reactivar-los, després de l'actualització de programari, des de 'propietats " "del programari' o des del Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -334,11 +336,11 @@ msgstr "" "S'ha produït un error mentre s'actualizava el vostre sistema. Comproveu la " "vostra connexió de xarxa i torneu a intentar-ho." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -351,15 +353,15 @@ msgstr "" "apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -371,11 +373,11 @@ msgstr "" "L'actualització s'ha cancel·lat. El vostre sistema ha pogut quedar " "inservible. S'ha executat una recuperació del sistema (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "No s'han pogut descarregar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -383,66 +385,72 @@ msgstr "" "S'ha cancel·lat l'actualització. Comproveu la vostra connexió a Internet o " "el mitjà d'instal·lació i torneu-ho a provar. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Algun programari ja no es mantindrà oficialment" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Aquests paquets instal·lats ja no es mantindran de manera oficial i només " "els mantindrà la comunitat Ubuntu ('universe').\n" "\n" "Si no teniu activat 'universe' se us sugerirà que els desintal·leu. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Voleu esborrar els paquets obsolets?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Omet aquest pas" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "Esbo_rra" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "S'està actualitzant la informació del dipòsit" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "La informació del paquet no és valida" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -452,19 +460,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Actualitzant" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" @@ -485,7 +493,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "S'està descarregant el fitxer %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Queden uns %li minuts" @@ -515,23 +523,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Voleu reemplaçar el fitxer de\n" "configuració '%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'ordre 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "S'ha produït un error greu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -541,28 +555,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -570,7 +584,7 @@ msgid "" "You have to download a total of %s. " msgstr "Heu de descarregar un total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -579,32 +593,35 @@ msgstr "" "L'actualització pot durar algunes hores i no la podreu cancel·lar un cop " "hagi començat." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "No s'han pogut trobar actualitzacions" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "El vostre sistema està actualitzat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "El vostre sistema ja està actualitzat" +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Esborra %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instal·la %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" @@ -638,11 +655,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "És necessari que reinicieu el sistema" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -679,11 +696,8 @@ msgid "Start the upgrade?" msgstr "Voleu iniciar l'actualització?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"S'està actualitzant a Ubuntu 6.06 " -"LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -805,8 +819,8 @@ msgstr "Ha fallat la verificació" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -829,16 +843,16 @@ msgstr "S'està descarregant el fitxer %li de %li amb %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "La llista de canvis encara no està disponible. Proveu-ho després." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "La llista de canvis encara no està disponible. Proveu-ho després." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -846,134 +860,125 @@ msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Debian Stable Security Updates" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Instal·la les actualitzacions" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Actualitza a la darrera versió d'Ubuntu" +msgid "Normal updates" +msgstr "_Instal·la les actualitzacions" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Instal·la les actualitzacions" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "No es poden instal·lar les actualitzacions disponibles" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versió %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "S'està descarregant la llista de canvis..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Comprova" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Mida de la descàrrega: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "El vostre sistema està actualitzat" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podeu instal·lar %s actualització" msgstr[1] "Podeu instal·lar %s actualitzacions" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Espereu, això pot tardar una estona." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "S'ha completat l'actualització" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "S'estan comprovant les actualitzacions..." + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versió nova: %s (Mida: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versió %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "La vostra distribució ja no es mantindrà més" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -983,17 +988,17 @@ msgstr "" "sistema a la darrera versió d'Ubuntu. Vegeu http://www.ubuntu.com per a més " "informació." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1017,58 +1022,67 @@ msgstr "" "\"Propietats del programari\"" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Manteniu el vostre sistema actualitzat" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"S'està comprovant el vostre sistema\n" +"S'ha produït un error en llegir el CD\n" "\n" -"L'actualització del programari corregeix errors, elimina problemes de " -"seguretat i afegeix prestacions noves." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Manteniu el vostre sistema actualitzat" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Voleu iniciar l'actualització?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Cancel·la la _descàrrega" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Canvis" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Compro_va" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Comprova els canals de programari per a actualitzacions noves" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Descripció" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Notes de la versió" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Mostra el progrés per als fitxers individuals" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Actualitzacions de programari" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1076,32 +1090,37 @@ msgstr "" "Les actualitzacions de programari corregeixen errors, eliminen problemes de " "seguretat i proporcionen prestacions noves." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Actualitza" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Actualitza a la darrera versió d'Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Comprova" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Reprén l'actualització" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_En el futur oculta aquesta informació" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Instal·la les actualitzacions" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Canvis" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1210,11 +1229,12 @@ msgid "_Install security updates without confirmation" msgstr "_Instal·la actualitzacions de seguretat sense confirmació" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1248,10 +1268,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Introduïu la línia APT del canal que voleu afegir\n" @@ -1310,7 +1330,7 @@ msgstr "Comprova si hi ha noves distribucions" #: ../data/update-manager.schemas.in.h:3 #, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1331,7 +1351,7 @@ msgstr "Emmagatzema la mida del diàleg del gestor d'actualitzacions" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1357,213 +1377,190 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualitzacions d'Ubuntu 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Paquets mantinguts per la comunitat (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Programari de la comunitat" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Paquets sense llicència lliure (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "Programari amb restriccions d'exportació als EUA" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Debian Stable Security Updates" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "_Instal·la les actualitzacions" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Paquets mantinguts oficialment (Main)" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualitzacions d'Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Paquets mantinguts oficialment (Main)" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualitzacions d'Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Algun programari ja no es mantindrà oficialment" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Paquets amb restriccions per copyright (Restricted)" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualitzacions d'Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" @@ -1616,6 +1613,48 @@ msgstr "Programari compatible DFSG amb dependències no lliures" msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Algun programari ja no es mantindrà oficialment" + +#~ msgid "Could not find any upgrades" +#~ msgstr "No s'han pogut trobar actualitzacions" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "El vostre sistema ja està actualitzat" + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "S'està actualitzant a Ubuntu 6.06 " +#~ "LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Debian Stable Security Updates" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Actualitza a la darrera versió d'Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "No es poden instal·lar les actualitzacions disponibles" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "S'està comprovant el vostre sistema\n" +#~ "\n" +#~ "L'actualització del programari corregeix errors, elimina problemes de " +#~ "seguretat i afegeix prestacions noves." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Paquets mantinguts oficialment (Main)" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1961,9 +2000,6 @@ msgstr "Programari no compatible DFSG" #~ msgid "Updating package list..." #~ msgstr "S'està actualitzant la llista de paquets..." -#~ msgid "Checking for updates..." -#~ msgstr "S'estan comprovant les actualitzacions..." - #~ msgid "Installing updates..." #~ msgstr "S'estan instal·lant les actualitzacions..." diff --git a/po/cs.po b/po/cs.po index a2efb624..5db4bad5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-25 18:52+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" @@ -129,9 +129,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,11 +147,11 @@ msgstr "Prosím zadejte jméno disku" msgid "Please insert a disc in the drive:" msgstr "Prosím vložte disk do mechaniky:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Poškozené balíky" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -159,23 +159,23 @@ msgstr "" "Váš systém obsahuje poškozené balíky, které nemohou být tímto programem " "opraveny. Před pokračováním oje prosím pravte použitím synaptic nebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Nemohu aktualizovat požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Základní balík by musel být odstraněn" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -184,11 +184,11 @@ msgstr "" "chybu. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Chyba při ověření některých balíků" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "problémem v síti. Možná to budete chtít zkusit později. Níže je uveden " "seznam neověřených balíků." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Nemohu nainstalovat '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,15 +211,16 @@ msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -228,12 +229,12 @@ msgstr "" " Před pokračováním si prosím nainstalujte si jeden z výše uvedených balíků " "pomocí synaptic nebo apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Chyba stahování" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +244,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Probíhá čtení cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -259,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Nenalezeno správné zrcadlo" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -276,11 +277,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Vytvořit standardní zdroje?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -289,11 +290,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Neplatná informace zdroje" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -301,22 +302,22 @@ msgstr "" "Upgrade informací o úložišti vrátil neplatný soubor. Prosím oznamte to jako " "chybu." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Zdroje třetích stran vypnuté" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Chyba během aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -324,11 +325,11 @@ msgstr "" "Nastala chyba během aktualizace. Toto je obvykle způsobeno chybou síťového " "připojení. Prosím zkontrolujte své připojení a zkuste to znovu." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Nedostatek volného místa na disku" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -337,15 +338,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Nelze nainstalovat aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -358,11 +359,11 @@ msgstr "" "stavu. Zkuste ho prosím opravit pomocí 'sudo apt-get install -f' nebo " "Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Nelze stáhnout aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -370,36 +371,36 @@ msgstr "" "Aktualizace byla předčasně ukončena. Prosím zkontrolujte si připojení k " "internetu nebo instalační médium a zkuste to znovu. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Odebrat zastaralé balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Přeskočit tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Odebrat" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Chyba při zaznamenávání" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -408,26 +409,31 @@ msgstr "" "prohléhněte níže uvedenou zprávu. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Kontroluje se manažer balíků" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Aktualizují se informace o úložišti" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -437,19 +443,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Požaduje se potvrzení" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Probíhá upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Vyhledáván zastaralý software" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Upgrade systému je dokončen." @@ -470,7 +476,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Zhruba %li minut zbývá" @@ -500,23 +506,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Nahradit soubor s nastavením\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Příkaz \"diff\" nebyl nalezen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Nastala fatální chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -531,31 +543,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s balík bude odstraněn." msgstr[1] "%s balíky budou odstraněny." msgstr[2] "%s balíků bude odstraněno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s nový balík bude nainstalován." msgstr[1] "%s nové balíky budou nainstalovány." msgstr[2] "%s nových balíků bude nainstalováno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s balík bude nahrazen vyšší verzí." msgstr[1] "%s balíky budou nahrazeny vyšší verzí." msgstr[2] "%s balíky bude nahrazeno vyšší verzí." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -563,37 +575,40 @@ msgid "" "You have to download a total of %s. " msgstr "Bude staženo celkem %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Upgrade může trvat několik hodin a nesmí být později přerušen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Žádné upgrady nebyly nalezeny." +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Váš systém je aktuální" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Váš systém byl již upgradován." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Odstranit %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Nainstalovat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Upgradovat %s" @@ -627,11 +642,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Vyžadován restartovat" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -667,10 +682,8 @@ msgid "Start the upgrade?" msgstr "Spustit upgrade?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Přechází se na Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -797,10 +810,13 @@ msgid "Verfication failed" msgstr "Ověření selhalo." #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" +"Stažení nástroje pro přechod na novou verzi systému se nepodařilo. " +"Pravděpodobně je problém se sítí. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -822,115 +838,101 @@ msgstr "Stahuji %li. soubor z %li rychlostí %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Stahuji %li. soubor z %li neznámou rychlostí" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" "Selhalo stažení seznamu změn. Prosím zkontrolujte své internetové připojení." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Instaluji aktualizace" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Upgradovat na poslední verzi Ubuntu" +msgid "Normal updates" +msgstr "Instaluji aktualizace" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Instaluji aktualizace" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Nelze nainstalovat všechny dostupné aktualizace" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Verze %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Stahuji seznam změn ..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Zkontrolovat" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Stahovaná velikost: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Váš systém je aktuální" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -938,35 +940,40 @@ msgstr[0] "Můžete instalovat %s aktualizaci" msgstr[1] "Můžete instalovat %s aktualizace" msgstr[2] "Můžete instalovat %s aktualizací" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Prosím čekejte, může to nějakou dobu trvat." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Aktualizace je dokončena" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Zkontrolovat dostupné aktualizace" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nová verze: %s (Velikost: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Verze %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Vaše distribude už není podporovaná" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -976,17 +983,17 @@ msgstr "" "Přejděte na další verzi Ubuntu Linuxu. Pro více informací o přechodu na " "vyšší verzi se podívejte na http://www.ubuntu.com." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1006,58 +1013,67 @@ msgstr "" "v \"Systém\" -> \"Správa\" -> \"Vlastnosti Software\"" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Udržujte Váš systém aktuální" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Prozkoumává se systém\n" +"Chyba při načítání CD\n" "\n" -"Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti a " -"poskytují nové funkce." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Udržujte Váš systém aktuální" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Spustit upgrade?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Přerušit _stahování" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Změny" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Z_kontrolovat" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Zkontrolovat dostupnost nových aktualizací v distribučních kanálech" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Popis" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Poznámky k vydáni" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Zobrazit průběh stahování jednotlivých souborů" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Aktualizace softwaru" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1065,32 +1081,37 @@ msgstr "" "Aktualizace softwaru opravuje chyby, eliminuje bezpečnostní zranitelnosti a " "poskytují nové vlastnosti." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "U_pgrade" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Upgradovat na poslední verzi Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Zkontrolovat" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Pokračovat v upgradu" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Nezobrazovat příště tyto informace" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "Na_instalovat Aktualizace" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Změny" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1201,11 +1222,12 @@ msgid "_Install security updates without confirmation" msgstr "_Instalovat bezpečnostní aktualizace bez potvrzení" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1239,10 +1261,10 @@ msgstr "Adresa:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Zadejte úplný řádek pro cestu APT kanálu, který chcete přidatUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Přechází se na Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Upgradovat na poslední verzi Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Nelze nainstalovat všechny dostupné aktualizace" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Prozkoumává se systém\n" +#~ "\n" +#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti " +#~ "a poskytují nové funkce." + +#~ msgid "Oficially supported" +#~ msgstr "Oficiálně podporované" + #~ msgid "The following updates will be skipped:" #~ msgstr "Následující aktualizace budou přeskočeny:" @@ -1694,8 +1733,5 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgid "Sections" #~ msgstr "Sekce" -#~ msgid "Check for available updates" -#~ msgstr "Zkontrolovat dostupné aktualizace" - #~ msgid "Sections:" #~ msgstr "Sekce:" diff --git a/po/da.po b/po/da.po index a8005f20..4c4bcea1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -129,9 +129,9 @@ msgstr "" "Den valgte nøgle kunne ikke fjernes. Rapporter venligst dette som en fejl." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,11 +147,11 @@ msgstr "Indtast venligst et navn til disken" msgid "Please insert a disc in the drive:" msgstr "Indsæt venligst en disk i drevet:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Ødelagte pakker" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -159,25 +159,25 @@ msgstr "" "Dit system indeholder ødelagte pakker som ikke kan repareres med dette " "program. Reparer dem venligst med synaptic eller apt-get før du fortsætter." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke opgradere de krævede meta-pakker" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 #, fuzzy msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vigtig pakke" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 #, fuzzy msgid "Could not calculate the upgrade" msgstr "Kunne ikke udregne opgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -186,11 +186,11 @@ msgstr "" "Rapportér venligst dette som en fejl. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "Det anbefales du prøver igen senere. Se længere nede for en liste over " "pakker som ikke kunne godkendes." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,16 +214,17 @@ msgstr "" "som en fejl. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 #, fuzzy msgid "Can't guess meta-package" msgstr "Kan ikke gætte meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -233,12 +234,12 @@ msgstr "" " Installer venligst en af pakkerne nævnt herover ved hjælp af Synaptic eller " "apt-get før du fortsætter." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Fejl ved hentning" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +249,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Læser cache-mellemlager" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,11 +282,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -294,11 +295,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Arkivinformation ugyldig." -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -306,22 +307,22 @@ msgstr "" "Opgradering af arkivet resulterede i en ødelagt fil. raporter venligst dette " "som en fejl." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Trediepartskilder er fravalgt" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Fejl under opdatering" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -329,11 +330,11 @@ msgstr "" "En fejl forekom under opdateringen. Dette skyldes som regel et " "netværksproblem, tjek venligst din netværksforbindelse og prøv igen." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Der er ikke nok fri diskplads" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +346,15 @@ msgstr "" "køre 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +366,11 @@ msgstr "" "Upgraderingen afbrydes nu. Dit system kan forekomme ustabilt. En oprydning " "blev foretaget (dpkg --configura -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,17 +378,18 @@ msgstr "" "Opgraderingen afbryder nu. Tjek venligst din internetforbindelse eller dit " "installationsmedie og prøv igen. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Noget software er ikke længere officielt understøttet" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Disse installerede pakker er ikke længere officielt understøttet, og er nu " "kun understøttet af brugerne ('universe').↵\n" @@ -395,25 +397,25 @@ msgstr "" "Hvis du ikke har slået 'universe' til, vil fjernelsen af disse pakker blive " "foreslået i det næste trin. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 #, fuzzy msgid "_Skip This Step" msgstr "_Spring dette trin over" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 #, fuzzy msgid "Error during commit" msgstr "Fejl under udførsel" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -422,26 +424,31 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Genstarter oprindelig systemtilstand" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -451,19 +458,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Opgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" @@ -484,7 +491,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Henter fil %li af %li fra %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Tid tilbage(ca.): %li minutter" @@ -514,23 +521,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Udskift opsætningsfilen\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' blev ikke fundet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "En alvorlig fejl opstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -545,28 +558,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil blive fjernet." msgstr[1] "%s pakker vil blive fjernet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s ny pakke vil blive installeret." msgstr[1] "%s nye pakker vil blive installeret." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil blive opgraderet." msgstr[1] "%s pakker vil bliver opgraderet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -574,37 +587,40 @@ msgid "" "You have to download a total of %s. " msgstr "Der skal i alt hentes %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Opgraderingen kan tage flere timer og kan ikke fortrydes senere." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Kunne ikke finde nogen tilgængelige opgraderinger" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Dit system er opdateret" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Dit system er allerede opgraderet." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Opgrader %s" @@ -638,11 +654,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Genstart af maskinen er påkrævet" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -679,10 +695,8 @@ msgid "Start the upgrade?" msgstr "Start opgraderinegn?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Opgraderer til Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -808,9 +822,10 @@ msgid "Verfication failed" msgstr "Efterprøvning fejlede" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Efterprøvning af opgraderingen fejlede. Det er muligvis en fejl i netværket " "eller på serveren. " @@ -837,16 +852,16 @@ msgstr "Henter fil %li af %li med %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Henter fil %li af %li med ukendt hastighed" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -855,134 +870,125 @@ msgstr "" "Fejl ved hentning af ændringslisten. Undersøg venligst din " "internetforbindelse." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Installer Opdateringer" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Opgrader til seneste version af Ubuntu" +msgid "Normal updates" +msgstr "_Installer Opdateringer" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Installer Opdateringer" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Kan ikke installere alle tilgængelige opdateringer" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Henter listen med ændringer..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Tjek" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Overføringsstørelse: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Dit system er opdateret" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s opdatering" msgstr[1] "Du kan installere %s opdateringer" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Vent venligst, dette kan tage et stykke tid." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Opdatering udført" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_Installer Opdateringer" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny version: %s (Size: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Din distribution understøtes ikke længere" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -992,17 +998,17 @@ msgstr "" "opdateringer. Opgrader til en senere version af Ubuntu Linux. Se http://www." "ubuntu.com (engalsk) for mere informaiton om opgradering." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Software indexet er i stykker" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1027,58 +1033,71 @@ msgstr "" "Properties\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:7 msgid "Keep your system up-to-date" msgstr "Hold dit system opdateret" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" +msgstr "" +"Fejl ved scanning af CD\n" +"\n" +"%s" + +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Start opgraderinegn?" + +#: ../data/glade/UpdateManager.glade.h:7 #, fuzzy msgid "Cancel _Download" msgstr "Afbryd _Hentning" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Ændringer" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 #, fuzzy msgid "Chec_k" msgstr "_Tjek" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 #, fuzzy msgid "Check the software channels for new updates" msgstr "Undersøg softwarekanalerne for nye opdateringer" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Beskrivelse" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 #, fuzzy msgid "Release Notes" msgstr "Udgivelsesnoter" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Vis fremgang for enkelte filer" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Opdateringer" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1086,32 +1105,37 @@ msgstr "" "Softwareopdateringer retter fejl, lukker sikkerhedshuller og gør nye " "funktioner tilgængelige." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Opgrader" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Opgrader til seneste version af Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Tjek" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Genoptag opgradering" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Skjul denne information for fremtiden" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Installer Opdateringer" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Ændringer" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1226,10 +1250,10 @@ msgstr "_Installer sikkerhedsopdateringer automatisk uden bekræftelse" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 #, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1263,10 +1287,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1324,7 +1348,7 @@ msgstr "Undersøg om der er en ny distributionsudgivelse" #: ../data/update-manager.schemas.in.h:3 #, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1348,7 +1372,7 @@ msgstr "Gemmer størrelsen på opdateringshåndteringens dialog" #: ../data/update-manager.schemas.in.h:7 #, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Gemmer tilstanden for udfolderen der indeholder listen med ændringer og " @@ -1377,215 +1401,192 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Opdateringer" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedligeholdt af fællesskabet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Ikke frit programmel (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedligeholdt af fællesskabet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedligeholdt af fællesskabet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ikke frit programmel (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ikke frit programmel (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "_Installer Opdateringer" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -#, fuzzy -msgid "Officially supported" -msgstr "Officielt understøttet" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Opdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy -msgid "Oficially supported" +msgid "Officially supported" msgstr "Officielt understøttet" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Opdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedligeholdt af fællesskabet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ikke frit programmel (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Noget software er ikke længere officielt understøttet" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "Begrænset copyright" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Opdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" @@ -1636,6 +1637,37 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Noget software er ikke længere officielt understøttet" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Kunne ikke finde nogen tilgængelige opgraderinger" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Dit system er allerede opgraderet." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Opgraderer til Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Opgrader til seneste version af Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Kan ikke installere alle tilgængelige opdateringer" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Officielt understøttet" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/de.po b/po/de.po index e679473a..d4200608 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-27 10:58+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -135,9 +135,9 @@ msgstr "" "hierfür einen Fehlerbericht." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -153,11 +153,11 @@ msgstr "Geben Sie einen Namen für das Medium ein" msgid "Please insert a disc in the drive:" msgstr "Bitte legen Sie ein Medium in das Laufwerk:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Defekte Pakete" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -166,23 +166,23 @@ msgstr "" "werden können. Bitte reparieren Sie diese mit Synaptic oder apt-get, bevor " "Sie fortfahren." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -191,11 +191,11 @@ msgstr "" "erstellen Sie hierfür einen Fehlerbericht. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -206,12 +206,12 @@ msgstr "" "später noch einmal. Die unten stehenden Pakete konnten nicht auf ihre " "Echtheit hin bestätigt werden:" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "›%s‹ kann nicht installiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -220,15 +220,16 @@ msgstr "" "Sie hierfür einen Fehlerbericht. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -238,12 +239,12 @@ msgstr "" " Bitte installieren Sie eines der obigen Pakete über Synaptic oder apt-get, " "bevor Sie fortfahren." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Herunterladen ist fehlgeschlagen" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -253,15 +254,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Zwischenspeicher wird ausgelesen" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -269,11 +270,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Kein gültiger Mirror gefunden" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -293,11 +294,11 @@ msgstr "" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Standardquellen generieren?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -311,11 +312,11 @@ msgstr "" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Ungültige Kanalinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -323,13 +324,14 @@ msgstr "" "Die Aktualisierung der Quellen-Information ergab eine ungültige Datei. Bitte " "erstellen Sie einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Quellen von Drittanbietern deaktiviert" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -337,11 +339,11 @@ msgstr "" "Sie können diese nach dem Upgrade mit dem 'software-properties'-Werkzeug " "oder mit Synaptic reaktivieren." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Fehler während der Aktualisierung" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +352,11 @@ msgstr "" "Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre " "Netzwerkverbindung und versuchen Sie es noch einmal." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Unzureichender freier Festplattenspeicher" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -366,15 +368,15 @@ msgstr "" "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -387,11 +389,11 @@ msgstr "" "unbenutzbaren Zustand befinden. Eine Wiederherstellung wurde durchgeführt " "(dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,17 +402,18 @@ msgstr "" "Internet-Verbindung oder Ihr Installationsmedium und versuchen Sie es noch " "einmal. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Die installierten Pakete werden nicht mehr länger offiziell unterstützt und " "werden jetzt nur mehr von der Gemeinschaft unterstützt ('universe').\n" @@ -418,23 +421,23 @@ msgstr "" "Wenn sie 'universe' nicht aktiviert haben, werden diese Pakete im nächsten " "Schritt zum Entfernen vorgeschlagen. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "Ü_berspringen" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Entfernen" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Fehler beim Anwenden" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,26 +446,31 @@ msgstr "" "Nachricht für nähere Informationen. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Aktualisiere Quellen-Information" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -476,19 +484,19 @@ msgstr "" "Dies deutet auf einen gravierenden Fehler hin, bitte erstellen Sie hierfür " "einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Nach Bestätigung fragen" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Aktualisiere" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Nach veralteter Software wird gesucht" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." @@ -509,7 +517,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Lade Datei %li von %li mit %s/s herunter" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Ungefähr %li Minute(n) verbleibend" @@ -539,23 +547,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Die Konfigurationsdatei\n" "»%s« ersetzen?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Das 'diff'-Kommando konnte nicht gefunden werden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ein fataler Fehler ist aufgetreten" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -571,28 +585,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -600,7 +614,7 @@ msgid "" "You have to download a total of %s. " msgstr "Insgesamt müssen %s heruntergeladen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -609,32 +623,35 @@ msgstr "" "Die Aktualisierung kann mehrere Stunden dauern und zu keiner Zeit mehr " "abgebrochen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Es liegen keine Aktualisierungen vor" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Ihr System ist auf dem aktuellen Stand" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Ihr System wurde bereits aktualisiert." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s wird entfernt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s wird installiert" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s wird aktualisiert" @@ -668,11 +685,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Neustart erforderlich" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -710,11 +727,8 @@ msgid "Start the upgrade?" msgstr "Mit der Aktualisierung beginnen?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Auf Ubuntu 6.06 LTS aktualisieren" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -842,9 +856,10 @@ msgid "Verfication failed" msgstr "Verifikation fehlgeschlagen" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Die Prüfung der Aktualisierung ist fehlgeschlagen. Möglicherweise gibt es " "Probleme im Netzwerk oder am Server. " @@ -871,20 +886,20 @@ msgstr "Datei %li von %li wird mit %s/s heruntergeladen" msgid "Downloading file %li of %li with unknown speed" msgstr "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "Die Liste mit Aktualisierungen ist momentan nicht verfügbar. Bitte versuchen " "Sie es zu einem späteren Zeitpunkt erneut." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "Die Liste mit Aktualisierungen ist momentan nicht verfügbar. Bitte versuchen " "Sie es zu einem späteren Zeitpunkt erneut." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -892,134 +907,125 @@ msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Aktualisierungen werden installiert" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Aus die neueste Version von Ubuntu aktualisieren" +msgid "Normal updates" +msgstr "Aktualisierungen werden installiert" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Aktualisierungen werden installiert" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Nicht alle verfügbaren Aktualisierungen können installiert werden" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Liste mit Änderungen wird heruntergeladen..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Prüfen" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Download-Größe: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Ihr System ist auf dem aktuellen Stand" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sie können %s Aktualisierung installieren" msgstr[1] "Sie können %s Aktualisierungen installieren" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Bitte warten Sie, dieser Vorgang kann etwas Zeit in Anspruch nehmen." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Aktualisierung ist abgeschlossen" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Nach verfügbaren Aktualisierungen suchen" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Neue Version: %s (Größe: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Ihre Distribution wird nicht länger unterstützt" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1030,17 +1036,17 @@ msgstr "" "System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." "de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1064,58 +1070,67 @@ msgstr "" "\" -> \"Software Eigenschaften\" ändern." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Halten Sie Ihr System aktuell" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Ihr System wird überprüft\n" +"Fehler beim Lesen der CD\n" "\n" -"Software-Aktualisierungen beheben Fehler, schließen Sicherheitslücken und " -"stellen neue Funktionen bereit." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Halten Sie Ihr System aktuell" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Mit der Aktualisierung beginnen?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "_Herunterladen abbrechen" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Änderungen" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Prüfen" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Software-Kanäle auf Aktualisierungen prüfen" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Beschreibung" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Freigabemitteilung" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Fortschritt der einzelnen Dateien anzeigen" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Software-Aktualisierungen" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1123,32 +1138,37 @@ msgstr "" "Software-Aktualisierungen beheben Fehler, schließen Sicherheitslücken und " "stellen neue Funktionen bereit." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Aktualisieren" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Aus die neueste Version von Ubuntu aktualisieren" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Prüfen" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Aktualisierung fortsetzen" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "Diese Information in Zukunft _nicht mehr anzeigen" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "Aktualisierungen _installieren" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Änderungen" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1262,11 +1282,12 @@ msgid "_Install security updates without confirmation" msgstr "Sicherheitsaktualisierungen _ohne Bestätigung installieren" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1300,10 +1321,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Geben Sie die vollständige APT-Zeile für den Kanal ein, den sie " @@ -1363,8 +1384,9 @@ msgid "Check for new distribution releases" msgstr "Auf neue Versionen der Distribution prüfen" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1385,8 +1407,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "Speichert die Größe des Fensters der Aktualisierungsverwaltung" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Speichert den Zustand des Expanders, der die Liste der Änderungen und die " @@ -1414,212 +1437,190 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Aktualisierungen" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Von der Gemeinschaft betreut (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Contributed Software" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Von der Gemeinschaft betreut (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Von der Gemeinschaft betreut (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Unfrei (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Unfrei (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "Software mit US-Exportbeschränkungen" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Aktualisierungen werden installiert" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Offiziell unterstützt" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Offiziell unterstützt" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Von der Gemeinschaft betreut (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Unfrei (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Urheberrechtlich eingeschränkt" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" @@ -1670,6 +1671,47 @@ msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Es liegen keine Aktualisierungen vor" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Ihr System wurde bereits aktualisiert." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Auf Ubuntu 6.06 LTS aktualisieren" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Aus die neueste Version von Ubuntu aktualisieren" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Nicht alle verfügbaren Aktualisierungen können installiert werden" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Ihr System wird überprüft\n" +#~ "\n" +#~ "Software-Aktualisierungen beheben Fehler, schließen Sicherheitslücken und " +#~ "stellen neue Funktionen bereit." + +#~ msgid "Oficially supported" +#~ msgstr "Offiziell unterstützt" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1828,9 +1870,6 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Sections" #~ msgstr "Sparten:" -#~ msgid "Check for available updates" -#~ msgstr "Nach verfügbaren Aktualisierungen suchen" - #~ msgid "Sections:" #~ msgstr "Sparten:" diff --git a/po/el.po b/po/el.po index 2d55ab71..959500fb 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-25 15:39+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -130,9 +130,9 @@ msgstr "" "σφάλμα." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -148,11 +148,11 @@ msgstr "Παρακαλώ εισάγετε ένα όνομα για το δίσκ msgid "Please insert a disc in the drive:" msgstr "Παρακαλώ εισάγετε ένα δίσκο στον οδηγό:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Κατεστραμμένα πακέτα" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -161,23 +161,23 @@ msgstr "" "διορθωθούν με αυτό το λογισμικό. Παρακαλώ διορθώστε τα μέσω synaptic ή apt-" "get για να συνεχίσετε." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετα-πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -186,11 +186,11 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "σε ένα πρόβλημα δικτύου. Προσπαθήστε αργότερα. Δείτε παρακάτω τη λίστα των " "μη πιστοποιημένων πακέτων." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Αδυναμία εγκατάστασης '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,15 +214,16 @@ msgstr "" "ως σφάλμα. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -232,12 +233,12 @@ msgstr "" "Εγκαταστήστε ένα από αυτά τα πακέτα πρώτα μέσω synaptic ή apt-get πριν να " "συνεχίσετε." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Αποτυχία λήψης" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -247,15 +248,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Ανάγνωση λανθάνουσας μνήμης" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Δεν βρέθηκε έγκυρη εναλλακτική τοποθεσία αρχείων" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +289,11 @@ msgstr "" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +307,11 @@ msgstr "" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Μη έγκυρες πληροφορίες repository" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,13 +319,14 @@ msgstr "" "Η αναβάθμιση των πληροφοριών repository είχε σαν αποτέλεσμα ένα άκυρο " "αρχείο. Παρακαλώ αναφέρετε το ως σφάλμα." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Απενεργοποιήθηκαν πηγές τρίτων" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -332,11 +334,11 @@ msgstr "" "Μπορείτε να τις ενεργοποιήσετε μετά την αναβάθμιση με το εργαλείο 'software-" "properties' ή με το synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Σφάλμα κατά την ενημέρωση" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +346,11 @@ msgstr "" "Δημιουργήθηκε ένα πρόβλημα κατά την αναβάθμιση. Αυτό συνήθως σημαίνει " "πρόβλημα δικτύου. Ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε ξανά." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +362,15 @@ msgstr "" "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -380,11 +382,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Το σύστημα σας μπορεί να γίνει ασταθές. " "Εκτελείται μια διεργασία ανάκτησης (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -392,17 +394,18 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Μερικά πακέτα λογισμικού δεν υποστηρίζονται πια επίσημα" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Αυτά τα εγκατεστημένα πακέτα δεν υποστηρίζονται πια επίσημα, και τώρα " "ανήκουν στο community-supported ('universe').\n" @@ -410,23 +413,23 @@ msgstr "" "Αν δεν έχετε ενεργοποιημένο το 'universe' , θα γίνει πρόταση για απομάκρυνση " "αυτών των πακέτων στο επόμενο βήμα. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "Παράκα_μψη αυτου του βήματος" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Απομάκρυνση" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,26 +438,31 @@ msgstr "" "παρακάτω μήνυμα για περισσότερες πληροφορίες. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών repository" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -467,19 +475,19 @@ msgstr "" "απαραίτητο πακέτο '%s'.\n" " Αυτό σημαίνει ότι πρόκειται για σημαντικό σφάλμα, παρακαλώ αναφέρετε το." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Ερώτηση για επιβεβαίωση" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." @@ -500,7 +508,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Απομένουν περίπου %li λεπτά" @@ -530,23 +538,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Αντικατάσταση αρχείου ρύθμισης\n" "'%s';" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Η εντολή 'diff' δεν βρέθηκε" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Προέκυψε μοιραίο σφάλμα" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -562,28 +576,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s πακέτο πρόκειται να απομακρυνθεί." msgstr[1] "%s πακέτα πρόκειται να απομακρυνθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s νέο πακέτο πρόκειται να εγκατασταθεί." msgstr[1] "%s νέο πακέτα πρόκειται να εγκατασταθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s πακέτο πρόκειται να αναβαθμιστεί." msgstr[1] "%s πακέτα πρόκειται να αναβαθμιστούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -591,7 +605,7 @@ msgid "" "You have to download a total of %s. " msgstr "Θα πρέπει να μεταφορτώσετε συνολικά %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -600,32 +614,35 @@ msgstr "" "Η αναβάθμιση μπορεί να διαρκέσει αρκετές ώρες και δεν είναι δυνατή η ακύρωση " "της αργότερα." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Δεν βρέθηκαν αναβαθμίσεις" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Το σύστημα σας είναι ενημερωμένο" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Το σύστημα σας έχει ήδη αναβαθμιστεί." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Απομάκρυνση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Εγκατάσταση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Αναβάθμιση %s" @@ -659,11 +676,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Απαιτείται επανεκκίνηση" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -701,10 +718,8 @@ msgid "Start the upgrade?" msgstr "Έναρξη της αναβάθμισης;" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Αναβάθμιση σε Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -828,9 +843,10 @@ msgid "Verfication failed" msgstr "Αποτυχία επαλήθευσης" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Η επαλήθευση της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου ή " "εξυπηρετητή. " @@ -857,18 +873,18 @@ msgstr "Λήψη αρχείου %li από %li με %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -876,134 +892,125 @@ msgstr "" "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Εγκατάσταση ενημερώσεων" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Αναβάθμιση στη τελευταία έκδοση του Ubuntu" +msgid "Normal updates" +msgstr "Εγκατάσταση ενημερώσεων" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Εγκατάσταση ενημερώσεων" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Αδυναμία εγκατάστασης όλων των διαθέσιμων ενημερώσεων" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Έκδοση%s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Λήψη της λίστας των αλλαγών..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "Έλε_γχος" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Μέγεθος λήψης: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Το σύστημα σας είναι ενημερωμένο" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Μπορείτε να εγκαταστήσετε %s ενημέρωση" msgstr[1] "Μπορείτε να εγκαταστήσετε %s ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Παρακαλώ περιμένετε, αυτό μπορεί να διαρκέσει λίγο χρόνο." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Η ενημέρωση ολοκληρώθηκε" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Έλεγχος για διαθέσιμες ενημερώσεις" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Νέα έκδοση: %s (Μέγεθος: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Έκδοση%s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Η διανομή σας δεν υποστηρίζεται πια" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1014,17 +1021,17 @@ msgstr "" "Ubuntu Linux. Δείτε το http://www.ubuntu.com για περισσότερες πληροφορίες " "για την αναβάθμιση." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1048,58 +1055,67 @@ msgstr "" "συστήματος\" -> \"Ιδιότητες λογισμικού\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Διατηρήστε το σύστημα σας ενημερωμένο" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Γίνεται ανάλυση του συστήματος σας\n" +"Σφάλμα ελέγχου του CD\n" "\n" -"Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " -"να παρέχουν νέες λειτουργίες." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Διατηρήστε το σύστημα σας ενημερωμένο" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Έναρξη της αναβάθμισης;" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Ακύρωση _λήψης αρχείων" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Αλλαγές" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Ελε_γχος" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Έλεγχος των καναλιών λογισμικού για ενημερώσεις" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Περιγραφή" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Σημειώσεις έκδοσης" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Εμφάνιση προόδου μοναδικών αρχείων" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Αναβαθμίσεις λογισμικού" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1107,32 +1123,37 @@ msgstr "" "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " "να παρέχουν νέες λειτουργίες." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "Ανα_βάθμιση" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Αναβάθμιση στη τελευταία έκδοση του Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "Έλε_γχος" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Συνέχεια αναβάθμισης" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "Απόκρυ_ψη αυτής της πληροφορίας στο μέλλον" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "Ε_γκατάσταση ενημερώσεων" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Αλλαγές" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1242,11 +1263,12 @@ msgid "_Install security updates without confirmation" msgstr "Ε_γκατάσταση ενημερώσεων ασφαλείας χωρίς επιβεβαίωση" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1281,10 +1303,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Εισάγετε την πλήρη γραμμή APT του καναλιού που θέλετε να " @@ -1342,8 +1364,9 @@ msgid "Check for new distribution releases" msgstr "Έλεγχος για νέες εκδόσεις της διανομής" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1363,8 +1386,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "Αποθηκεύει το μέγεθος του διαλόγου του update-manager" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Αποθηκεύει τη κατάσταση του expander που περιέχει τη λίστα των αλλαγών και " @@ -1392,211 +1416,189 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Αναβαθμίσεις Ubuntu 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Community maintained (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Όχι-ελεύθερα (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Όχι-ελεύθερα (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Εγκατάσταση ενημερώσεων" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Με επίσημη υποστήριξη" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" -msgstr "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "Με επίσημη υποστήριξη" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Μερικά πακέτα λογισμικού δεν υποστηρίζονται πια επίσημα" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Περιορισμένα πνευματικά δικαιώματα" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" @@ -1647,6 +1649,47 @@ msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Μερικά πακέτα λογισμικού δεν υποστηρίζονται πια επίσημα" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Δεν βρέθηκαν αναβαθμίσεις" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Το σύστημα σας έχει ήδη αναβαθμιστεί." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Αναβάθμιση σε Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Αναβάθμιση στη τελευταία έκδοση του Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Αδυναμία εγκατάστασης όλων των διαθέσιμων ενημερώσεων" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Γίνεται ανάλυση του συστήματος σας\n" +#~ "\n" +#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας " +#~ "και να παρέχουν νέες λειτουργίες." + +#~ msgid "Oficially supported" +#~ msgstr "Oficially supported" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1755,9 +1798,6 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "Sections" #~ msgstr "Ενότητες" -#~ msgid "Check for available updates" -#~ msgstr "Έλεγχος για διαθέσιμες ενημερώσεις" - #~ msgid "Sections:" #~ msgstr "Ενότητες:" diff --git a/po/en_AU.po b/po/en_AU.po index 9d153fcb..54dd3f08 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-26 21:06+0000\n" "Last-Translator: David Symons \n" "Language-Team: English (Australia) \n" @@ -129,9 +129,9 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,11 +147,11 @@ msgstr "Please enter a name for the disc" msgid "Please insert a disc in the drive:" msgstr "Please insert a disc in the drive:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Broken packages" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -159,23 +159,23 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -184,11 +184,11 @@ msgstr "" "this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,15 +212,16 @@ msgstr "" "bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -230,12 +231,12 @@ msgstr "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Failed to fetch" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Reading cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -261,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "No valid mirror found" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -285,11 +286,11 @@ msgstr "" "If you select 'no' the update will cancel." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Generate default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -302,11 +303,11 @@ msgstr "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Repository information invalid" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -314,13 +315,14 @@ msgstr "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Third party sources disabled" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -328,11 +330,11 @@ msgstr "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -340,11 +342,11 @@ msgstr "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -356,15 +358,15 @@ msgstr "" "'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -376,11 +378,11 @@ msgstr "" "The upgrade aborts now. Your system can be in an unusable state. A recovery " "was run (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -388,17 +390,18 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "These installed packages are no longer officially supported, and are now " "only community-supported ('universe').\n" @@ -406,23 +409,23 @@ msgstr "" "If you don't have 'universe' enabled these packages will be suggested for " "removal in the next step. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -431,26 +434,31 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Restoring original system state" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -463,19 +471,19 @@ msgstr "" "not be found anymore.\n" "This indicates a serious error, please report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "System upgrade is complete." @@ -496,7 +504,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Downloading file %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "About %li minutes remaining" @@ -526,24 +534,30 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Replace configuration file\n" "\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -558,28 +572,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s package is going to be removed." msgstr[1] "%s packages are going to be removed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s new package is going to be installed." msgstr[1] "%s new packages are going to be installed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s package is going to be upgraded." msgstr[1] "%s packages are going to be upgraded." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -587,7 +601,7 @@ msgid "" "You have to download a total of %s. " msgstr "You have to download a total of %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -595,30 +609,33 @@ msgid "" msgstr "" "The upgrade can take several hours and cannot be canceled at any time later." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -652,11 +669,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Reboot required" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -693,10 +710,8 @@ msgid "Start the upgrade?" msgstr "Start the upgrade?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Upgrading to Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -819,9 +834,10 @@ msgid "Verfication failed" msgstr "Verfication failed" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " @@ -848,16 +864,16 @@ msgstr "Downloading file %li of %li with %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Downloading file %li of %li with unknown speed" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "The list of changes is not available yet. Please try again later." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "The list of changes is not available yet. Please try again later." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -865,134 +881,125 @@ msgstr "" "Failed to download the list of changes. Please check your Internet " "connection." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Security Updates" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Install Updates" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Upgrade to the latest version of Ubuntu" +msgid "Normal updates" +msgstr "_Install Updates" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Install Updates" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Cannot install all available updates" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Downloading the list of changes..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Check" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Download size: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Your system is up-to-date" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "You can install %s update" msgstr[1] "You can install %s updates" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Please wait, this can take some time." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Update is complete" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_Install Updates" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "New version: %s (Size: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Your distribution is not supported anymore" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1002,17 +1009,17 @@ msgstr "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1036,59 +1043,67 @@ msgstr "" "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Keep your system up-to-date" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Examining your system\n" -"\n" +"Error scaning the CD\n" "\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Start the upgrade?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Cancel _Download" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Chec_k" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Check the software channels for new updates" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Description" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Release Notes" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Show progress of single files" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Software Updates" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1096,32 +1111,37 @@ msgstr "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "U_pgrade" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Upgrade to the latest version of Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Check" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Resume Upgrade" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Hide this information in the future" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Install Updates" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1231,11 +1251,12 @@ msgid "_Install security updates without confirmation" msgstr "_Install security updates without confirmation" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1271,10 +1292,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Enter the complete APT line of the channel that you want to addUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Upgrading to Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Security Updates" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Upgrade to the latest version of Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Cannot install all available updates" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Examining your system\n" +#~ "\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Officially supported" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/en_CA.po b/po/en_CA.po index decd0e07..b7a59cf9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -134,7 +134,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,33 +147,33 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -181,23 +181,23 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,24 +206,24 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -233,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +266,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,73 +341,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,20 +422,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -450,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -483,19 +488,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -505,28 +516,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -534,37 +545,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" - -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 #, fuzzy -msgid "Your system has already been upgraded." -msgstr "Your system has broken packages!" +msgid "Your system is up-to-date" +msgstr "Your system is up-to-date!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -598,11 +612,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -633,7 +647,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -760,8 +774,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -785,16 +799,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "There is a new release of Ubuntu available!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -803,153 +817,143 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.04 Security Updates" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "_Install" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Cancel downloading the ChangeLog" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "Your system is up-to-date!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_Install" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -965,87 +969,100 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Description" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Software Updates" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 #, fuzzy msgid "U_pgrade" msgstr "Upgrade finished" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "Upgrade finished" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "_Install" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1158,10 +1175,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1190,10 +1207,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Enter the complete APT line of the repository that you want to add\n" "Language-Team: \n" @@ -133,7 +133,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -146,33 +146,33 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -180,23 +180,23 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -205,24 +205,24 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -232,15 +232,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -248,11 +248,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -265,11 +265,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -278,43 +278,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +323,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,73 +340,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -416,21 +421,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 #, fuzzy msgid "Asking for confirmation" msgstr "Checking system configuration" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -450,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -483,19 +488,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -505,28 +516,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -534,37 +545,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" - -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 #, fuzzy -msgid "Your system has already been upgraded." -msgstr "Your system has broken packages!" +msgid "Your system is up-to-date" +msgstr "Your system is up-to-date!" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -598,11 +612,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -633,7 +647,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -759,8 +773,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -784,16 +798,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "There is a new release of Ubuntu available!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -802,153 +816,143 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Security Updates" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Installing updates..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "Installing updates..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Installing updates..." -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Downloading Changes" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "Your system is up-to-date!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Installing updates..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -964,86 +968,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Description" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Software Updates" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "Installing updates..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1158,10 +1174,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1190,10 +1206,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Enter the complete APT line of the repository that you want to add\n" "Language-Team: Spanish \n" @@ -136,9 +136,9 @@ msgstr "" "como un fallo." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -154,11 +154,11 @@ msgstr "Por favor, introduzca un nombre para el disco" msgid "Please insert a disc in the drive:" msgstr "Por favor, inserte un disco en la unidad:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Paquetes rotos" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -167,23 +167,23 @@ msgstr "" "software. Por favor, arréglelos primero usando Synaptic o apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "No se han podido actualizar los meta-paquetes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -192,11 +192,11 @@ msgstr "" "actualización. Por favor, informe de ésto como un fallo. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -206,12 +206,12 @@ msgstr "" "problema transitorio en la red. Pruebe de nuevo más tarde. Vea abajo una " "lista de los paquetes no autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "No se ha podido instalar «%s»" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -220,15 +220,16 @@ msgstr "" "como un fallo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -238,12 +239,12 @@ msgstr "" " Por favor, instale uno de los paquetes anteriores usando Synaptic o apt-get " "antes de proceder." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Error al descargar" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -253,15 +254,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Leyendo caché" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -269,11 +270,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "No se ha encontrado un servidor espejo válido" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +295,11 @@ msgstr "" "Si selecciona «No» se cancelará la actualización." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +313,11 @@ msgstr "" "¿Deben añadirse entradas predeterminadas para «%s»? Si selecciona «No» se " "cancelará la actualización." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Información de repositorio no válida" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,13 +325,14 @@ msgstr "" "La actualización de la información del repositorio generó un archivo " "incorrecto. Por favor, informe de ésto como un error." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Orígenes de terceros desactivados" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -338,11 +340,11 @@ msgstr "" "volver a activarlas tras la actualización con la herramienta «Propiedades " "del software», o con Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Error durante la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +353,11 @@ msgstr "" "tipo de problema en la red, por lo que le recomendamos que compruebe su " "conexión de red y vuelva a intentarlo." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "No hay espacio suficiente en el disco" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -367,15 +369,15 @@ msgstr "" "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -388,11 +390,11 @@ msgstr "" "estado inutilizable. Se está llevando a cabo una recuperación (dpkg --" "configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,17 +402,18 @@ msgstr "" "La actualización se interrumpirá ahora. Por favor, compruebe su conexión a " "Internet (o su soporte de instalación) y vuelva a intentarlo. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Algunos programas ya no están soportados oficialmente" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Estos paquetes instalados ya no están soportados oficialmente, y desde ahora " "sólo están soportados por la comunidad («universe»).\n" @@ -418,23 +421,23 @@ msgstr "" "Si no tiene activado el «universe», se le sugerirá que desinstale estos " "paquetes en el siguiente paso. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Quitar" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Error durante la confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,26 +446,31 @@ msgstr "" "inferior para más información. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Comprobando gestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Información de paquete no válida" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +483,19 @@ msgstr "" "posible encontrar el paquete esencial «%s».\n" "Esto indica un problema serio; por favor, informe de esto como un fallo." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." @@ -508,7 +516,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Descargando archivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Faltan %li minutos" @@ -538,23 +546,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "¿Desea reemplazar el archivo de configuración\n" "«%s»?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "No se ha encontrado el comando «diff»" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ha ocurrido un error fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -570,28 +584,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "Se va a desinstalar %s paquete." msgstr[1] "Se van a desinstalar %s paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "Se va a instalar %s paquete nuevo." msgstr[1] "Se van a instalar %s paquetes nuevos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "Se va a actualizar %s paquete." msgstr[1] "Se van a actualizar %s paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -599,7 +613,7 @@ msgid "" "You have to download a total of %s. " msgstr "Debe descargar un total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -608,32 +622,35 @@ msgstr "" "La actualización puede durar varias horas, y no podrá ser cancelada después " "en ningún momento." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "No se ha podido encontrar ninguna actualización" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Su sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Su sistema ya ha sido actualizado." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -667,11 +684,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Se requiere reiniciar el equipo" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -708,10 +725,8 @@ msgid "Start the upgrade?" msgstr "¿Comenzar la actualización?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Actualizando a Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -839,9 +854,10 @@ msgid "Verfication failed" msgstr "Error de verificación" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Ha fallado la verificación de la actualización. Puede haber un problema con " "la red o el servidor. " @@ -868,20 +884,20 @@ msgstr "Descargando archivo %li de %li a %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Descargando archivo %li de %li a velocidad desconocida" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "La lista de cambios no está disponible aún. Por favor, inténtelo de nuevo " "más tarde." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "La lista de cambios no está disponible aún. Por favor, inténtelo de nuevo " "más tarde." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -889,134 +905,125 @@ msgstr "" "Hubo un fallo al descargar la lista de cambios. Por favor, compruebe su " "conexión a Internet." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Instalando actualizaciones" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Actualizar a la última versión de Ubuntu" +msgid "Normal updates" +msgstr "Instalando actualizaciones" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Instalando actualizaciones" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "No se han podido instalar todas las actualizaciones disponibles" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versión %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Descargando la lista de cambios..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Comprobar" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Tamaño de descarga: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Su sistema está actualizado" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Puede instalar %s actualización" msgstr[1] "Puede instalar %s actualizaciones" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Por favor, espere; esto puede tardar un poco." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "La actualización se ha completado" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Comprobar las actualizaciones disponibles" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nueva versión: %s (Tamaño: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versión %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Su distribución ya no está soportada" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1026,17 +1033,17 @@ msgstr "" "críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" "www.ubuntu.com para más información sobre la actualización." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "El índice de software está dañado" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1060,58 +1067,67 @@ msgstr "" "software»." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Mantenga su sistema actualizado" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Analizando su sistema\n" +"Error explorando el CD\n" "\n" -"Las actualizaciones de software corrigen errores, eliminan fallos de " -"seguridad y proporcionan nuevas funcionalidades." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Mantenga su sistema actualizado" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "¿Comenzar la actualización?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Cancelar _descarga" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Cambios" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Comprobar" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Comprobar si hay nuevas actualizaciones en los canales de software" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Descripción" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Notas de publicación" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Mostrar el progreso de cada archivo individual" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Actualizaciones de software" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1119,32 +1135,37 @@ msgstr "" "Las actualizaciones de software corrigen errores, eliminan fallos de " "seguridad y proporcionan nuevas funcionalidades." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "A_ctualizar" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Actualizar a la última versión de Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Comprobar" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Continuar actualización" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Ocultar esta información en el futuro" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Instalar actualizaciones" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Cambios" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1255,11 +1276,12 @@ msgid "_Install security updates without confirmation" msgstr "_Instalar actualizaciones de seguridad sin requerir confirmación" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1294,10 +1316,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Introduzca la línea de APT completa del canal que quiera añadirUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Actualizando a Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Actualizaciones de seguridad de Ubuntu 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Actualizar a la última versión de Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "No se han podido instalar todas las actualizaciones disponibles" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Analizando su sistema\n" +#~ "\n" +#~ "Las actualizaciones de software corrigen errores, eliminan fallos de " +#~ "seguridad y proporcionan nuevas funcionalidades." + +#~ msgid "Oficially supported" +#~ msgstr "Soportado oficialmente" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1777,9 +1820,6 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Sections" #~ msgstr "Secciones" -#~ msgid "Check for available updates" -#~ msgstr "Comprobar las actualizaciones disponibles" - #~ msgid "Sections:" #~ msgstr "Secciones:" diff --git a/po/fi.po b/po/fi.po index 959956f5..8f7740c6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-25 18:26+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -133,7 +133,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -149,11 +149,11 @@ msgstr "Syötä nimi levylle" msgid "Please insert a disc in the drive:" msgstr "Aseta levy asemaan:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Rikkinäisiä paketteja" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -162,23 +162,23 @@ msgstr "" "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get-komentoa ennen " "jatkamista." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Ei voida päivittää tarvittavia metapaketteja" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Ei voitu tehdä tarvittavia päivitykseen liittyviä tarkistuksia" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -187,11 +187,11 @@ msgstr "" "korjata. Ilmoita tästä virheraportilla. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Joitain paketteja todennettaessa tapahtui virhe" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -201,12 +201,12 @@ msgstr "" "Voit yrittää myöhemmin uudelleen. Alla on luettelo todentamattomista " "paketeista." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Ei voitu asentaa pakettia \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,15 +214,16 @@ msgstr "" "Pyydettyä pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -232,12 +233,12 @@ msgstr "" "Asenna jokin luetelluista paketeista synapticilla tai apt-get-ohjelmalla " "ennen jatkamista." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -247,15 +248,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Luetaan kätköä" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Ei löytynyt sopivaa palvelinta" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +289,11 @@ msgstr "" "Jos valitset \"Ei\", päivitys keskeytyy." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Luo ja ota käyttöön oletusohjelmalähteet?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -305,11 +306,11 @@ msgstr "" "Otetaanko käyttöön \"%s\":n oletuslähteet? Jos valitset \"Ei\", päivitys " "keskeytyy." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Virhe ohjelmavarastotiedoissa" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,13 +318,14 @@ msgstr "" "Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Ilmoita " "tästä virheraportilla." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Kolmannen osapuolet ohjelmalähteet poissa käytöstä" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -331,11 +333,11 @@ msgstr "" "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen \"ohjelma-" "asetukset\"-työkalulla tai Synaptic-ohjelmalla." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Virhe päivitettäessä" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +345,11 @@ msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +361,15 @@ msgstr "" "komentoa 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Ei voitu asentaa päivityksiä" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +381,11 @@ msgstr "" "Päivitys keskeytyy. Järjestelmäsi voi olla käyttökelvottomassa tilassa. " "Korjaustoimenpiteet suoritettiin (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,17 +393,18 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Jotkin ohjelmat eivät ole enää virallisesti tuettuja" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Seuraavia paketteja ei enää tueta virallisesti, vaan ovat nyt yhteisön " "ylläpitämiä ('universe'-ohjelmat).\n" @@ -409,23 +412,23 @@ msgstr "" "Jos sinulla ei ole 'universe'-ohjelmakanavaa otettuna käyttöön, nämä paketit " "suositellaan poistettaviksi seuraavassa kohdassa. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Poista vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Virhe suoritettaesa" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,26 +437,31 @@ msgstr "" "lisätietoja. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -466,19 +474,19 @@ msgstr "" "enää löydetty.\n" "Tämä merkitsee vakavaa virhettä, ilmoita tästä virheraportilla." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Etsitään vanhetuneita ohjelmia" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." @@ -499,7 +507,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Noin %li minuuttia jäljellä" @@ -529,23 +537,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Korvataanko asetustiedosto\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Vakava virhe tapahtui" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -558,28 +572,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s paketti poistetaan" msgstr[1] "%s pakettia poistetaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s uusi paketti asennetaan" msgstr[1] "%s uutta pakettia asennetaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paketti päivitetään" msgstr[1] "%s pakettia päivitetään" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -587,7 +601,7 @@ msgid "" "You have to download a total of %s. " msgstr "Noudettavaa yhteensä %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -595,31 +609,34 @@ msgid "" msgstr "" "Päivitys voi kestää useita tunteja, eikä sitä voi keskeyttää enää myöhemmin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Päivityksiä ei löytynyt" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Järjestelmäsi on ajan tasalla" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Järjestelmäsi on jo päivitetty." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Poista %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Asenna %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" @@ -653,11 +670,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Uudellenkäynnistys vaaditaan" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -695,11 +712,8 @@ msgid "Start the upgrade?" msgstr "Aloita päivitys?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Päivitetään jakeluun: Ubuntu 6.06 " -"LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -824,9 +838,10 @@ msgid "Verfication failed" msgstr "Tarkistus epäonnistui" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Päivityksen tarkistaminen epäonnistui. Tämä voi johtua ongelmasta " "verkkoyhteydessä tai palvelimessa. " @@ -853,151 +868,142 @@ msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Muutosluettelo ei ole vielä saatavilla. Yritä myöhemmin uudelleen." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Muutosluettelo ei ole vielä saatavilla. Yritä myöhemmin uudelleen." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" "Muutosluettelon nouto epäonnistui. Tarkista Internet-yhteytesi toimivuus." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Asennetaan päivityksiä" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Päivitä Ubuntun viimeisimpään versioon" +msgid "Normal updates" +msgstr "Asennetaan päivityksiä" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Asennetaan päivityksiä" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Ei voida asentaa kaikkia saatavilla olevia päivityksiä" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versio: %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Noudetaan muutosluetteloa..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Tarkista" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 #, fuzzy msgid "None" msgstr "Ei-vapaa" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "%s täytyy noutaa" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Järjestelmäsi on ajan tasalla" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Voit asentaa %s päivityksen" msgstr[1] "Voit asentaa %s päivitystä" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Odota, tämä voi kestää jonkun aikaa." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Päivitys on valmis" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Tarkista saatavilla olevat päivitykset" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Uusi versio: %s (koko: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versio: %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Jakeluasi ei enää tueta" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1007,17 +1013,17 @@ msgstr "" "Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja " "päivittämisestä osoitteesta http://www.ubuntu.com/" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1040,58 +1046,67 @@ msgstr "" "\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Pidä järjestelmäsi ajan tasalla" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Tarkistetaan järjestelmää\n" +"Virhe luettaessa CD-levyä\n" "\n" -"Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " -"ominaisuuksia." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Pidä järjestelmäsi ajan tasalla" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Aloita päivitys?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Peruuta _nouto" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Muutokset" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Tarkista" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Tarkista onko ohjelmakanavissa uusia päivityksiä" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Kuvaus" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Julkaisutiedot" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Näytä edistyminen yksittäisten tiedostojen osalta" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Ohjelmapäivitykset" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1099,32 +1114,37 @@ msgstr "" "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " "ominaisuuksia." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Päivitä" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Päivitä Ubuntun viimeisimpään versioon" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Tarkista" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Jatka päivitystä" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "P_iilota tämä tieto jatkossa" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Asenna päivitykset" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Muutokset" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1235,11 +1255,12 @@ msgid "_Install security updates without confirmation" msgstr "_Asenna turvallisuuspäivitykset kysymättä" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1273,10 +1294,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Kirjoita haluamasi kanavan koko APT-rivi\n" @@ -1335,8 +1356,9 @@ msgid "Check for new distribution releases" msgstr "Tarkista onko uusia julkaisuja jakelusta" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1357,8 +1379,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "Tallentaa päivitystenhallintaikkunan koon" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Tallentaa muutosluettelon ja kuvauksen näyttämän ikkunalaajennoksen tilan." @@ -1385,212 +1408,190 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 päivitykset" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Yhteisön ylläpitämät (universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Muiden tarjoamat ohjelmat" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Yhteisön ylläpitämät (universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ei-vapaat ohjelmat (multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "USA:sta vientirajoitetut ohjelmat" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 turvallisuuspäivitykset" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Asennetaan päivityksiä" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Virallisesti tuettu" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Virallisesti tuettu" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 päivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Jotkin ohjelmat eivät ole enää virallisesti tuettuja" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Rajoitettu tekijänoikeus" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 päivitykset" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" @@ -1642,6 +1643,47 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Jotkin ohjelmat eivät ole enää virallisesti tuettuja" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Päivityksiä ei löytynyt" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Järjestelmäsi on jo päivitetty." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Päivitetään jakeluun: Ubuntu 6.06 " +#~ "LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 turvallisuuspäivitykset" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Päivitä Ubuntun viimeisimpään versioon" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Ei voida asentaa kaikkia saatavilla olevia päivityksiä" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Tarkistetaan järjestelmää\n" +#~ "\n" +#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat " +#~ "uusia ominaisuuksia." + +#~ msgid "Oficially supported" +#~ msgstr "Virallisesti tuettu" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1757,21 +1799,9 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "Remove obsolete Packages?" #~ msgstr "Poista vanhentuneet paketit?" -#~ msgid "Check for available updates" -#~ msgstr "Tarkista saatavilla olevat päivitykset" - #~ msgid "Sections:" #~ msgstr "Osastot:" -#~ msgid "" -#~ "Error scanning the CD\n" -#~ "\n" -#~ "%s" -#~ msgstr "" -#~ "Virhe luettaessa CD-levyä\n" -#~ "\n" -#~ "%s" - #~ msgid "Add Software Channels" #~ msgstr "Lisää ohjelmistokanavia" diff --git a/po/fr.po b/po/fr.po index 6847a205..eae025fe 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-26 21:09+0000\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" @@ -134,9 +134,9 @@ msgstr "" "ce bogue." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -152,11 +152,11 @@ 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 :" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Paquets défectueux" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -165,23 +165,23 @@ msgstr "" "ce logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou d'apt-get " "avant de continuer." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Les meta-paquets désirés n'ont pu être mis à jour" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Un paquet essentiel devrait être enlevé" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -190,11 +190,11 @@ msgstr "" "rapporter ce bogue. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -204,12 +204,12 @@ msgstr "" "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." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installer « %s »" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,15 +218,16 @@ msgstr "" "rapporter ce bogue. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -236,12 +237,12 @@ msgstr "" " Veuillez d'abord installer l'un des paquets ci-dessus, en utilisant " "Synaptic ou apt-get, avant de continuer." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Impossible d'établir la connexion" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -251,15 +252,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Lecture du cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +268,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Aucun mirroir valide n'a pu être trouvé" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -292,11 +293,11 @@ msgstr "" "Sinon, la mise à jour sera annulée." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -310,11 +311,11 @@ msgstr "" "Les entrées par défaut pour « %s » doivent-elles être ajoutées ? Si vous " "sélectionnez « Non », la mise à jour sera annulée." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Informations sur le dépôt invalides" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -322,13 +323,14 @@ msgstr "" "La mise à jour des informations du dépôt a créé un fichier invalide. Merci " "de rapporter ce bogue." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Sources provenant de tiers désactivées" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -336,11 +338,11 @@ msgstr "" "désactivées. Vous pouvez les réactiver après la mise à jour avec l'outil « " "Gestionnaire de canaux logiciels » ou avec Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Erreur lors de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +351,11 @@ msgstr "" "un problème de réseau. Veuillez vérifier votre connexion au réseau et " "réessayer." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Il n'y a pas assez d'espace libre sur le disque" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -366,15 +368,15 @@ msgstr "" "get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Les mises à jour n'ont pu être installées" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,11 +388,11 @@ msgstr "" "Abandon de la mise à jour. Votre système est peut-être inutilisable. Une " "recupération a été lancée (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Les mises à jour n'ont pu être téléchargées" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,17 +400,18 @@ msgstr "" "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou " "votre médium d'installation puis réessayez. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Certains logiciels ne sont plus supportés officiellement" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Ces paquets installées ne sont plus supportés officiellement. Ils sont " "maintenant seulement supportées par la communauté ('universe').\n" @@ -416,23 +419,23 @@ msgstr "" "Si vous n'avez pas activé le dépot 'universe', la suppression de ces paquets " "vous sera suggérée lors de la prochaine étape. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes ?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Passer cette étape" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Supprimer" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Erreur pendant la soumission" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -441,26 +444,31 @@ msgstr "" "ci-dessous pour plus d'informations. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts en cours" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Information sur les paquet invalides" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -474,19 +482,19 @@ msgstr "" "Ceci est indique qu'une erreur important s'est produite, veuillez rapporter " "ce bogue." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Demande de confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Mise à jour en cours" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." @@ -507,7 +515,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Téléchargement du fichier %li sur %li à %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Environ %li minutes restantes" @@ -537,23 +545,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Remplacer le fichier de configuration\n" "« %s » ?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pu être trouvée" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Une erreur fatale est survenue" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -569,28 +583,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "Le paquet %s va être supprimé." msgstr[1] "Les paquets %s vont être supprimés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "Le paquet %s va être installé." msgstr[1] "Les paquets %s vont être installés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "Le paquet %s va être mis à jour." msgstr[1] "Les paquets %s vont être mis à jour." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -598,7 +612,7 @@ msgid "" "You have to download a total of %s. " msgstr "Vous devez télécharger un total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -607,32 +621,35 @@ msgstr "" "La mise à jour peut prendre plusieurs heures et ne peut être annulée " "ultérieurement." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 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." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Aucune mise à jour n'est disponible" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Votre système est à jour" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Votre système a déjà été mis à jour." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Supprimer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Mettre à jour %s" @@ -666,11 +683,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Redémarrage de l'ordinateur requis" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -708,11 +725,8 @@ msgid "Start the upgrade?" msgstr "Démarrer la mise à jour ?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Mise à jour vers Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -838,9 +852,10 @@ msgid "Verfication failed" msgstr "Échec de la vérification" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "La vérification de la mise à jour à échoué. Il y a peut-être un problème " "avec le réseau ou avec le serveur. " @@ -867,20 +882,20 @@ msgstr "Téléchargement du fichier %li sur %li à %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "La liste des modifications n'est pas encore disponible. Veuillez réessayer " "plus tard." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "La liste des modifications n'est pas encore disponible. Veuillez réessayer " "plus tard." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -888,134 +903,125 @@ msgstr "" "Échec du téléchargement de la liste des modifications. Veuillez vérifier que " "votre connexion Internet est activée." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Installation des mises à jour" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Mettre à jour vers la version la plus récente d'Ubuntu" +msgid "Normal updates" +msgstr "Installation des mises à jour" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Installation des mises à jour" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Impossible d'installer toutes les mises à jour disponibles" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s : \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Téléchargement de la liste des nouveautés…" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Vérifier" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Taille du téléchargement : %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Votre système est à jour" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format 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" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Veuillez patienter, cela peut prendre du temps." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "La mise à jour est terminée" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Rechercher les mises à jour disponibles" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nouvelle version : %s (taille : %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s : \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Votre distribution n'est plus supportée" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1025,17 +1031,17 @@ msgstr "" "devez passer à une version plus récente d'Ubuntu Linux. Rendez-vous sur " "http://www.ubuntu.com pour de plus amples informations à ce sujet." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1060,58 +1066,67 @@ msgstr "" "Gestionnaire de canaux logiciels »" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Maintenir votre système à jour" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Recherche de mises à jour pour votre système\n" +"Erreur lors de l'analyse du CD\n" "\n" -"Les mises à jour de logiciels peuvent corriger des erreurs, éliminer des " -"problèmes de sécurité et apporter de nouvelles fonctionalités." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Maintenir votre système à jour" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Démarrer la mise à jour ?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "_Annuler le téléchargement" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Changements" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Vérifier" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Vérifier les canaux logiciels pour de nouvelles mises à jour" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Description" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Notes de publication" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Afficher l'avancement des fichiers individuels" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Mises à jour des logiciels" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1119,32 +1134,37 @@ msgstr "" "Les mises à jour de logiciels peuvent corriger des erreurs, éliminer des " "problèmes de sécurité et apporter de nouvelles fonctionalités." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "Mettre à _jour" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Mettre à jour vers la version la plus récente d'Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Vérifier" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Reprendre la mise à jour" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Masquer ces informations à l'avenir" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Installer les mises à jour" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Changements" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1257,11 +1277,12 @@ msgid "_Install security updates without confirmation" msgstr "_Installer les mises à jour de sécurité sans confirmation" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1297,10 +1318,10 @@ msgstr "URI :" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Saisissez la ligne APT complète du canal logiciel que vous souhaitez " @@ -1360,8 +1381,9 @@ msgid "Check for new distribution releases" msgstr "Vérifier les nouvelles versions de la distribution" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1382,8 +1404,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "Enregistre la taille de la fenêtre du gestionnaire de mises à jour" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"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 des " @@ -1411,212 +1434,190 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Mises à jour pour Ubuntu 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Maintenu par la communauté (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Logiciel contribué" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu Dapper Drake 6.06" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Maintenu par la communauté (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Maintenu par la communauté (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-libre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-libre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "Logiciel restreint à l'export (USA)" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu Dapper Drake 6.06" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Mises à jour de sécurité pour Ubuntu 5.10" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Installation des mises à jour" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu Breezy Badger 5.10" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Supportés officiellement" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu Breezy Badger 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Mises à jour de sécurité" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Mises à jour de sécurité" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" -msgstr "Supporté officiellement" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "Supportés officiellement" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mises à jour pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "« Backports » pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu Breezy Badger 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Maintenu par la communauté (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-libre (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Certains logiciels ne sont plus supportés officiellement" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restreint" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Mises à jour de sécurité" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" @@ -1669,6 +1670,47 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" +#~ 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." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Mise à jour vers Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Mises à jour de sécurité pour Ubuntu 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Mettre à jour vers la version la plus récente d'Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Impossible d'installer toutes les mises à jour disponibles" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Recherche de mises à jour pour votre système\n" +#~ "\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 " @@ -1779,9 +1821,6 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "Sections" #~ msgstr "Catégories :" -#~ msgid "Check for available updates" -#~ msgstr "Rechercher les mises à jour disponibles" - #~ msgid "Sections:" #~ msgstr "Sections :" diff --git a/po/fur.po b/po/fur.po index 32880a22..20068c18 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-30 14:37+0000\n" "Last-Translator: marcuz \n" "Language-Team: Friulian \n" @@ -129,7 +129,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -142,79 +142,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -224,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,72 +331,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -406,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -438,7 +443,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -470,19 +475,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -492,28 +503,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -521,36 +532,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -584,11 +598,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -619,7 +633,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -740,8 +754,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -764,162 +778,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -935,84 +937,96 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1116,10 +1130,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1146,10 +1160,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1199,7 +1213,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1218,7 +1232,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1242,192 +1256,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/gl.po b/po/gl.po index 5d4b8dc1..6eb5c6e7 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:42+0000\n" "Last-Translator: Ignacio Casal Quinteiro \n" "Language-Team: Galego\n" @@ -137,7 +137,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -150,33 +150,33 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -185,23 +185,23 @@ msgstr "" "erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -211,24 +211,24 @@ msgstr "" "erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -238,15 +238,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -254,11 +254,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -271,11 +271,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,43 +284,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "Erro ao quitar a clave" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +329,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,73 +346,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "Xa hai outro xestor de paquetes en execución" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,20 +427,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "Actualización rematada" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -455,7 +460,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -488,19 +493,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -510,28 +521,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -539,36 +550,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +#, fuzzy +msgid "Your system is up-to-date" +msgstr "O seu sistema está actualizado!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -602,11 +617,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -637,7 +652,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -764,8 +779,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -789,16 +804,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Hai unha versión nova de Ubuntu dispoñible!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -807,154 +822,143 @@ msgstr "" "Fallou ao descargar o informe de cambios. Comprobe se ten algunha conexión " "activa." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Actualizacións de seguranza de Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "Instalando actualizacións..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:276 -#, fuzzy -msgid "Cannot install all available updates" -msgstr "Comprobando se hai actualizacións..." - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versión %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Descargando cambios" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "O seu sistema está actualizado!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Instalando actualizacións..." msgstr[1] "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Instalando actualizacións..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versión %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "A súa distribución xa non está soportada" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -970,86 +974,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Cambios" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Descrición" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Actualizacións de software" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "Instalando actualizacións..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Cambios" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1163,10 +1179,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1195,10 +1211,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Introduza a liña completa do repositorio APT que quere engadir\n" "Language-Team: Hebrew \n" @@ -134,9 +134,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -152,11 +152,11 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "אנא הכניסו תקליטור לכונן:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "חבילות פגומות" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -164,69 +164,75 @@ msgstr "" "במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " "באמצעות synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 +#, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" +"כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "לא ניתן להתקין את \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" +"במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " +"באמצעות synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -236,15 +242,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,11 +258,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -269,11 +275,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -282,32 +288,32 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "שגיאה במהלך העדכון" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -315,11 +321,11 @@ msgstr "" "הייתה בעיה בתהליך העידכון. בדרך כלל זוהי בעיית רשת, אנא בדקו את חיבור הרשת " "שלכם ונסו שנית." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "אין מספיק שטח בדיסק הקשיח" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -328,15 +334,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -345,74 +351,79 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. אנא בדקו את החיבור לאינטרנט או את מדיית ההתקנה ונסו שנית. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_דלג על השלב" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_הסר" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 #, fuzzy msgid "Restoring original system state" msgstr "מאתחל את המערכת" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,19 +435,19 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "משדרג" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." @@ -457,7 +468,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה." #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "נותרו %li דקות." @@ -490,19 +501,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -512,28 +529,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." -msgstr[0] "" -msgstr[1] "" +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "חבילה %s תשודרג." +msgstr[1] "%s חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "חבילה חדשה %s תותקן." msgstr[1] "%s חבילות חדשות יותקנו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "חבילה %s תשודרג." msgstr[1] "%s חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -541,37 +558,41 @@ msgid "" "You have to download a total of %s. " msgstr "יש להוריד %s בסה\"כ." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "השדרוג עשוי לקחת מספר שעות, ולא ניתן לבטלו בשלב מאוחר יותר." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "לא ניתן למצוא שדרוג זמין" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +#, fuzzy +msgid "Your system is up-to-date" +msgstr "המערכת שלך מעודכנת!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "המערכת כבר שודרגה." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "הסר %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "התקן %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "שדרג %s" @@ -605,11 +626,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -640,7 +661,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -764,10 +785,11 @@ msgid "Verfication failed" msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " -msgstr "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "אימות השדרוג נכשל. עלולה להיות בעיה עם הרשת או עם השרת. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -789,171 +811,160 @@ msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" msgid "Downloading file %li of %li with unknown speed" msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "גרסה חדשה של אובונטו זמינה!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "נכשל בהורדת השינויים. אנא בדוק אם החיבור לאינטרנט עובד." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "עדכוני אבטחה - אובונטו 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "משדרג את אובונטו" +msgid "Normal updates" +msgstr "מתקין עדכונים..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "לא ניתן להתקין את כל העדכונים הזמינים" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "גרסה %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "מוריד שינוייים" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "המערכת שלך מעודכנת!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "מתקין עדכונים..." msgstr[1] "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 #, fuzzy msgid "Update is complete" msgstr "ההורדה הושלמה" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "מתקין עדכונים..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "גרסה %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "ההפצה שלך כבר לא נתמכת, סליחה." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -969,86 +980,107 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" +"שגיאה בסריקת התקליטור\n" +"\n" +"%s" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "" +"שגיאה בסריקת התקליטור\n" +"\n" +"%s" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "שינויים" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "תיאור" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "עדכוני תוכנה" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_המשך בשידרוג" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "מתקין עדכונים..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "שינויים" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1163,10 +1195,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1195,10 +1227,10 @@ msgstr "כתובת:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "הכנס את שורת APT השלמה של המאגר שברצונך להוסיף\n" @@ -1258,7 +1290,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1277,7 +1309,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1302,217 +1334,194 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "עדכונים - אובונטו 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "מתוחזק ע\"י קהילה (Universe(" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "תוכנה שנתרמה" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "עדכונים - אובונטו 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "מתוחזק ע\"י קהילה (Universe(" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "לא-חופשי (Multiverse(" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "לא-חופשי (Multiverse(" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "תוכנה מוגבלת בארה\"ב" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "עדכונים - אובונטו 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "עדכוני אבטחה - אובונטו 5.10" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "מתקין עדכונים..." - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -#, fuzzy -msgid "Officially supported" -msgstr "נתמך רשמית" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy -msgid "Oficially supported" +msgid "Officially supported" msgstr "נתמך רשמית" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "לא-חופשי (Multiverse(" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "נתמך רשמית" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "זכויות יוצרים מגבילות" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "עדכונים - אובונטו 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "עדכונים - אובונטו 5.10" @@ -1566,6 +1575,27 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Could not find any upgrades" +#~ msgstr "לא ניתן למצוא שדרוג זמין" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "המערכת כבר שודרגה." + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "עדכוני אבטחה - אובונטו 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "משדרג את אובונטו" + +#~ msgid "Cannot install all available updates" +#~ msgstr "לא ניתן להתקין את כל העדכונים הזמינים" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "נתמך רשמית" + #~ msgid "About %li seconds remaining" #~ msgstr "נותרו %li שניות." diff --git a/po/hi.po b/po/hi.po index 0a14e9f3..7f13d7fd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Hindi \n" @@ -129,7 +129,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -142,79 +142,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -224,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,72 +331,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -406,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -438,7 +443,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -470,19 +475,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -492,28 +503,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -521,36 +532,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -584,11 +598,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -619,7 +633,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -740,8 +754,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -764,162 +778,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -935,84 +937,96 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1116,10 +1130,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1146,10 +1160,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1199,7 +1213,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1218,7 +1232,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1242,192 +1256,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/hr.po b/po/hr.po index 255a4694..bfd689eb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-24 20:54+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -130,9 +130,9 @@ msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -148,11 +148,11 @@ msgstr "Upišite ime za disk" msgid "Please insert a disc in the drive:" msgstr "Ubacite CD u uređaj:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Pokvareni paketi" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,23 +160,23 @@ msgstr "" "Vaš sistem sadrži pokvarene pakete koji nisu mogli biti popravljeni sa ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Ne mogu nadograditi potrebne meta-pakete" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -185,11 +185,11 @@ msgstr "" "prijavite ovo kao grešku. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "problem sa mrežom i trebali biste kasnije pokušati ponovo. Pogledajte popis " "neidentificiranih paketa." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Ne mogu instalirati '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,15 +213,16 @@ msgstr "" "grešku. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -230,12 +231,12 @@ msgstr "" " Prije nastavljanja, molim instalirajte jedan od gore navedenih paketa " "koristeći synaptic ili apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Preuzimanje nije uspjelo" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Čitam spremnik" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -261,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Nisam našao ispravan zrcalni poslužitelj" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -285,11 +286,11 @@ msgstr "" "Ako odaberete 'ne' nadogradnja će se prekinuti." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -302,11 +303,11 @@ msgstr "" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Podaci repozitorija neispravni" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -314,13 +315,14 @@ msgstr "" "Nadogradnja podataka repozitorija je rezultirala neispravnom datotekom. " "Molim, prijavite ovo kao bug." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -328,11 +330,11 @@ msgstr "" "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Greška prilikom nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -340,11 +342,11 @@ msgstr "" "Pojavio se problem prilikom nadogradnje. Obično se radi o mrežnom problemu, " "pa vas molim da provjerite vašu mrežu i pokušate ponovo." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -356,15 +358,15 @@ msgstr "" "koristeći 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -376,11 +378,11 @@ msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Obnavljanje je pokrenuto (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -388,17 +390,18 @@ msgstr "" "Nadogradnja se prekida. Molim provjerite vašu internet vezu ili " "instalacijski medij i pokušajte ponovo. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Neki paketi više nisu službeno podržani" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Ovi instalirani paketi više nisu službeno podržani i sada se nalaze u " "repozitoriju kojeg održava zajednica ('Universe').\n" @@ -406,23 +409,23 @@ msgstr "" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Preskoči ovaj korak" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Ukloni" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Greška prilikom čina" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -431,26 +434,31 @@ msgstr "" "više informacija. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Neispravni podaci paketa" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -463,19 +471,19 @@ msgstr "" "naći.\n" "Ovo upućuje na ozbiljnu grešku, molim prijavite ovo kao bug." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Pitam za potvrdu" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Nadograđujem" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." @@ -496,7 +504,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Otprilike je ostalo %li minuta" @@ -526,23 +534,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Zamijeniti konfiguracijsku datoteku\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Pojavila se ozbiljna greška" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -558,31 +572,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket će biti uklonjen." msgstr[1] "%s paketa će biti uklonjena." msgstr[2] "%s paketa će biti uklonjeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s novi paket će biti instaliran." msgstr[1] "%s nova paketa će biti instalirana." msgstr[2] "%s novih paketa će biti instalirano." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket će biti nadograđen." msgstr[1] "%s paketa će biti nadograđena." msgstr[2] "%s paketa će biti nadograđeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -590,7 +604,7 @@ msgid "" "You have to download a total of %s. " msgstr "Morate preuzeti ukupno %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -599,30 +613,33 @@ msgstr "" "Nadogradnja može potrajati nekoliko sati i ne može biti prekinuta niti u " "jednom trenutku." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Nisam mogao naći niti jednu nadogradnju" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Vaš sustav sadrži posljednje nadogradnje" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Vaš sustav je već nadograđen." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Ukloni %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instaliraj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" @@ -656,11 +673,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Potrebno je ponovno pokretanje računala" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -699,10 +716,8 @@ msgid "Start the upgrade?" msgstr "Pokrenuti nadogradnju?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Nadograđujem na Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -826,9 +841,10 @@ msgid "Verfication failed" msgstr "Provjera nije uspjela" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Provjera nadogradnje nije uspjela. Vjerovatno je problem u mreži ili sa " "poslužiteljem. " @@ -855,18 +871,18 @@ msgstr "Preuzimam datoteku %li od %li pri %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -874,99 +890,85 @@ msgstr "" "Preuzimanje popisa promjena nije uspjelo. Molim, provjerite svoju internet " "vezu." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Instaliraj nadogradnje" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Nadogradi na zadnju verziju Ubuntua" +msgid "Normal updates" +msgstr "_Instaliraj nadogradnje" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Instaliraj nadogradnje" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Ne mogu instalirati sve dostupne nadogradnje" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Verzija %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Preuzimam popis promjena..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "Pro_vjeri" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Veličina preuzimanja: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Vaš sustav sadrži posljednje nadogradnje" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -974,35 +976,40 @@ msgstr[0] "Možete instalirati %s nadogradnju" msgstr[1] "Možete instalirati %s nadogradnje" msgstr[2] "Možete instalirati %s nadogradnji" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Molim pričekajte, ovo može potrajati." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Nadogradnja je gotova" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_Instaliraj nadogradnje" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nova verzija: %s (Veličina: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Verzija %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Vaša distibucija više nije podržana" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1012,17 +1019,17 @@ msgstr "" "na noviju verziju Ubuntu Linuxa. Pogledajte na http://www.ubuntu.com za više " "detalja o nadogradnji." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Popis programa je oštećen" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1045,58 +1052,67 @@ msgstr "" "ovo ponašanje u \"Sustav\" -> \"Administacija\" -> \"Postavke nadogradnje\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Održavajte vaš sustav nadograđenim" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Ispitujem vaš sustav\n" +"Greška prilikom očitavanja CD-a\n" "\n" -"Nadogradnje programa popravljaju greške, uklanjaju sigurnosne propuste i " -"donose nove mogućnosti." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Održavajte vaš sustav nadograđenim" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Pokrenuti nadogradnju?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Prekini _preuzimanje" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Promjene" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "P_rovjeri" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Provjeri repozitorije za nove nadogradnje" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Opis" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Bilješke izdanja" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Prikaži napredak pojedinih datoteka" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Nadogradnje programa" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1104,32 +1120,37 @@ msgstr "" "Nadogradnje programa popravljaju greške, uklanjaju sigurnosne propuste i " "donose nove mogućnosti." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "Na_dogradnja" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Nadogradi na zadnju verziju Ubuntua" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "Pro_vjeri" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Nastavi nadogradnju" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "Ubuduće _sakrij ovu informaciju" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Instaliraj nadogradnje" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Promjene" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1239,11 +1260,12 @@ msgid "_Install security updates without confirmation" msgstr "_Instaliraj sigurnosne nadogradnje bez potvrde" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1277,10 +1299,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Unesite kompletnu APT liniju repozitorija koji želite dodatiUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Nadograđujem na Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 sigurnosne nadogradnje" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Nadogradi na zadnju verziju Ubuntua" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Ne mogu instalirati sve dostupne nadogradnje" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Ispitujem vaš sustav\n" +#~ "\n" +#~ "Nadogradnje programa popravljaju greške, uklanjaju sigurnosne propuste i " +#~ "donose nove mogućnosti." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Službeno podržani" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/hu.po b/po/hu.po index 4e4bda92..7667e36b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-28 21:22+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -129,9 +129,9 @@ msgstr "" "Az Ön által kijelölt kulcs nem távolítható el. Kérem, jelentse ezt hibaként." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,11 +147,11 @@ msgstr "Kérem, adja meg a lemez nevét" msgid "Please insert a disc in the drive:" msgstr "Kérem, helyezzen be egy lemezt a meghajtóba:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Törött csomagok" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,23 +160,23 @@ msgstr "" "javíthatóak. Kérem, először javítsa ki őket a synaptic vagy az apt-get " "segítségével." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "A szükséges meta-csomagok nem frissíthetőek" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -185,11 +185,11 @@ msgstr "" "jelentse ezt hibaként. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -199,27 +199,28 @@ msgstr "" "hálózati probléma okozza, ezért érdemes később újra megpróbálni. Az alábbi " "lista a hitelesíthetetlen csomagokat tartalmazza." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "'%s' nem telepíthető" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -229,12 +230,12 @@ msgstr "" " Kérem, előbb telepítse a fenti csomagok egyikét a synaptic vagy az apt-get " "használatával." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "A letöltés meghiúsult" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +245,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Gyorsítótár beolvasása" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +261,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "nem található érvényes tükör" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -285,11 +286,11 @@ msgstr "" "A \"Nem\" kiválasztása megszakítja a frissítést." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +304,11 @@ msgstr "" "Kíván alapértelmezett bejegyzéseket adni a következőhöz: %s? Ha a Nem " "gombott választja, a frissítés félbeszakad." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Érvénytelen csomagtároló információ" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,13 +316,14 @@ msgstr "" "A csomagtároló információ frissítése hibás fájlt eredményezett. Kérem, " "jelentse ezt hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "A külső források letiltva" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -329,11 +331,11 @@ msgstr "" "a frissítés után a Szoftvertulajdonságok eszközzel, vagy a Synaptic " "csomagkezelővel." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Hiba történt a frissítés közben" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +343,11 @@ msgstr "" "Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. " "Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Nincs elég szabad hely a merevlemezen" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +359,15 @@ msgstr "" "fájljait a \"sudo apt-get clean\" parancs kiadásával." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +379,11 @@ msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " "állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,17 +391,18 @@ msgstr "" "A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy " "a telepítő médiát és próbálja újra. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Néhány szoftver már nincs hivatalosan támogatva" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Ezek a telepített csomagok már nincsenek hivatalosan támogatva, csak a " "közösség által (\"universe\").\n" @@ -407,23 +410,23 @@ msgstr "" "Ha nincs engedélyezve a \"universe\" tároló, akkor ezek a csomagok a " "következő lépésben ki lesznek jelölve eltávolításra. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "Ezen lé_pés kihagyása" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Eltávolítás" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,26 +435,31 @@ msgstr "" "információkat tartalmaz a hibára vonatkozóan. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Csomagtároló információ frissítése" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -464,19 +472,19 @@ msgstr "" "található többé.\n" "Ez egy komoly problémát jelez, jelentse hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Megerősítés kérése" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Frissítés folyamatban" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." @@ -497,7 +505,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Kb. %li perc van hátra" @@ -527,24 +535,30 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Lecseréli a(z)\n" "\"%s\"\n" "konfigurációs fájlt?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "A 'diff' parancs nem található" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Végzetes hiba történt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -560,25 +574,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s csomag el lesz távolítva." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s új csomag kerül telepítésre." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s csomag frissítve lesz." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -586,7 +600,7 @@ msgid "" "You have to download a total of %s. " msgstr "Összes letöltendő adatmennyiség: %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -595,32 +609,35 @@ msgstr "" "A frissítés több órát is igénybe vehet és a későbbiek során nem lehet " "bármikor megszakítani." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Nincs elérhető frissítés" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "A rendszere naprakész" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Az Ön rendszere már frissítve lett." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s eltávolítása" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s telepítése" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s frissítése" @@ -654,11 +671,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Újraindítás szükséges" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -695,11 +712,8 @@ msgid "Start the upgrade?" msgstr "Megkezdi a frissítést?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Frissítés az Ubuntu 6.06 LTS " -"változatra" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -824,9 +838,10 @@ msgid "Verfication failed" msgstr "Az ellenőrzés meghiúsult" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "A frissítés ellenőrzése meghiúsult. Probléma lehet a hálózattal vagy a " "kiszolgálóval. " @@ -853,16 +868,16 @@ msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" msgid "Downloading file %li of %li with unknown speed" msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -870,133 +885,124 @@ msgstr "" "A módosítások listájának letöltése meghiúsult. Ellenőrizze az " "internetkapcsolatát." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 biztonsági frissítések" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Telepítés" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Frissítés az Ubuntu legújabb változatára" +msgid "Normal updates" +msgstr "_Telepítés" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Telepítés" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Nem telepíthető minden rendelkezésre álló frissítés" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "%s verzió: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Módosítások listájának letöltése..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Ellenőrzés" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Letöltés mérete: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "A rendszere naprakész" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s frissítést telepíthet" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Kis türelmet, ez eltarthat egy ideig." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "A frissítés befejeződött" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_Telepítés" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Új verzió: %s (Méret: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "%s verzió: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "A terjesztés már nem támogatott" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1006,17 +1012,17 @@ msgstr "" "Frissítsen az Ubuntu Linux egy újabb változatára. A frissítéssel kapcsolatos " "információkat az http://www.ubuntu.com weboldalon talál." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "A szoftverindex sérült" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1041,58 +1047,67 @@ msgstr "" "menüpont alatt változtathatja meg." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Tartsa naprakészen a rendszerét" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"A rendszer elemzése\n" +"Hiba történt a CD beolvasása közben\n" "\n" -"A szoftverfrissítések programhibákat javítanak, megszüntetik a biztonsági " -"sebezhetőségeket és új szolgáltatásokat biztosítanak." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Tartsa naprakészen a rendszerét" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Megkezdi a frissítést?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Letöltés _megszakítása" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Módosítások" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Ellenőrzés" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Frissítések keresése a szoftvercsatornákon" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Leírás" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Kiadási megjegyzések" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Egyes fájlok állapotának mutatása" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Szoftverfrissítések" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1100,32 +1115,37 @@ msgstr "" "A szoftverfrissítések kijavítják a programhibákat, biztonsági " "sebezhetőségeket és új szolgáltatásokat biztosítanak." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Frissítés" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Frissítés az Ubuntu legújabb változatára" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Ellenőrzés" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "Frissítés _folytatása" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_A jövőben ne mutassa ezt az információt" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Telepítés" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Módosítások" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1235,11 +1255,12 @@ msgid "_Install security updates without confirmation" msgstr "_Biztonsági frissítések telepítése megerősítés nélkül" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1273,10 +1294,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Adja meg a felvenni kívánt csatorna teljes APT sorát\n" @@ -1333,8 +1354,9 @@ msgid "Check for new distribution releases" msgstr "Új disztribúciókiadások keresése" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1355,8 +1377,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "A frissítéskezelő ablak méretének tárolása" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Eltárolja a változások listáját és a megnevezéseket tartalmazó lista " @@ -1384,212 +1407,189 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 frissítések" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Közösségi karbantartású (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Nem-szabad (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Közösségi karbantartású (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Közösségi karbantartású (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Nem-szabad (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Nem-szabad (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 biztonsági frissítések" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "_Telepítés" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Hivatalosan támogatott" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Hivatalosan támogatott" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Közösségi karbantartású (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nem-szabad (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Néhány szoftver már nincs hivatalosan támogatva" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Szerzői jogi korlátozás alatt" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 frissítések" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" @@ -1640,6 +1640,48 @@ msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Néhány szoftver már nincs hivatalosan támogatva" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Nincs elérhető frissítés" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Az Ön rendszere már frissítve lett." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Frissítés az Ubuntu 6.06 LTS " +#~ "változatra" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 biztonsági frissítések" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Frissítés az Ubuntu legújabb változatára" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Nem telepíthető minden rendelkezésre álló frissítés" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "A rendszer elemzése\n" +#~ "\n" +#~ "A szoftverfrissítések programhibákat javítanak, megszüntetik a biztonsági " +#~ "sebezhetőségeket és új szolgáltatásokat biztosítanak." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Hivatalosan támogatott" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/id.po b/po/id.po index 82b44e53..de7b1d5a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-28 18:46+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -129,9 +129,9 @@ msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,11 +147,11 @@ msgstr "Silakan masukkan nama untuk cakram" msgid "Please insert a disc in the drive:" msgstr "Silakan masukan cakram ke dalam penggerak" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Paket rusak" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,23 +160,23 @@ msgstr "" "perangkat lunak ini. Silakan perbaiki terlebih dahulu dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan hal ini." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -185,11 +185,11 @@ msgstr "" "bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "mungkin karena masalah pada jaringan. Anda dapat mencobanya beberapa saat " "lagi. Lihat senarai dari paket yang belum terbukti keabsahnya dibawah ini." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat menginstal '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,15 +213,16 @@ msgstr "" "ini sebagai bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -231,12 +232,12 @@ msgstr "" " Silakan instal dahulu salah satu paket di atas dengan menggunakan synaptic " "atau apt-get sebelum melanjutkan." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Gagal untuk fetch" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +247,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Membaca cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +263,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Tidak menemukan mirror yang valid" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +287,11 @@ msgstr "" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Membuat sumber baku?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +304,11 @@ msgstr "" "Haruskah entri baku untuk '%s' ditambahkan? Jika anda pilih 'No' " "pemutakhiran akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Informasi gudang tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,13 +316,14 @@ msgstr "" "Meng-upgrade informasi gudang berakhir di dalam berkas yang tidak benar. " "Silakan laporkan ini sebagai bug." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Sumber dari pihak ketiga dilumpukan" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -329,11 +331,11 @@ msgstr "" "dapat mengaktifkan kembali setelah upgrade dengan alat 'software-properties' " "atau dengan synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Kesalahan pada waktu pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +343,11 @@ msgstr "" "Terjadi masalah pada waktu pemutakhiran. Ini biasanya karena masalah " "jaringan, silakan periksa koneksi jaringan anda dan ulangi." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Kapasitas cakram tidak mencukupi" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +359,15 @@ msgstr "" "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +379,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Sistem anda dapat menjadi tidak dapat " "digunakan. Perbaikan sedang berjalan (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,17 +391,18 @@ msgstr "" "Upgrade dibatalkan sekarang. Silakan periksa koneksi internet anda atau " "media instalasi dan coba lagi nanti. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Paket terinstal ini tidak lagi mendapat sokongan resmi, dan sekarang hanya " "disokong melalui komunitas ('universe').\n" @@ -407,23 +410,23 @@ msgstr "" "Jika anda tidak mengaktifkan komponen 'universe' paket ini akan diajurkan " "untuk penghapusan dalam langkah selanjutnya. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Lewati Langkah Ini" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Hapus" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,26 +435,31 @@ msgstr "" "bawah untuk informasi lebih lanjut. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Memeriksa manajer paket" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Informasi paket tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -465,19 +473,19 @@ msgstr "" "Ini mengindikasikan adanya kesalahan serius, silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Menanyakan konfigurasi" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Meng-upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." @@ -498,7 +506,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Mengunduh berkas %li dari %li pada %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Sekitar %li menit lagi" @@ -528,23 +536,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Mengganti berkas konfigurasi\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak dapat ditemukan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Terjadi kesalahan fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -559,25 +573,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -585,7 +599,7 @@ msgid "" "You have to download a total of %s. " msgstr "Anda harus mengunduh sebanyak %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -594,31 +608,34 @@ msgstr "" "Upgrade membutuhkan waktu beberapa jam dan tidak dapat dibatalkan setelah " "itu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Tidak dapat menemukan upgrade apapun" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Sistem anda telah up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Sistem anda telah diupgrade" +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Hapus %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instal %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -652,11 +669,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Diperlukan reboot" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -693,10 +710,8 @@ msgid "Start the upgrade?" msgstr "Mulai upgrade?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Mengupgrade ke Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -819,9 +834,10 @@ msgid "Verfication failed" msgstr "Verifikasi gagal" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Gagal memeriksa upgrade. Mungkin terjadi masalah dengan jaringan atau dengan " "server. " @@ -848,16 +864,16 @@ msgstr "Mengunduh berkas %li dari %li dengan %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Senarai dari perubahan belum tersedia. Silakan coba lagi nanti." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Senarai dari perubahan belum tersedia. Silakan coba lagi nanti." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -865,133 +881,124 @@ msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Pemutakhiran lewat Internet" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Upgrade ke versi Ubuntu terakhir" +msgid "Normal updates" +msgstr "_Instal Update" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Tidak dapat menginstal semua pemutakhiran yang tersedia" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versi %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Mengunduh senarai dari perubahan..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Periksa" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Ukuran unduh: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Sistem anda telah up-to-date" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Anda dapat instal %s pemutakhiran" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Silakan tunggu, hal ini membutuhkan beberapa waktu." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Pemutakhiran selesai" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_Instal Update" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versi baru: %s (Ukuran: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versi %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Distribusi anda tidak disokong lagi" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1001,17 +1008,17 @@ msgstr "" "lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." "ubuntu.com untuk informasi lebih lanjut." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1035,58 +1042,67 @@ msgstr "" "Properties\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Memelihara sistem anda up-to-date" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Menguji sistem anda\n" +"Kesalahan memindai CD\n" "\n" -"Pemutakhiran perangkat lunak memperbaiki kesalahan, melenyapkan kelemahan " -"keamanan dan menyediakan fitur baru." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Memelihara sistem anda up-to-date" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Mulai upgrade?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Batalkan _Unduh" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Perubahan" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Peri_ksa" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Periksa kanal perangkal lunak untuk pemutakhiran terbaru" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Deskripsi" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Catatan Luncuran" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Tampilkan kemajuan dari berkas tunggal" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Perangkat Lunak Mutakhir" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1094,32 +1110,37 @@ msgstr "" "Perangkat lunak nutakhir memperbaiki kesalahan, menyingkirkan kelemahan " "keamanan dan menyediakan fitur baru." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "U_pgrade" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Upgrade ke versi Ubuntu terakhir" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Periksa" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Lanjutkan Upgrade" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Sembunyikan informasi ini di masa depan" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Instal Update" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Perubahan" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1229,11 +1250,12 @@ msgid "_Install security updates without confirmation" msgstr "_Instal pemutakhiran keamanan tanpa perlu konfirmasi" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1267,10 +1289,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Masukkan baris lengkap APT dari kanal yang ingin anda tambah Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Mengupgrade ke Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Pemutakhiran lewat Internet" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Upgrade ke versi Ubuntu terakhir" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Tidak dapat menginstal semua pemutakhiran yang tersedia" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Menguji sistem anda\n" +#~ "\n" +#~ "Pemutakhiran perangkat lunak memperbaiki kesalahan, melenyapkan kelemahan " +#~ "keamanan dan menyediakan fitur baru." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Resmi disokong" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/it.po b/po/it.po index b38a79e6..73c6a132 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-24 14:01+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -135,9 +135,9 @@ msgstr "" "bug." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -153,11 +153,11 @@ msgstr "Inserire un nome per il disco" msgid "Please insert a disc in the drive:" msgstr "Inserire un disco nell'unità:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Pacchetti non integri" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -166,23 +166,23 @@ msgstr "" "con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" "\" per risolvere il probelma." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Impossibile aggiornare i meta-pacchetti richiesti" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -191,11 +191,11 @@ msgstr "" "dell'aggiornamento. Notificare questo evento come bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -205,12 +205,12 @@ msgstr "" "un problema di rete passeggero, riprovare più tardi. Segue una lista di " "pacchetti non autenticati." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Impossibile installare \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -219,15 +219,16 @@ msgstr "" "evento come bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -237,12 +238,12 @@ msgstr "" " Prima di procedere, usare synaptic o apt-get per installare uno dei " "pacchetti sopra menzionati." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Prelievo fallito" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -252,15 +253,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Lettura della cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +269,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Non è stato trovato alcun mirror valido" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -293,11 +294,11 @@ msgstr "" "Scegliendo di no, l'aggiornamento verrà annullato." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -311,11 +312,11 @@ msgstr "" "Aggiungere le voci predefinite per «%s»? Selezionando «No», l'aggiornamento " "verrà annullato." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Informazioni sul repository non valide" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -323,13 +324,14 @@ msgstr "" "L'aggiornamento delle informazioni sul repository ha generato un file non " "valido. Notificare questo evento come bug." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Sorgenti di terze parti disabilitate" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -337,11 +339,11 @@ msgstr "" "list». È possibilie abilitarle di nuovo dopo l'aggiornamento con lo " "strumento «software-properties» o con synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Errore durante l'aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +351,11 @@ msgstr "" "Si è verificato un problema durante l'aggiornamento. Solitamente si tratta " "di problemi di rete, controllare la connessione di rete e riprovare." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Spazio libero su disco insufficiente" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +367,15 @@ msgstr "" "usando \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Impossibile installare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,11 +388,11 @@ msgstr "" "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" "a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,17 +400,18 @@ msgstr "" "Interruzione immediata dell'aggiornamento. Controllare la connessione a " "internet o il supporto di installazione e riprovare. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Software non più supportato ufficialmente" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Questi pacchetti, pur essendo installati, non sono più supportati " "ufficialmente; ora sono semplicemente mantenuti dalla comunità " @@ -417,23 +420,23 @@ msgstr "" "Se non è abilitato il repository «universe», verrà suggerita la rimozione di " "questi pacchetti al prossimo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Salta questo passo" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Rimuovi" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Errore durante il commit" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,26 +445,31 @@ msgstr "" "seguente per maggiori informazioni. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Ripristino stato originale del sistema" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Controllo gestore dei pacchetti" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Aggiornamento delle informazione sui repository" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -474,19 +482,19 @@ msgstr "" "trovare il pacchetto essenziale «%s».\n" "Ciò indica un errore grave, segnalare questo evento come un bug." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Richiesta di conferma" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." @@ -507,7 +515,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Scaricamento del file %li di %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Circa %li minuti rimanenti" @@ -537,23 +545,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Sostituire il file di configurazione\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Il comando \"diff\" non è stato trovato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Si è verificato un errore fatale" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -569,28 +583,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s pacchetto sta per essere rimosso." msgstr[1] "%s pacchetti stanno per essere rimossi." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s nuovo pacchetto sta per essere installato." msgstr[1] "%s nuovi pacchetti stanno per essere installati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pacchetto sta per essere aggiornato." msgstr[1] "%s pacchetti stanno per essere aggiornati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -598,7 +612,7 @@ msgid "" "You have to download a total of %s. " msgstr "È necessario scaricare un totale di %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -607,32 +621,35 @@ msgstr "" "L'aggiornamento può richiedere diverse ore e non può essere annullato in " "nessun momento successivo." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Chiudere tutte le applicazioni e i documenti aperti per prevenire la perdita " "di dati." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Impossibile trovare aggiornamenti" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Il sistema è aggiornato!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Il sistema è già stato aggiornato." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Rimuovere %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installare %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Aggiornare %s" @@ -666,11 +683,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Riavvio richiesto" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" @@ -705,10 +722,8 @@ msgid "Start the upgrade?" msgstr "Avviare l'aggiornamento?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Aggiornamento a Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -836,9 +851,10 @@ msgid "Verfication failed" msgstr "Verifica fallita" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Fallita la verifica dell'aggiornamento. Potrebbe dipendere da un problema " "con la connessione di rete o con il server. " @@ -865,18 +881,18 @@ msgstr "Scaricamento del file %li di %li a %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Scaricamento del file %li di %li a velocità sconosciuta" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -884,134 +900,125 @@ msgstr "" "Fallito lo scaricamento dell'elenco dei cambiamenti. Verificare la " "connessione ad Internet." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Installazione degli aggiornamenti" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Aggiorna all'ultima versione di Ubuntu" +msgid "Normal updates" +msgstr "Installazione degli aggiornamenti" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Installazione degli aggiornamenti" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Impossibile installare tutti gli aggiornamenti disponibili" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versione %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Scaricamento dell'elenco dei cambiamenti..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Verifica" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Dati da scaricare: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Il sistema è aggiornato!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "È possibile installare %s aggiornamento" msgstr[1] "È possibile installare %s aggiornamenti" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Attendere, l'operazione potrebbere richiedere del tempo." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Aggiornamento completato" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Verifica degli aggiornamenti..." + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nuova versione: %s (Dimensione: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versione %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "La distribuzione in uso non è più supportata" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1021,17 +1028,17 @@ msgstr "" "versione più aggiornata di Ubuntu Linux. Per maggiori informazioni " "consultare http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "L'indice dei programmi è rovinato" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1055,58 +1062,67 @@ msgstr "" "\"Amministrazione\" -> \"Proprietà software\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Mantenere aggiornato il sistema" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Esame del sistema\n" +"Errore nella scansione del CD\n" "\n" -"Gli aggiornamenti software correggono errori, eliminano vulnerabilità di " -"sicurezza ed aggiungono nuove funzionalità." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Mantenere aggiornato il sistema" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Avviare l'aggiornamento?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Annulla _scaricamento" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Cambiamenti" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Verifica" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Verifica la presenza di nuovi aggiornamenti nei canali software" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Descrizione" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Note di rilascio" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Mostra l'avanzamento dei singoli file" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Aggiornamenti software" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1114,32 +1130,37 @@ msgstr "" "Gli aggiornamenti software correggono errori, eliminano vulnerabilità di " "sicurezza ed aggiungono nuove funzionalità." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "A_ggiorna" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Aggiorna all'ultima versione di Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Verifica" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Riprendi aggiornamento" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Non mostrare più queste informazioni" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "I_nstalla aggiornamenti" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Cambiamenti" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1250,11 +1271,12 @@ msgid "_Install security updates without confirmation" msgstr "I_nstallare gli aggiornamenti di sicurezza senza richiedere conferma" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1288,10 +1310,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Inserire la riga APT completa del canale che si vuole aggiungereUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Aggiornamento a Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Aggiorna all'ultima versione di Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Impossibile installare tutti gli aggiornamenti disponibili" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Esame del sistema\n" +#~ "\n" +#~ "Gli aggiornamenti software correggono errori, eliminano vulnerabilità di " +#~ "sicurezza ed aggiungono nuove funzionalità." + +#~ msgid "Oficially supported" +#~ msgstr "Supportato ufficialmente" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1837,10 +1880,6 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Sections" #~ msgstr "Sezioni" -#, fuzzy -#~ msgid "Check for available updates" -#~ msgstr "Verifica degli aggiornamenti..." - #~ msgid "Sections:" #~ msgstr "Sezioni:" diff --git a/po/ja.po b/po/ja.po index 56e3fa45..0a21dcc4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-24 07:06+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -132,9 +132,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -150,11 +150,11 @@ msgstr "ディスク名を入力してください" msgid "Please insert a disc in the drive:" msgstr "ディスクをドライブに挿入してください:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "壊れたパッケージ" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -162,34 +162,34 @@ msgstr "" "システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" "す。 Synaptic や apt-get を使って最初に修正してください。" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "要求されたメタパッケージがアップグレードできません" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" "ジが表示されます。" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "'%s' がインストールできません" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,15 +212,16 @@ msgstr "" "要求されたパッケージのインストールができません。バグとして報告してください。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -230,12 +231,12 @@ msgstr "" "開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインス" "トールしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "取得に失敗しました" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "キャッシュを読み込み中" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -261,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "正しいミラーが見つかりません" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -284,11 +285,11 @@ msgstr "" "キャンセルします。" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -301,11 +302,11 @@ msgstr "" "'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" "キャンセルします。" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "リポジトリ情報が無効です" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -313,13 +314,14 @@ msgstr "" "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" "告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "公式ではないソースが無効になりました" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -327,11 +329,11 @@ msgstr "" "アップグレード後に 'ソフトウェアのプロパティ' ツールか Synaptic を使用してく" "ださい。" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "アップデート中にエラー発生" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -339,11 +341,11 @@ msgstr "" "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" "ネットワーク接続をチェックし、再びアップデートしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "ディスクの空き領域が足りません" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -355,15 +357,15 @@ msgstr "" "た一時パッケージを削除してください。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -375,11 +377,11 @@ msgstr "" "アップグレードを中断しました。システムが使用できない状態になっている可能性が" "あります。ただいま修正を実行中です (dpkg --configure -a)。" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "アップグレードをダウンロードできません" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -387,17 +389,18 @@ msgstr "" "アップグレードを中断しました。インターネット接続またはインストールメディア" "(CD-ROMなど)をチェックし。再試行してください。 " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "いくつかのソフトウェアはもう公式にサポートされません" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "インストールされているこれらのパッケージは、もう公式にサポートされておらず、" "コミュニティサポートになっています('universe')。\n" @@ -405,23 +408,23 @@ msgstr "" "'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" "提案します。 " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "不要なパッケージを削除しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "このステップをスキップ(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "削除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "コミット中にエラー" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -430,26 +433,31 @@ msgstr "" "ください。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "システムを元に戻し中" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "パッケージマネージャをチェック中" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "リポジトリ情報をアップデート" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "無効なパッケージ情報" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -461,19 +469,19 @@ msgstr "" "パッケージ情報のアップデートのあと、重要パッケージ '%s' が見つかりません。\n" "このメッセージは深刻なエラーです。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "確認する" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "アップグレード中" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索する" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" @@ -494,7 +502,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "およそ残り %li 分" @@ -524,23 +532,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "設定ファイル %s\n" "を置き換えますか?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "'diff' コマンドが見つかりません" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "重大なエラーが発生しました" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -555,25 +569,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s つのパッケージが削除されます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s·つのパッケージがインストールされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s·つのパッケージがアップグレードされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -581,39 +595,42 @@ msgid "" "You have to download a total of %s. " msgstr "全部で %s つのパッケージをダウンロードする必要があります。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "アップグレードには数時間かかり、今後一切キャンセルはできません。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" "さい。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "アップグレードが見つかりません" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "システムは最新の状態です!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "システムはすでに最新の状態です。" +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "削除されるパッケージ: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "インストール %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "アップグレード %s" @@ -647,11 +664,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "再起動してください" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "アップグレードが終了しました。再起動が必要ですが、すぐに実行しますか?" @@ -687,11 +704,8 @@ msgid "Start the upgrade?" msgstr "アップグレードを開始しますか?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Ubuntu 6.06 LTS にアップデート中" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -813,9 +827,10 @@ msgid "Verfication failed" msgstr "検証に失敗しました" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "アップグレードの検証に失敗しました。おそらくネットワークまたはサーバの問題で" "す。 " @@ -842,16 +857,16 @@ msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" msgid "Downloading file %li of %li with unknown speed" msgstr "ダウンロード中: 速度不明で %li のうち %li" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "変更点がまだ取得できません。あとで試してください。" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "変更点がまだ取得できません。あとで試してください。" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -859,133 +874,124 @@ msgstr "" "変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" "い。" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "アップデートをインストール中" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Ubuntu の最新バージョンにアップグレード" +msgid "Normal updates" +msgstr "アップデートをインストール中" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "アップデートをインストール中" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "すべてのアップデートをインストールすることができません" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "バージョン %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "変更点を取得中..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "チェック(_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "ダウンロードサイズ: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "システムは最新の状態です!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 個のアップデートがインストールされます" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "しばらくお待ちください。少々時間がかかります。" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "アップデートが完了しました" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "インストールできるアップデートをチェック" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新しいバージョン: %s (サイズ: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "バージョン %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "このディストリビューションはすでにサポート対象外です" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -995,17 +1001,17 @@ msgstr "" "Ubuntu Linux にアップグレードしてください。\r\n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1029,58 +1035,67 @@ msgstr "" "Properties)\" で行います。" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "システムを最新の状態にする" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"システムを解析中です\n" +"CDスキャン中のエラー\n" "\n" -"ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機能" -"を提供します。" +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "システムを最新の状態にする" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "アップグレードを開始しますか?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "ダウンロードをキャンセル(_D)" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "変更点" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "再チェック(_K)" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "新しいアップデートの調査のためにソフトウェアチャンネルをチェックします" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "説明" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "リリースノート" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "個々のファイルの進捗を表示" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "ソフトウェアのアップデート" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1088,32 +1103,37 @@ msgstr "" "ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能" "を提供します。" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "アップグレード(_P)" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Ubuntu の最新バージョンにアップグレード" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "チェック(_C)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "アップグレードを再開する(_R)" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "今後この情報を隠す(_H)" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "アップデートをインストール(_I)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "変更点" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1224,11 +1244,12 @@ msgid "_Install security updates without confirmation" msgstr "確認せずにセキュリティアップデートをインストール(_I)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1262,10 +1283,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "追加したい完全な APT line を入力してください。\n" @@ -1324,8 +1345,9 @@ msgid "Check for new distribution releases" msgstr "新しいディストリビューションのリリースをチェックする" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1345,8 +1367,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "アップデートマネージャのダイアログサイズを復元" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "変更点と概要のリストを含んだ欄の状態を復元する" @@ -1372,212 +1395,190 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 アップデート" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "コミュニティによるメンテナンス (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "寄贈ソフトウェア" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "コミュニティによるメンテナンス (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "コミュニティによるメンテナンス (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "非フリー (Multiuniverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非フリー (Multiuniverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 セキュリティアップデート" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "アップデートをインストール中" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "公式サポート" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 アップデート" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 バックポート" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "公式サポート" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 アップデート" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 バックポート" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·5.10·'Breezy·Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "コミュニティによるメンテナンス (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非フリー (Multiuniverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "いくつかのソフトウェアはもう公式にサポートされません" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "限定的な著作権(Restricted)" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 セキュリティアップデート" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 アップデート" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 バックポート" @@ -1628,6 +1629,47 @@ msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" +#~ msgid "Some software no longer officially supported" +#~ msgstr "いくつかのソフトウェアはもう公式にサポートされません" + +#~ msgid "Could not find any upgrades" +#~ msgstr "アップグレードが見つかりません" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "システムはすでに最新の状態です。" + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Ubuntu 6.06 LTS にアップデート中" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 セキュリティアップデート" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Ubuntu の最新バージョンにアップグレード" + +#~ msgid "Cannot install all available updates" +#~ msgstr "すべてのアップデートをインストールすることができません" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "システムを解析中です\n" +#~ "\n" +#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機" +#~ "能を提供します。" + +#~ msgid "Oficially supported" +#~ msgstr "公式サポート" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1769,9 +1811,6 @@ msgstr "DFSGに適合しないソフトウェア" #~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去" #~ "し、新機能を追加します。" -#~ msgid "Check for available updates" -#~ msgstr "インストールできるアップデートをチェック" - #~ msgid "Sections:" #~ msgstr "セクション:" diff --git a/po/ka.po b/po/ka.po index b5602a0e..152b2305 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:19+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -133,9 +133,9 @@ msgstr "" "ამორჩეული გასაღების წაშლა ვე რმოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -151,11 +151,11 @@ msgstr "შეიყვანეთ დისკის სახელი" msgid "Please insert a disc in the drive:" msgstr "მოათავსეთ დისკი დისკწამყვანში:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "გაფუჭებული პაკეტები" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -164,25 +164,25 @@ msgstr "" "პროგრამით. ჯერ გამართეთ გაფუჭებული პაკეტები synaptic ან apt-get პროგრამით და " "შემდეგ გააგრძელეთ." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "საჭჳრო მეტა-პაკეტების განახლება ვერ მოხერხდა" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 #, fuzzy msgid "A essential package would have to be removed" msgstr "A არსებითი -სკენ" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 #, fuzzy msgid "Could not calculate the upgrade" msgstr "არა" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -191,11 +191,11 @@ msgstr "" "ხარვეზი. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -205,40 +205,40 @@ msgstr "" "ბრაკი. იქნებ მოგვიანბით კიდევ ერთხელ სცადოთ. ქვევით იხილეთ არა-" "ავთენთიფიცერული პაკეტების სია." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "'%s' ვერ დაყენდა" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ გამოვიცანით" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "არა შეიცავს a ან და არა -სკენ ვერსია ის\n" " ის ან." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "ვერ განხორციელდა -სკენ" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +248,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "მიმდინარეობს ქეშის წაკითხვა" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "არავითარი გამოსადეგი სერვერის ანარეკლი" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,12 +281,12 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 #, fuzzy msgid "Generate default sources?" msgstr "გენერაცია ნაგულისხმევი?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,11 +295,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "რეპოზიტორიების ინფორმაცია არასწორეა" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -307,24 +307,24 @@ msgstr "" "რეპოზიტორიების განახლების შედეგად დაზიანდა ფაილი. შეატყობინეთ ეს როგორხ " "ხარვეზი." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 #, fuzzy msgid "Third party sources disabled" msgstr "გამორთული" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 #, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "-ში სია გამორთული თქვენ პარამეტრები ან." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "განახლებისას მოხდა შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -332,11 +332,11 @@ msgstr "" "განახლებისას მოხდა შეცდომა. ეს როგროც წესი არის კავშირის პრობლემა, შეამოწმეთ " "თქვენი კავშირი და ცადეთ კიდევ ერთხელ." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "დისკზე არ არის საკმარისი თავისუფალი ადგილი" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,16 +345,16 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 #, fuzzy msgid "Could not install the upgrades" msgstr "არა" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -364,51 +364,50 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "ახლა -ში A a." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 #, fuzzy msgid "Could not download the upgrades" msgstr "არა" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "ახლა ან და " -#: ../DistUpgrade/DistUpgradeControler.py:488 -#, fuzzy -msgid "Some software no longer officially supported" -msgstr "არა" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 #, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "არა და ახლა n t ჩართული -თვის -ში ნაბიჯი " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "წავშალო მოძველებული პაკეტები?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "ნაბიჯის გა_მოტოვება" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_წაშლა" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 #, fuzzy msgid "Error during commit" msgstr "შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 #, fuzzy msgid "" "Some problem occured during the clean-up. Please see the below message for " @@ -416,26 +415,31 @@ msgid "" msgstr "-თვის ინფორმაცია " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "ვამოწმებ პროგრამულ მენეჯერს" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "რეპოზტორიის ინფორმაციის განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "გაფუჭებული პაკეტის შესახებ ინფორმაცია" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -445,21 +449,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 #, fuzzy msgid "Asking for confirmation" msgstr "-თვის" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "მიმდინარეობს განახლებების ჩაყენება" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 #, fuzzy msgid "Searching for obsolete software" msgstr "ვეძებ -თვის" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 #, fuzzy msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." @@ -481,7 +485,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -513,21 +517,27 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 #, fuzzy msgid "The 'diff' command was not found" msgstr "არა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "A fatal error occured" msgstr "A შეცდომა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -538,25 +548,25 @@ msgstr "a და შემცველობა და -ში ახლა თ #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." -msgstr[0] "" +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "A არსებითი -სკენ" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -564,38 +574,41 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "საათი და ნებისმიერი დრო." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "ვერ ვპოულობ განახლებებს" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "თქვენი სისტემა განახლებულია" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "თქვენი სისტემა სულ ახლახანს განახლდა." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr " ამოშლა %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "დაყენება %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "ჩასაყენებელი განახლება %s" @@ -629,11 +642,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "საჭიროა გადატვირთვა" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 #, fuzzy msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" @@ -668,9 +681,8 @@ msgid "Start the upgrade?" msgstr " გაშვება" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" -msgstr " -სკენ" +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -801,8 +813,8 @@ msgstr "ვერ შედგა" #: ../UpdateManager/DistUpgradeFetcher.py:222 #, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "ვერ შედგა a ან " #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -827,152 +839,143 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "განახლება -სკენ ვერსია ის" +msgid "Normal updates" +msgstr "განახლებების _დაყენება" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "შეუძლებელია ყველა არსებული განახლების ჩაყენება" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "ვერსია %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "მიმდინარეობს ჩამოქაჩვა სია ის." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "შ_ემოწმება" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "ჩამოსატვირთის ზომა: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "თქვენი სისტემა განახლებულია" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "თქვენ შეგიძლიათ %s განახლების ჩადგმა" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "განახლება გასრულებულია" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "განახლებების _დაყენება" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "ახალი ვერსია: %s (ზომა: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "ვერსია %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 #, fuzzy msgid "" "You will not get any further security fixes or critical updates. Upgrade to " @@ -982,17 +985,17 @@ msgstr "" "თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი " "იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 #, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " @@ -1013,94 +1016,108 @@ msgstr "" "პროგრამა პარამეტრები." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +#, fuzzy +msgid "Keep your system up-to-date" +msgstr " დატოვება -სკენ თარიღი" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"ვამოწმებ თქვენს სისტემას\n" +"ვერ მოხერხდა CD-ს წაკითხვა\n" "\n" -"მოცემული პროგრამა გიჩვენებთ განახლებებს, გაასწორებს სისტემურ შეცდომებს და " -"წარმოგიდგენთ ახალ შესაძლებლობებს." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 +#: ../data/glade/UpdateManager.glade.h:6 #, fuzzy -msgid "Keep your system up-to-date" -msgstr " დატოვება -სკენ თარიღი" +msgid "Starting update manager" +msgstr " გაშვება" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "ჩამოტვირთვის _გაუქმება" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "ცვლილებები" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "შე_მოწმება" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 #, fuzzy msgid "Check the software channels for new updates" msgstr "შემოწმება -თვის ახალი" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "აღწერილობა" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "ვერსიის მონაცემები" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 #, fuzzy msgid "Show progress of single files" msgstr "ჩვენება მიმდინარეობა ის ცალი" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "პროგრამული განახლებები" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 #, fuzzy msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "პროგრამა სწორეა და ახალი." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 #, fuzzy msgid "Upgrade to the latest version of Ubuntu" msgstr "განახლება -სკენ ვერსია ის" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "შ_ემოწმება" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "განახლება _გაგრძელება" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_დამალე მომავალში მოცემული ინფორმაცია" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "განახლებების _დაყენება" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "ცვლილებები" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1217,10 +1234,10 @@ msgstr "დაყენება" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 #, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1250,10 +1267,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" " შეყვანა სრული ის -სკენ დამატება n ტიპი მდებარეობა და " @@ -1310,7 +1327,7 @@ msgstr "შემოწმება -თვის ახალი დისტ #: ../data/update-manager.schemas.in.h:3 #, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "-თვის ტოლია -სკენ სია -სკენ -ში." @@ -1333,7 +1350,7 @@ msgstr "ზომა ის განახლება დიალოგი" #: ../data/update-manager.schemas.in.h:7 #, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "ის შეიცავს სია ის და აღწერა" @@ -1360,209 +1377,187 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 განახლებები" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "არათავისუფალი (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "არათავისუფალი (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "არათავისუფალი (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "განახლებების _დაყენება" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 განახლებები" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 განახლებები" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "არათავისუფალი (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "არა" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "შეზღუდული" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 განახლებები" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" @@ -1616,6 +1611,43 @@ msgstr "პროგრამა თავისუფალი დამოკ msgid "Non-DFSG-compatible Software" msgstr "პროგრამა" +#, fuzzy +#~ msgid "Some software no longer officially supported" +#~ msgstr "არა" + +#~ msgid "Could not find any upgrades" +#~ msgstr "ვერ ვპოულობ განახლებებს" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "თქვენი სისტემა სულ ახლახანს განახლდა." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr " -სკენ" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "განახლება -სკენ ვერსია ის" + +#~ msgid "Cannot install all available updates" +#~ msgstr "შეუძლებელია ყველა არსებული განახლების ჩაყენება" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "ვამოწმებ თქვენს სისტემას\n" +#~ "\n" +#~ "მოცემული პროგრამა გიჩვენებთ განახლებებს, გაასწორებს სისტემურ შეცდომებს და " +#~ "წარმოგიდგენთ ახალ შესაძლებლობებს." + #, fuzzy #~ msgid "" #~ "Some updates require the removal of further software. Use the function " diff --git a/po/ko.po b/po/ko.po index f2212584..440714d0 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-28 15:14+0000\n" "Last-Translator: darehanl \n" "Language-Team: Korean \n" @@ -128,9 +128,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "선택한 키를 지울 수 없습니다. 버그 리포팅 하십시오." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -146,11 +146,11 @@ msgstr "디스크에 사용할 이름을 입력하십시오." msgid "Please insert a disc in the drive:" msgstr "드라이브에 디스크를 넣으십시오:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "망가진 꾸러미" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -158,23 +158,23 @@ msgstr "" "이 소프트웨어로 수정할 수 없는 망가진 꾸러미가 있습니다. 진행 전에 먼저 시냅" "틱이나 apt-get을 사용하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "요청된 메타 꾸러미를 업그레이드 할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "필수 꾸러미를 지워야만 합니다." #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -183,11 +183,11 @@ msgstr "" "버그를 보고하여 주십시오. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "꾸러미 인증 오류" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -196,27 +196,28 @@ msgstr "" "인증하는데 실패한 꾸러미가 있습니다. 일시적인 네트워크 문제일 수 있으니 나중" "에 다시 시도하십시오. 인증에 실패한 꾸러미의 목록은 다음과 같습니다." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "'%s'을(를) 설치할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "요청된 꾸러미를 설치할 수 없습니다. 버그로 보고하여 주십시오. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "메타 꾸러미를 추측할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -225,12 +226,12 @@ msgstr "" " 위의 꾸러미 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니" "다." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "가져오기가 실패했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -240,15 +241,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "캐시를 읽는 중" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -256,11 +257,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "적합한 미러 서버를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -280,11 +281,11 @@ msgstr "" "'아니오'를 고르면 업데이트가 취소됩니다." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -297,11 +298,11 @@ msgstr "" "'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 고르면 업데이트가 취소됩" "니다." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "저장소 정보가 올바르지 않습니다" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -309,13 +310,14 @@ msgstr "" "저장소 정보를 업그레이드하는 것이 잘못된 파일로 만들어졌습니다. 버그를 보고하" "여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "써드 파티 소스는 이용할 수 없습니다" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -323,11 +325,11 @@ msgstr "" "properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" "니다." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "업데이트 중 오류" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -335,11 +337,11 @@ msgstr "" "업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" "니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "디스크 여유 공간이 충분하지 않습니다." -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -351,15 +353,15 @@ msgstr "" "에 사용했던 임시 꾸러미들을 삭제하시기 바랍니다." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -371,11 +373,11 @@ msgstr "" "업그레이드가 중지되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " "(dpkg --configure -a)를 실행하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "업그레이드 파일을 다운로드 할 수 없습니다." -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -383,17 +385,18 @@ msgstr "" "업그레이드가 중지되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" "하십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "더 이상 공식적으로 지원하지 않는 소프트웨어가 있습니다." +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "이 소프트웨어들은 더 이상 공식적으로 지원하지 않으며, 이제 Universe 계열에 해" "당합니다.\n" @@ -401,23 +404,23 @@ msgstr "" "'Universe' 저장소를 활성화하지 않았다면 다음 단계에서 이 꾸러미들을 삭제할 " "수 있습니다. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "못쓰게 된 꾸러미를 삭제하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "이 단계 건너뛰기(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "삭제(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "커밋 도중 오류 발생" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -426,26 +429,31 @@ msgstr "" "보를 얻으실 수 있습니다. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "시스템을 원상태로 복구하는 중" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "꾸러미 관리자 확인 중" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "저장소 정보 업데이트 중" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "잘못된 꾸러미 정보" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -458,19 +466,19 @@ msgstr "" "다.\n" "심각한 오류입니다. 버그를 보고하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "확인을 요청하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "업그레이드 하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "못 쓰게 된 소프트웨어를 검색하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "시스템 업그레이드가 끝났습니다." @@ -491,7 +499,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "내려받는 중, %li의 %li 파일, 속도 %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "%li 분 정도 남았음" @@ -521,23 +529,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "설정 파일을 바꾸시겠습니까?\n" "'%s'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "'diff' 명령어를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "심각한 오류 발생" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -551,25 +565,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "꾸러미 %s 개가 삭제될 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "새로운 꾸러미가 %s 개 설치될 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "꾸러미가 %s 개 업그레이드 될 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -577,37 +591,40 @@ msgid "" "You have to download a total of %s. " msgstr "총 %s개의 꾸러미를 다운로드 합니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "업그레이드는 여러 시간이 걸릴 수 있고, 어떤 때에도 취소될 수 없습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "어떤 업그레이드 꾸러미도 찾을 수 없습니다." +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "시스템이 최신의 상태입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "이미 시스템이 업그레이드 되어 있습니다." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s 삭제" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s 설치" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s 업그레이드" @@ -641,11 +658,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "재부팅이 필요합니다." -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -681,11 +698,8 @@ msgid "Start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"우분투 6.06 LTS로 업그레이드하는 중" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -809,9 +823,10 @@ msgid "Verfication failed" msgstr "검사 실패" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "업그레이드를 검사하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니" "다. " @@ -838,149 +853,140 @@ msgstr "%li 의 %li 파일 내려 받는 중, 속도 %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "%li 의 %li 파일 내려 받는 중, 속도 알 수 없음" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "바뀐 목록을 아직 이용할 수 없습니다. 잠시 후에 다시 해주시기 바랍니다." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "바뀐 목록을 아직 이용할 수 없습니다. 잠시 후에 다시 해주시기 바랍니다." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" "바뀐 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "우분투 5.10 보안 업데이트" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "업데이트를 설치(_I)" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "우분투 최신 버젼으로 업그레이드 합니다." +msgid "Normal updates" +msgstr "업데이트를 설치(_I)" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "업데이트를 설치(_I)" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "설치할 수 없는 업데이트가 있습니다" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "버전 %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "바뀐 목록을 다운로드 하는 중..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "점검(_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "다운로드 크기: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "시스템이 최신의 상태입니다." - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 개의 업데이트를 설치할 수 있습니다." -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "잠시만 기다리십시오. 이 작업은 약간의 시간이 걸립니다." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "업데이트가 끝났습니다." -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "업데이트를 설치(_I)" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "새 버전: %s (크기: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "버전 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "더 이상 지원되지 않는 배포판입니다." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -990,17 +996,17 @@ msgstr "" "그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" "서 보실 수 있습니다." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'를 이용할 수 있습니다" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1022,58 +1028,67 @@ msgstr "" "\"Software Properties\"에서 설정할 수 있습니다." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "시스템을 최신으로 유지하십시오." + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"시스템 검사 중\n" +"CD 검색 오류\n" "\n" -"소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" -"합니다." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "시스템을 최신으로 유지하십시오." +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "업그레이드를 시작하시겠습니까?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "다운로드 취소(_D)" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "변경 사항" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "점검(_k)" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "새로운 업데이트를 위해 소프트웨어 채널을 확인합니다." -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "설명" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "릴리즈 정보" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "각 파일의 진행 상황 표시" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "소프트웨어 업데이트" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1081,32 +1096,37 @@ msgstr "" "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" "합니다." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "업그레이드(_p)" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "우분투 최신 버젼으로 업그레이드 합니다." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "점검(_C)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "업그레이드 계속(_R)" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "앞으로 이 정보 숨김(_H)" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "업데이트를 설치(_I)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "변경 사항" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1214,11 +1234,12 @@ msgid "_Install security updates without confirmation" msgstr "확인없이 보안 업데이트 설치(_I)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1252,10 +1273,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "추가하고자 하는 채널의 APT 줄을 완전히 입력하십시오.\n" @@ -1311,8 +1332,9 @@ msgid "Check for new distribution releases" msgstr "새로운 배포판을 확인합니다." #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1332,8 +1354,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "업데이트 관리자 대화상자의 크기를 저장합니다." #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "변경과 설명의 목록을 가지는 확장자의 상태를 저장합니다." @@ -1359,212 +1382,189 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 5.10 업데이트" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "커뮤니티에서 관리유지함 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "자유소프트웨어 아님 (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "커뮤니티에서 관리유지함 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "커뮤니티에서 관리유지함 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "자유소프트웨어 아님 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "자유소프트웨어 아님 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "우분투 5.10 보안 업데이트" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "업데이트를 설치(_I)" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "공식적으로 지원됨" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "우분투 5.10 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "우분투 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "공식적으로 지원됨" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "우분투 5.10 보안 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "우분투 5.10 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "우분투 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "커뮤니티에서 관리유지함 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "자유소프트웨어 아님 (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "더 이상 공식적으로 지원하지 않는 소프트웨어가 있습니다." #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "저작권 제한됨" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "우분투 5.10 업데이트" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "우분투 5.10 Backports" @@ -1615,6 +1615,48 @@ msgstr "DFSG 호환이지만 자유소프트웨어가 아닌 의존성이 있는 msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 안되는 소프트웨어" +#~ msgid "Some software no longer officially supported" +#~ msgstr "더 이상 공식적으로 지원하지 않는 소프트웨어가 있습니다." + +#~ msgid "Could not find any upgrades" +#~ msgstr "어떤 업그레이드 꾸러미도 찾을 수 없습니다." + +#~ msgid "Your system has already been upgraded." +#~ msgstr "이미 시스템이 업그레이드 되어 있습니다." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "우분투 6.06 LTS로 업그레이드하는 중" +#~ "" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "우분투 5.10 보안 업데이트" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "우분투 최신 버젼으로 업그레이드 합니다." + +#~ msgid "Cannot install all available updates" +#~ msgstr "설치할 수 없는 업데이트가 있습니다" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "시스템 검사 중\n" +#~ "\n" +#~ "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제" +#~ "공합니다." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "공식적으로 지원됨" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/ku.po b/po/ku.po index 2029bd01..188b00b4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" @@ -129,7 +129,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -142,79 +142,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Paketên şikestî" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Nikarî '%s' saz bike" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -224,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,72 +331,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Jê bibe" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -406,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Tê bilindkirin" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." @@ -439,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -471,19 +476,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -493,28 +504,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket dê were rakirin." msgstr[1] "%s paket dê werin rakirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket dê were sazkirin" msgstr[1] "%s paket dê werin sazkirin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket dê were bilindkirin." msgstr[1] "%s paket dê werin bilindkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -522,36 +533,39 @@ msgid "" "You have to download a total of %s. " msgstr "Pêwîst e tu bi tevahî %s daxî." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Sîstema te rojane ye" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Sîstema xwe berê hat bilindkirin." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s rake" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s saz bike" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s bilind bike" @@ -585,11 +599,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -620,7 +634,7 @@ msgid "Start the upgrade?" msgstr "Dest bi bilindkirinê were kirin?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -741,8 +755,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -765,163 +779,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -#, fuzzy -msgid "Updates of Ubuntu" -msgstr "Ubuntu tê bilindkirin" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" +msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Guhertoya %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Mezinahiya daxistinê: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Sîstema te rojane ye" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Tu dikarî %s rojanekirinê saz bikî" msgstr[1] "Tu dikarî %s rojanekirinan saz bikî" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Rojanekirin temam bû" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Guhertoya %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -937,85 +938,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Dest bi bilindkirinê were kirin?" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Daxistinê _betal bike" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Guhartin" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Daxuyanî" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Guhartin" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1122,10 +1136,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1152,10 +1166,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1205,7 +1219,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1224,7 +1238,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1248,204 +1262,183 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Neazad (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neazad (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neazad (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Bi piştgirtiya fermî" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Bi piştgirtiya fermî" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neazad (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Bi piştgirtiya fermî" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" @@ -1495,6 +1488,17 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Your system has already been upgraded." +#~ msgstr "Sîstema xwe berê hat bilindkirin." + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Ubuntu tê bilindkirin" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Bi piştgirtiya fermî" + #~ msgid "Download is complete" #~ msgstr "Daxistin hatiye temam kirin" diff --git a/po/lt.po b/po/lt.po index 47688c99..df8552d5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-28 20:07+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -129,9 +129,9 @@ msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,11 +147,11 @@ msgstr "Įveskite disko pavadinimą" msgid "Please insert a disc in the drive:" msgstr "Įdėkite diską į įrenginį:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Sugadinti paketai" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,23 +160,23 @@ msgstr "" "programa. Prieš tęsdami pirmiausia sutaisykite juos naudodamiesi „synaptic“ " "arba „apt-get“." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Negalima atnaujinti reikiamų metapaketų" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -185,11 +185,11 @@ msgstr "" "tai kaip klaidą. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "Nepavyko patvirtinti kelių paketų autentiškumo. Tai gali būti laikina tinklo " "problema. Galite bandyti vėliau. Žemiau yra nepatvirtintų paketų sąrašas." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Negalima įdiegti „%s“" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,16 +211,17 @@ msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 #, fuzzy msgid "Can't guess meta-package" msgstr "Negalima nuspėti meta paketo" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -230,12 +231,12 @@ msgstr "" " Prieš tęsdami pirmiausia įdiekite vieną iš šių paketų naudodamiesi " "„synaptic“ arba „apt-get“." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Atsiųsti nepavyko" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Nuskaitoma talpykla" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -261,12 +262,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 #, fuzzy msgid "No valid mirror found" msgstr "Nerasta tinkamo įrašo" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -279,11 +280,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Ar sukurti numatytųjų šaltinių sąrašą?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -292,11 +293,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Saugyklų informacija netinkama" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -304,13 +305,14 @@ msgstr "" "Saugyklos informacijos atnaujinimo rezultatas buvo sugadinta byla. " "Praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Trečiųjų šalių šaltiniai išjungti" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -318,11 +320,11 @@ msgstr "" "Juos galėsite vėl įjungti, kai baigsite atnaujinimą su „programų savybių“ " "įrankiu arba „Synaptic“ paketų tvarkykle." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Klaida atnaujinant" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -330,11 +332,11 @@ msgstr "" "Atnaujinant iškilo problema. Tai greičiausiai kokia nors tinklo problema, " "todėl iš naujo patikrinkite tinklo jungtis ir bandykite dar." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Diske nepakanka laisvos vietos" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -343,15 +345,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -363,11 +365,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. " "Dabar bus vykdomas atkūrimas (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -375,17 +377,18 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo " "laikmeną ir bandykite dar. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Šie įdiegti paketai nebėra oficialiai palaikomi. Dabar juos palaiko " "bendruomenė („universe“).\n" @@ -393,23 +396,23 @@ msgstr "" "Jei nesate įjungę „universe“ skyriaus, šie paketai bus siūlomi pašalinimui " "kitame žingsnyje. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Praleisti šį žingsnį" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "P_ašalinti" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -418,26 +421,31 @@ msgstr "" "pranešime. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Perkraunama sistema" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Tikrinama paketų valdyklė" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Netinkama paketo informacija" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -450,19 +458,19 @@ msgstr "" "paketo „%s“.\n" "Tai labai rimta problema, praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Klausiama patvirtinimo" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Atnaujinama" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." @@ -483,7 +491,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -513,23 +521,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Ar pakeisti konfigūracijos bylą\n" "„%s“?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Nerasta komanda „diff“" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Įvyko lemtinga klaida" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -545,31 +559,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "Bus pašalintas %s paketas." msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "Bus įdiegtas %s naujas paketas." msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bus atnaujintas %s paketas." msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -577,7 +591,7 @@ msgid "" "You have to download a total of %s. " msgstr "Turite atsisiųsti viso %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -585,32 +599,35 @@ msgid "" msgstr "" "Atnaujinimas gali užtrukti keletą valandų ir vėliau jo negalima atšaukti." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Nepavyko rasti jokių atnaujinimų" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Jūsų sistema atnaujinta" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Jūsų sistema jau buvo atnaujinta." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Pašalinti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Įdiegti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Atnaujinti %s" @@ -644,11 +661,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Reikia perkrauti kompiuterį" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -687,10 +704,8 @@ msgid "Start the upgrade?" msgstr "Pradėti atnaujinimą?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Atnaujinama į Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -815,9 +830,10 @@ msgid "Verfication failed" msgstr "Tapatumo nustatymas nepavyko" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Atnaujinimo tapatumo nustatymas nepavyko. Gali būti tinklo arba serverio " "problema. " @@ -844,114 +860,100 @@ msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" msgid "Downloading file %li of %li with unknown speed" msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "Nepavyko atsiųsti pakeitimų sąrašo. Patikrinkite Interneto ryšį." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Atnaujinti iki naujausios Ubuntu versijos" +msgid "Normal updates" +msgstr "Diegiami atnaujinimai" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Negalima įdiegti visų galimų atnaujinimų" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versija %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Atsiunčiamas pakeitimų sąrašas..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Patikrinti" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Jūsų sistema atnaujinta" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -959,35 +961,40 @@ msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[1] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[2] "Rodyti ir įdiegti galimus atnaujinimus" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Palaukite, tai gali užtrukti." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Atnaujinimas užbaigtas" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Diegiami atnaujinimai" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nauja versija: %s (Dydis: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versija %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Jūsų distribucija daugiau nebepalaikoma" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -997,17 +1004,17 @@ msgstr "" "Atnaujinkite į naujausią „Ubuntu Linux“ versiją. Daugiau informacijos apie " "atnaujinimą rasite http://www.ubuntu.com ." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1031,59 +1038,67 @@ msgstr "" "naudodamiesi „Sistema“ -> „Administravimas“ -> „Programinės įrangos savybės“." #: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 #, fuzzy -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Not all updates can be installed" msgstr "" -"Ieškoma galimų atnaujinimų\n" +"Klaida skanuojant CD\n" "\n" -"Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " -"spragas bei suteikti naujas funkcijas." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Pradėti atnaujinimą?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Atšaukti _atsiuntimą" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Pakeitimai" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Ti_krinti" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Patikrinti programų kanalus dėl atnaujinimų" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Aprašymas" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Leidimo aprašymas" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Rodyti pavienių failų progresą" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Programinės įrangos atnaujinimai" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 #, fuzzy msgid "" "Software updates correct errors, eliminate security vulnerabilities and " @@ -1092,32 +1107,37 @@ msgstr "" "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " "spragas bei suteikti naujas funkcijas." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "At_naujinti" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Atnaujinti iki naujausios Ubuntu versijos" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Patikrinti" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Tęsti atnaujinimą" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Nerodyti šios informacijos ateityje" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "Į_diegti atnaujinimus" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Pakeitimai" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1229,11 +1249,12 @@ msgid "_Install security updates without confirmation" msgstr "Į_diegti saugumo atnaujinimus neklausiant patvirtinimo" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1267,10 +1288,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Įveskite visą Jūsų norimo pridėti kanalo APT eilutę\n" @@ -1327,8 +1348,9 @@ msgid "Check for new distribution releases" msgstr "Tikrinti, ar yra išleista nauja distribucijos (OS) versija" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1350,7 +1372,7 @@ msgstr "Išsaugo update-manager dialogų dydį" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1378,211 +1400,189 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 atnaujinimai" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Prižiūrima bendruomenės (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Ne Laisva (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 „Dapper Drake“" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Prižiūrima bendruomenės (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Prižiūrima bendruomenės (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ne Laisva (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ne Laisva (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 „Dapper Drake“" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 saugumo atnaujinimai" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Diegiami atnaujinimai" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Oficialiai palaikoma" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 „Breezy Badger“" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" -msgstr "Prižiūrima oficialiai" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "Oficialiai palaikoma" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 „Breezy Badger“" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Prižiūrima bendruomenės (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne Laisva (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Apribotos autorinės teisės" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 atnaujinimai" @@ -1633,6 +1633,48 @@ msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Nepavyko rasti jokių atnaujinimų" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Jūsų sistema jau buvo atnaujinta." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Atnaujinama į Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 saugumo atnaujinimai" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Atnaujinti iki naujausios Ubuntu versijos" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Negalima įdiegti visų galimų atnaujinimų" + +#, fuzzy +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Ieškoma galimų atnaujinimų\n" +#~ "\n" +#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti " +#~ "saugumo spragas bei suteikti naujas funkcijas." + +#~ msgid "Oficially supported" +#~ msgstr "Prižiūrima oficialiai" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/mk.po b/po/mk.po index 45c9194a..1b14fb90 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -136,7 +136,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -149,33 +149,33 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -184,23 +184,23 @@ msgstr "" "како бубачка. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -210,24 +210,24 @@ msgstr "" "како бубачка. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -237,15 +237,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -253,11 +253,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -270,12 +270,12 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 #, fuzzy msgid "Generate default sources?" msgstr "Врати ги стандардните клучеви" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,43 +284,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "Грешка при отстранување на клучот" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +329,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,73 +346,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "Веќе работи друг менаџер за пакети" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,20 +427,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "Надградбата е завршена" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -455,7 +460,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -488,19 +493,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -510,31 +521,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -542,36 +553,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +#, fuzzy +msgid "Your system is up-to-date" +msgstr "Вашиот систем е надграден!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -605,11 +620,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -640,7 +655,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -767,8 +782,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -792,16 +807,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Достапна е нова верзија на Убунту!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -810,101 +825,85 @@ msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Безбедносни надградби за Debian Stable" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "Инсталирам надградби..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:276 -#, fuzzy -msgid "Cannot install all available updates" -msgstr "Проверувам за надградби..." - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Верзија %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, fuzzy, python-format msgid "Download size: %s" msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "Вашиот систем е надграден!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -912,53 +911,58 @@ msgstr[0] "Инсталирам надградби..." msgstr[1] "Инсталирам надградби..." msgstr[2] "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Проверувам за надградби..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Верзија %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуција повеќе не е поддржана" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -974,86 +978,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Опис" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Надградба на софтвер" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "Инсталирам надградби..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1168,10 +1184,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1200,10 +1216,10 @@ msgstr "Адреса:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Внесете ја комплетната линија за APT складиштето за да го додадете\n" "Language-Team: Malay \n" @@ -130,9 +130,9 @@ msgstr "" "ralat pepijat." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -148,11 +148,11 @@ msgstr "Sila masukkan nama untuk cakera padat" msgid "Please insert a disc in the drive:" msgstr "Sila masukkan cakera padat kedalam pemacu" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Pakej rosak" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -161,23 +161,23 @@ msgstr "" "menggunakan sofwer ini. Sila baiki dahulu menggunakan synaptic atau apt-get " "sebelum meneruskan." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -186,23 +186,23 @@ msgstr "" "penaikkan. Sila laporkan ini sebagai ralat pepijat. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat memasang '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,15 +211,16 @@ msgstr "" "pepijat. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -229,11 +230,11 @@ msgstr "" "Sila pasangkan salah satu pakej diatas dahulu menggunakan synaptic ataupun " "apt-get sebelum meneruskan pemasangan." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +244,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -259,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -276,11 +277,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -289,23 +290,24 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Sumber ketiga tidak diaktifkan." -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -314,11 +316,11 @@ msgstr "" "selepas penaikkan taraf menggunakan alatan 'software-properties' ataupun " "'synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Ralat semasa pengemaskinian." -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -327,11 +329,11 @@ msgstr "" "yang berkaitan dengan masaalah rangkaian, sila periksa dan cuba lagi " "sambungan rangkaian anda." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Muatak cakera keras tidak mencukupi." -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -343,15 +345,15 @@ msgstr "" "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Tidak dapat memasang pakej-pakej penaikkan taraf." -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -363,11 +365,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sistem anda mungkin tidak stabil. " "Sistem 'recovery' telah dijalankan (dpkg --configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -375,67 +377,72 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sila semak sambungan 'internet' atau " "media pemasangan anda dan cuba lagi. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 #, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Pakej-pakej yang telah dipasang ini sudah tidak ada sokonga/bantuan rasmi " "dan ianya hanya dibantu/sokong oleh 'community-supported('universe')\n" "Jika anda tidak megaktifkan 'universe', pakej-pakej ini akan dicadangkan " "untuk dikeluarkan di peringkat selanjutnya. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Keluarkan pakej-pakej yang sudah luput?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -445,19 +452,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -477,7 +484,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -509,19 +516,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -531,28 +544,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" +msgstr[1] "Satu pakej yang perlu terpaksa dikeluarkan" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." -msgstr[0] "" -msgstr[1] "" - -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -560,36 +573,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -623,11 +639,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -658,7 +674,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -780,8 +796,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -804,162 +820,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -975,84 +979,104 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" +msgstr "" +"Ralat semasa mengimbas Cakera Padat↵\n" +"↵\n" +"%s" + +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" msgstr "" +"Ralat semasa mengimbas Cakera Padat↵\n" +"↵\n" +"%s" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1156,10 +1180,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1186,10 +1210,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1239,7 +1263,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1258,7 +1282,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1282,193 +1306,173 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" @@ -1517,3 +1521,6 @@ msgstr "" #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" + +#~ msgid "Some software no longer officially supported" +#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." diff --git a/po/nb.po b/po/nb.po index 9e675e7d..9f3a41e2 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-29 13:06+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -131,9 +131,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -149,11 +149,11 @@ msgstr "Vennligst oppgi et navn for platen" msgid "Please insert a disc in the drive:" msgstr "Vennligst sett inn en plate i CD-spilleren:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Skadede pakker" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -162,23 +162,23 @@ msgstr "" "av dette programmet. Vennligst rett opp i dette ved å bruke Synaptic eller " "apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke oppgradere nødvendige meta-pakker" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -187,11 +187,11 @@ msgstr "" "rapporter dette som en feil. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -201,12 +201,12 @@ msgstr "" "nettverksproblem, så du bør prøve igjen senere. Se under for listen over " "pakker som ikke kunne autentiseres." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,15 +214,16 @@ msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -232,12 +233,12 @@ msgstr "" " Vennligst installer én av de nevnte pakkene først ved å bruke synaptic " "eller apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Kunne ikke hente" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -247,15 +248,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Leser mellomlager" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Fant ikke noe gyldig speil" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +288,11 @@ msgstr "" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -305,11 +306,11 @@ msgstr "" "Skal standard linjer for '%s' legges til? Hvis du velger 'Nei' vil " "oppdateringen avbrytes." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Ugyldig informasjon om arkiv" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,13 +318,14 @@ msgstr "" "Oppgradering av kanalinformasjon resulterte i en ugyldig fil. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Tredjepartskilder er deaktivert" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -331,11 +333,11 @@ msgstr "" "aktivere dem etter oppgraderingen ved hjelp av verktøyet 'Egenskaper for " "programvare' eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +346,11 @@ msgstr "" "problem med nettverkstilkoblingen. Vennligst sjekk nettverkstilkoblingen din " "og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Ikke nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +362,15 @@ msgstr "" "bruke 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Kunne ikke installere oppgraderingene" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -380,11 +382,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon " "ble forsøkt kjørt (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Kunne ikke laste ned alle oppgraderingene." -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -392,17 +394,18 @@ msgstr "" "Oppgraderingen avbrytes nå. Vennligst sjekk internet-tilkoblingen eller " "installasjonsmediet og prøv på nytt. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Noe programvare er ikke lenger offisielt støttet" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Disse installerte pakkene er ikke lenger offisielt støttet og er nå kun " "støttet av miljøet 'universe'.\n" @@ -410,23 +413,23 @@ msgstr "" "Hvis du ikke har 'universe' aktivert vil disse pakkene bli foreslått fjernet " "i neste steg. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Ønsker du å fjerne utdaterte pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Hopp over dette punktet" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Feil ved commit" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,26 +438,31 @@ msgstr "" "informasjon. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -467,19 +475,19 @@ msgstr "" "pakken '%s'.\n" "Dette indikerer en alvorlig feil, vennligst rapportér denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Spør om bekreftelse" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Oppgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" @@ -500,7 +508,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Laster ned fil %li av %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Rundt %li minutter gjenstår" @@ -530,23 +538,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Vil du erstatte konfigurasjonsfilen\n" "'%s?'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' ble ikke funnet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "En uopprettelig feil oppsto" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -560,28 +574,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -589,7 +603,7 @@ msgid "" "You have to download a total of %s. " msgstr "Du må laste ned totalt %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -598,31 +612,34 @@ msgstr "" "Oppgraderingen kan ta flere timer og kan ikke avbrytes på noe senere " "tidspunkt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Kunne ikke finne noen oppgraderinger" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Systemet ditt er oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Systemet ditt er allerede oppgradert." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Oppgradér %s" @@ -656,11 +673,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Omstart er nødvendig" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -698,10 +715,8 @@ msgid "Start the upgrade?" msgstr "Vil du starte oppgraderingen?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Oppgraderer til Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -827,9 +842,10 @@ msgid "Verfication failed" msgstr "Verifisering feilet" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Verifisering av oppgraderingen feilet. Det kan være en feil med nettverket " "eller med tjeneren. " @@ -856,16 +872,16 @@ msgstr "Laster ned filen %li av %li med %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Laster ned fil %li av %li ved ukjent hastighet" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Listen over endringer er ikke tilgjengelig ennå. Prøv senere." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Listen over endringer er ikke tilgjengelig ennå. Prøv senere." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -873,134 +889,125 @@ msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Installerer oppdateringer" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Oppgrader til siste versjon av Ubuntu" +msgid "Normal updates" +msgstr "Installerer oppdateringer" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Installerer oppdateringer" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Kan ikke installere alle tilgjengelige oppdateringer." - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versjon %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Laster ned listen med endringer..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "Sjekk" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Nedlastingsstørrelse: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Systemet ditt er oppdatert!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s oppdatering" msgstr[1] "Du kan installere %s oppdateringer" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Vennligst vent, dette kan ta litt tid." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Oppdateringen er fullført" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Sjekker for tilgjengelige oppdateringer" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny versjon: %s (Størrelse: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1010,17 +1017,17 @@ msgstr "" "oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." "ubuntu.com for mer informasjon om oppgradering." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1043,58 +1050,67 @@ msgstr "" "under \"System\" -> \"Administrasjon\" -> \"Egenskaper for programvare\"" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Hold systemet ditt oppdatert" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Analyserer systemet\n" +"Kunne ikke søke gjennom CD\n" "\n" -"Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer og " -"gir deg ny funksjonalitet." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Hold systemet ditt oppdatert" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Vil du starte oppgraderingen?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Avbryt ne_dlasting" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Sjek_k" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Sjekk programvarekanalene for nye oppdateringer" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Beskrivelse" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Utgivelsesinformasjon" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Vis fremdrift for enkeltfiler" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Programvareoppdateringer" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1102,32 +1118,37 @@ msgstr "" "Programvareoppdateringer fikser feil, fjerner sikkerhetshull og tilbyr ny " "funksjonalitet." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "O_ppgrader" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Oppgrader til siste versjon av Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "Sjekk" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Gjenoppta oppgradering" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "Skjul denne informasjonen i fremtiden" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Installerer oppdateringer" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1238,11 +1259,12 @@ msgid "_Install security updates without confirmation" msgstr "_Installer sikkerhetsoppdateringer uten bekreftelse" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1276,10 +1298,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Skriv inn hele APT-linjen for kanalen du vil legge til \n" @@ -1337,8 +1359,9 @@ msgid "Check for new distribution releases" msgstr "Se etter nye utgivelser av distribusjonen" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1359,8 +1382,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "Lagrer størrelsen for update-manager-vinduet" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Lagrer ditt valg for hvorvidt endringslogger og beskrivelse av programmer " @@ -1388,213 +1412,191 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Oppdateringer" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidratt programvare" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "US eksport begrenset programvare" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Installerer oppdateringer" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Offisielt støttet" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Oppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Offisielt støttet" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Oppdateringer" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Noe programvare er ikke lenger offisielt støttet" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" @@ -1645,6 +1647,47 @@ msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Noe programvare er ikke lenger offisielt støttet" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Kunne ikke finne noen oppgraderinger" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Systemet ditt er allerede oppgradert." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Oppgraderer til Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Oppgrader til siste versjon av Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Kan ikke installere alle tilgjengelige oppdateringer." + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Analyserer systemet\n" +#~ "\n" +#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer " +#~ "og gir deg ny funksjonalitet." + +#~ msgid "Oficially supported" +#~ msgstr "Offisielt støttet" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1754,9 +1797,6 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "Sections" #~ msgstr "Seksjoner" -#~ msgid "Check for available updates" -#~ msgstr "Sjekker for tilgjengelige oppdateringer" - #~ msgid "Sections:" #~ msgstr "Seksjoner:" diff --git a/po/ne.po b/po/ne.po index e20b5a99..16549c06 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -134,7 +134,7 @@ msgstr "तपाईंले चयन गरेको कुञ्जि ह #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,56 +147,56 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -204,24 +204,24 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -231,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,43 +277,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -322,15 +322,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,73 +339,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -415,20 +420,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "स्तरवृद्धि समाप्त" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -448,7 +453,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -481,19 +486,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -503,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -532,37 +543,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" - -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 #, fuzzy -msgid "Your system has already been upgraded." -msgstr "तपाईंको प्रणालीमा टुटेका प्याकेजहरु छन!" +msgid "Your system is up-to-date" +msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -596,11 +610,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -631,7 +645,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -756,8 +770,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -781,169 +795,159 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "युबन्टुको एउटा नयाँ विमोचन उपलब्ध छ!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "संस्करण %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, fuzzy, python-format msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" msgstr[1] "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "स्तरवृद्धिहरु स्थापना गर्दै" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "संस्करण %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "तपाईंको वितरण समर्थित छैन" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -959,86 +963,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "परिवर्तनहरु" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "बर्णन" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "सफ्टवेयर अद्यावधिकहरु" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "परिवर्तनहरु" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1154,10 +1170,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1186,10 +1202,10 @@ msgstr "युआरएल:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस\n" @@ -1249,7 +1265,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1268,7 +1284,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1293,218 +1309,195 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "योगदान गरिएको सफ्टवेयर" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "नन-फ्री (बहुभर्स)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "युएस निषेधित सफ्टवेयर" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "स्तरवृद्धिहरु स्थापना गर्दै" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -#, fuzzy -msgid "Officially supported" -msgstr "कार्यालय बाट समर्थित" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy -msgid "Oficially supported" +msgid "Officially supported" msgstr "कार्यालय बाट समर्थित" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "कार्यालय बाट समर्थित" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "निषेधित प्रतिलिपि अधिकार" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" @@ -1557,6 +1550,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Your system has already been upgraded." +#~ msgstr "तपाईंको प्रणालीमा टुटेका प्याकेजहरु छन!" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "कार्यालय बाट समर्थित" + #, fuzzy #~ msgid "The following updates will be skipped:" #~ msgstr "निम्न प्याकेजहरु स्तरवृद्धि गरिएको छैन" diff --git a/po/nl.po b/po/nl.po index 3979d843..7906b6d5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-24 01:32+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -131,9 +131,9 @@ msgstr "" "fout te melden." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -149,11 +149,11 @@ msgstr "Geef het cd-schijfje een naam" msgid "Please insert a disc in the drive:" msgstr "Plaats een schijf in de speler:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Niet-werkende pakketten" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -162,23 +162,23 @@ msgstr "" "met deze software. Repareer deze eerst met synaptic of apt-get voordat u " "verder gaat." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Kan de vereiste meta-pakketten niet upgraden." -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -187,11 +187,11 @@ msgstr "" "Gelieve dit als fout te rapporteren. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "proberen. Hieronder vindt u een lijst met pakketten waarvan de echtheid niet " "vastgesteld is." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Kan '%s' niet installeren" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,15 +216,16 @@ msgstr "" "fout te rapporteren. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -235,12 +236,12 @@ msgstr "" "Installeer eerst één van de bovenstaande pakketten met Synaptic of apt-get " "voordat u verder gaat." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Ophalen is mislukt" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -250,15 +251,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Tijdelijke opslag inlezen" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Geen geldige mirror-server gevonden" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +292,11 @@ msgstr "" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,11 +310,11 @@ msgstr "" "Moeten de standaardregels voor '%s' worden toegevoegd? Wanneer u 'Nee' " "kiest, zal de update worden geannuleerd." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "De informatie over de pakketbronnen is ongeldig" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -321,13 +322,14 @@ msgstr "" "Het upgraden van de informatie over de pakketbronnen heeft het bestand " "ongeldig gemaakt. Rapporteer dit als een fout." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Pakketbronnen van derden uitgeschakeld" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -335,11 +337,11 @@ msgstr "" "kunt ze na de upgrade weer inschakelen via het menu Systeem -> Beheer -> " "Software-eigenschappen of met het programma Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Fout tijdens het updaten" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -347,11 +349,11 @@ msgstr "" "Tijdens het updaten is er iets misgegaan. Dit komt meestal door " "netwerkproblemen. Controleer uw netwerkverbinding en probeer opnieuw." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Niet genoeg vrije schijfruimte" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -363,15 +365,15 @@ msgstr "" "vorige installaties via 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -384,11 +386,11 @@ msgstr "" "onbruikbare toestand. Er is een hersteloperatie uitgevoerd (dpkg --configure " "-a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Kon de upgrades niet downloaden" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,17 +398,18 @@ msgstr "" "De upgrade wordt nu afgebroken. Controleer uw internetverbinding of het " "installatiemedium en probeer opnieuw. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Bepaalde software wordt niet meer officieel ondersteund" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Deze geïnstalleerde pakketten worden niet meer officieel ondersteund, maar " "worden door de gemeenschap beheerd ('universe').\n" @@ -414,23 +417,23 @@ msgstr "" "Indien 'universe' niet geactiveerd is zal bij de volgende stap gevraagd " "worden om deze pakketten te verwijderen. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Overbodige pakketten verwijderen?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Deze stap overslaan" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Verwijderen" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Fout bij het toepassen" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -439,26 +442,31 @@ msgstr "" "voor meer informatie. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +479,19 @@ msgstr "" "meer gevonden worden.\n" "Dit is een ernstige fout, die gerapporteerd moet worden." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Vragen om bevestiging" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Bezig met upgraden" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Zoeken naar overbodige software" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." @@ -504,7 +512,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Ongeveer %li minuten resterend" @@ -534,23 +542,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Het configuratiebestand vervangen?\n" "'%s'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "De opdracht 'diff' is niet gevonden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Er is een ernstige fout ontstaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -566,28 +580,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "Er zal %s pakket verwijderd worden." msgstr[1] "Er zullen %s pakketten verwijderd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "Er zal %s nieuw pakket geïnstalleerd worden." msgstr[1] "Er zullen %s nieuwe pakketten geïnstalleerd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakket zal een upgrade krijgen" msgstr[1] "%s pakketten zullen een upgrade krijgen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -595,7 +609,7 @@ msgid "" "You have to download a total of %s. " msgstr "U moet in totaal %s downloaden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -604,32 +618,35 @@ msgstr "" "Het upgraden kan enkele uren in beslag nemen en kan tussentijds niet worden " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Kon geen upgrades vinden" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Uw systeem is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Uw systeem heeft al een upgrade gekregen" +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s verwijderen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s installeren" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s upgraden" @@ -663,11 +680,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "De computer moet opnieuw opgestart worden" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -703,11 +720,8 @@ msgid "Start the upgrade?" msgstr "Upgrade starten?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Bezig met upgraden naar Ubuntu 6.06 " -"LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -832,9 +846,10 @@ msgid "Verfication failed" msgstr "Verificatie is mislukt" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Het verifiëren van de upgrade is mislukt. Er is mogelijk een probleem met " "het netwerk of de server. " @@ -861,20 +876,20 @@ msgstr "Downloaden van bestand %li uit %li met %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " "Probeer het later nog eens." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " "Probeer het later nog eens." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -882,134 +897,125 @@ msgstr "" "Kon de lijst met wijzigingen niet downloaden. Controleer uw " "internetverbinding." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 veiligheidsupdates" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Upgrade naar de nieuwste versie van Ubuntu" +msgid "Normal updates" +msgstr "Up_dates installeren" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Kan de beschikbare updates niet installeren" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versie %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Het overzicht van de wijzigingen wordt gedownload..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Controleren" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Downloadgrootte: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Uw systeem is up-to-date" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "U kunt %s update installeren" msgstr[1] "U kunt %s updates installeren" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Een ogenblik geduld, dit kan even duren." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "De update is voltooid" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Up_dates installeren" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nieuwe versie: %s (Grootte: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versie %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Uw distributie wordt niet langer ondersteund" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1019,17 +1025,17 @@ msgstr "" "upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." "com voor meer informatie over upgraden." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Software-index is beschadigd" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1052,58 +1058,67 @@ msgstr "" "configureren in \"Systeem\" -> \"Beheer\" -> \"Software-eigenschappen\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." -msgstr "" -"Uw system wordt gecontroleerd\n" -"\n" -"Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " -"nieuwe mogelijkheden." - -#: ../data/glade/UpdateManager.glade.h:7 msgid "Keep your system up-to-date" msgstr "Houd uw systeem up-to-date" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" +msgstr "" +"Fout tijdens het lezen van de cd↵\n" +"↵\n" +"%s" + +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Upgrade starten?" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Download _annuleren" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Wijzigingen" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Controleren" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Controleer de softwarekanalen op nieuwe updates" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Omschrijving" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Versie-informatie" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Voortgang tonen van individuele pakketten" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Software-updates" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1111,32 +1126,37 @@ msgstr "" "Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " "nieuwe mogelijkheden." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "U_pgraden" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Upgrade naar de nieuwste versie van Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Controleren" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Upgrade hervatten" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Deze informatie in het vervolg niet meer tonen" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "Up_dates installeren" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Wijzigingen" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1246,11 +1266,12 @@ msgid "_Install security updates without confirmation" msgstr "_Veiligheids-updates zonder te vragen installeren" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1284,10 +1305,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Voer de volledige APT-regel in van het kanaal dat u wilt toevoegenUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Bezig met upgraden naar Ubuntu " +#~ "6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 veiligheidsupdates" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Upgrade naar de nieuwste versie van Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Kan de beschikbare updates niet installeren" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Uw system wordt gecontroleerd\n" +#~ "\n" +#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en " +#~ "leveren nieuwe mogelijkheden." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Officieel ondersteund" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/no.po b/po/no.po index dbe32eff..0ce223e5 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -134,7 +134,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,33 +147,33 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -181,23 +181,23 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,24 +206,24 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -233,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +266,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "Feil under fjerning av nøkkel" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,73 +341,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "En annen pakkehåndterer kjører" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,21 +422,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 #, fuzzy msgid "Asking for confirmation" msgstr "Undersøker systemkonfigurasjon" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "Oppgradering fullført" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -451,7 +456,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -484,19 +489,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -506,28 +517,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -535,37 +546,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" - -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 #, fuzzy -msgid "Your system has already been upgraded." -msgstr "Systemet har ødelagte pakker!" +msgid "Your system is up-to-date" +msgstr "Systemet er helt oppdatert!" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, fuzzy, python-format msgid "Remove %s" msgstr "Detaljer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, fuzzy, python-format msgid "Install %s" msgstr "_Installer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Oppgradering fullført" @@ -599,11 +613,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -634,7 +648,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -761,8 +775,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -786,169 +800,159 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "Feil under nedlasting av endringer. Sjekk tilkoblingen til internett." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Security Updates" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "Installerer oppdateringer..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versjon %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, fuzzy, python-format msgid "Download size: %s" msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "Systemet er helt oppdatert!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installerer oppdateringer..." msgstr[1] "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Installerer oppdateringer..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -964,86 +968,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Beskrivelse" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Programvareoppdateringer" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "Installerer oppdateringer..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1158,10 +1174,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1190,10 +1206,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Skriv inn hele APT-linjen til arkivet du vil legge til \n" @@ -1253,7 +1269,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1272,7 +1288,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1297,217 +1313,194 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Updates" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidratt programvare" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Updates" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "US eksport begrenset programvare" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 Security Updates" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Installerer oppdateringer..." - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD med Ubuntu 5.10 «Breezy Badger»" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -#, fuzzy -msgid "Officially supported" -msgstr "Offisielt støttet" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD med Ubuntu 5.10 «Breezy Badger»" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy -msgid "Oficially supported" +msgid "Officially supported" msgstr "Offisielt støttet" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Offisielt støttet" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Updates" @@ -1561,6 +1554,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Your system has already been upgraded." +#~ msgstr "Systemet har ødelagte pakker!" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Security Updates" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Offisielt støttet" + #, fuzzy #~ msgid "The following updates will be skipped:" #~ msgstr "De følgende pakkene er ikke oppgradert:" diff --git a/po/oc.po b/po/oc.po index c62d7e82..f9e0acb8 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-29 08:11+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -131,9 +131,9 @@ msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -149,79 +149,79 @@ msgstr "Picatz un nom pel disc" msgid "Please insert a disc in the drive:" msgstr "Metètz un disc dins lo legidor :" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Paquetatges corromputs" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Impossible installar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -231,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,42 +277,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Error al moment de metre a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Pas pro d'espaci liure" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +321,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Impossible installar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,72 +338,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Impossible descargar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Suprimir" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,19 +418,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Mesa a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." @@ -445,7 +450,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -477,19 +482,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -499,28 +510,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -528,36 +539,39 @@ msgid "" "You have to download a total of %s. " msgstr "Debètz telecargar un total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Suprimir %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Metre a jorn %s" @@ -591,11 +605,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -626,7 +640,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -748,8 +762,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -772,164 +786,154 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Metre a jorn Ubuntu" +msgid "Normal updates" +msgstr "Mesas a jorn per internet" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Mesas a jorn per internet" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s : \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Verificar" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Talha de la descarga : %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podètz installar %s mesa a jorn" msgstr[1] "Podètz installar %s mesas a jorn" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Mesas a jorn per internet" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s : \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -945,85 +949,105 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" +"Error a moment d'examinar lo CD\n" +"\n" +"%s" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "" +"Error a moment d'examinar lo CD\n" +"\n" +"%s" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Cambis" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Verificar" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Descripcion" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Cambis" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1130,10 +1154,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1160,10 +1184,10 @@ msgstr "URI :" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1213,7 +1237,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1232,7 +1256,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1257,206 +1281,186 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Pas liure (multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Pas liure (multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pas liure (multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pas liure (multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" @@ -1506,6 +1510,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Metre a jorn Ubuntu" + #~ msgid "Keys" #~ msgstr "Claus" diff --git a/po/pa.po b/po/pa.po index 14d8ece1..9d50e996 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-04-28 23:31+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -131,7 +131,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -144,79 +144,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -226,15 +226,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -242,11 +242,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -259,11 +259,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -272,42 +272,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,72 +333,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -408,20 +413,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -441,7 +446,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -473,19 +478,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -495,28 +506,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -524,36 +535,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -587,11 +601,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -622,7 +636,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -746,8 +760,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -771,164 +785,155 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." msgstr[1] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -944,87 +949,100 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 #, fuzzy msgid "Software Updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 #, fuzzy msgid "U_pgrade" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1134,10 +1152,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1168,10 +1186,10 @@ msgstr "ਵੇਰਵਾ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1221,7 +1239,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1241,7 +1259,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1265,194 +1283,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" @@ -1502,6 +1498,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" + #, fuzzy #~ msgid "Hide details" #~ msgstr "ਵੇਰਵਾ" diff --git a/po/pl.po b/po/pl.po index d82309de..d1f49bbb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:59+0000\n" "Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" @@ -130,9 +130,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -148,11 +148,11 @@ msgstr "Proszę podać nazwę dla płyty" msgid "Please insert a disc in the drive:" msgstr "Proszę włożyć płytę do napędu:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Uszkodzone pakiety" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -161,23 +161,23 @@ msgstr "" "kontynuowaniem należy je naprawić używając Synaptic Menedżer Pakietów lub " "apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Nie można zaktualizować wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -186,11 +186,11 @@ msgstr "" "zgłosić to jako błąd. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -200,27 +200,28 @@ msgstr "" "sieci. Można spróbować ponownie później. Poniżej znajduje się lista " "nieuwierzytelnionych pakietów." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Nie można zainstalować \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -228,12 +229,12 @@ msgstr "" "edubuntu-desktop. Nie jest możliwe określenie używanej wersji Ubuntu.\n" " Przed kontynuowaniem proszę zainstalować jeden z powyższych pakietów." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Pobranie nie powiodło się" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +244,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Odczytywanie bufora podręcznego" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -259,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Nie odnaleziono poprawnego serwera lustrzanego" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -283,11 +284,11 @@ msgstr "" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -301,11 +302,11 @@ msgstr "" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Błędne informacje o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -313,13 +314,14 @@ msgstr "" "W wyniku aktualizacji informacji o repozytoriach powstał błędny plik. Proszę " "zgłosić ten błąd." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Źródła stron niezależnych zostały wyłączone" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -327,11 +329,11 @@ msgstr "" "włączyć po aktualizacji używając narzędzia \"Właściwości oprogramowania\" " "lub za pomocą Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Błąd podczas aktualizacji" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -339,11 +341,11 @@ msgstr "" "Wystąpił problem podczas aktualizacji. Zazwyczaj wynika on z problemów z " "siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Zbyt mało miejsca na dysku" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -355,15 +357,15 @@ msgstr "" "\"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem." -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -376,11 +378,11 @@ msgstr "" "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" "configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -388,17 +390,18 @@ msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz " "dysk instalacyjny i spróbować ponownie. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Niektóre programy nie są już oficjalnie wspierane" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Te zainstalowane pakiety nie są już oficjalnie wspierane, są teraz " "obsługiwane przez społeczność (\"universe\").\n" @@ -406,23 +409,23 @@ msgstr "" "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " "zasugerowane ich usunięcie. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Usunąć niepotrzebne pakiety?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Pomiń ten krok" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Usuń" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -431,26 +434,31 @@ msgstr "" "poniższych wiadomościach. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -463,19 +471,19 @@ msgstr "" "być odnaleziony.\n" "To wskazuje na poważny problem, proszę zgłosić ten błąd." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Pytanie o potwierdzenie" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Aktualizacja w toku" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." @@ -496,7 +504,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Pobieranie pliku %li z %li z prędkością %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Około %li minut pozostało" @@ -526,23 +534,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Zastąpić plik konfiguracyjny\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Polecenie \"diff\" nie zostało odnalezione" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Wystąpił błąd krytyczny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -557,31 +571,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakiet zostanie usunięty." msgstr[1] "%s pakiety zostaną usunięte." msgstr[2] "%s pakietów zostanie usuniętych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s nowy pakiet zostanie zainstalowany." msgstr[1] "%s nowe pakiety zostaną zainstalowane." msgstr[2] "%s nowy pakietów zostanie zainstalowane." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakiet zostanie zaktualizowany." msgstr[1] "%s pakiety zostaną zaktualizowane." msgstr[2] "%s pakietów zostanie zaktualizowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -589,7 +603,7 @@ msgid "" "You have to download a total of %s. " msgstr "Konieczne pobranie ogółem %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -597,32 +611,35 @@ msgid "" msgstr "" "Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Nie odnaleziono żadnych aktualizacji" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Twój system jest w pełni zaktualizowany" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "System został już zaktualizowany." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Usuń %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instaluj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Aktualizuj %s" @@ -656,11 +673,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Wymagane ponowne uruchomienie komputera" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -698,10 +715,8 @@ msgid "Start the upgrade?" msgstr "Rozpocząć aktualizację?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Aktualizacja do Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -825,9 +840,10 @@ msgid "Verfication failed" msgstr "Weryfikacja nie powiodła się" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy lub " "z serwerem. " @@ -854,16 +870,16 @@ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -871,99 +887,85 @@ msgstr "" "Nie udało się pobrać informacji o zmianach. Proszę sprawdzić połączenie z " "Internetem." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Instalowanie pakietów" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Zaktualizuj do najnowszej wersji Ubuntu" +msgid "Normal updates" +msgstr "Instalowanie pakietów" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Instalowanie pakietów" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Nie można zainstalować wszystkich dostępnych aktualizacji" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Wersja %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Pobieranie informacji o zmianach..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "Sp_rawdź" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Rozmiar do pobrania: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Twój system jest w pełni zaktualizowany" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -971,35 +973,40 @@ msgstr[0] "Ilość dostępnych aktualizacji: %s" msgstr[1] "Ilość dostępnych aktualizacji: %s" msgstr[2] "Ilość dostępnych aktualizacji: %s" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Proszę czekać, to może chwilę potrwać." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Aktualizacja została ukończona." -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Sprawdź dostępne aktualizacje" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nowa wersja: %s (Rozmiar: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Wersja %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Twoja dystrybucja nie jest już wspierana" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1009,17 +1016,17 @@ msgstr "" "krytycznych aktualizacji. Zaktualizuj do nowszej wersji Ubuntu Linux. " "Odwiedź http://www.ubuntu.com po więcej informacji." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1043,58 +1050,67 @@ msgstr "" "\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Utrzymuj system w pełni zaktualizowany" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Sprawdzanie systemu\n" +"Błąd podczas przeszukiwania płyty CD\n" "\n" -"Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " -"bezpieczeństwa i dostarczyć nowe funkcje." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Utrzymuj system w pełni zaktualizowany" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Rozpocząć aktualizację?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "_Przerwij pobieranie" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Zmiany" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Sp_rawdź" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Sprawdź kanały oprogramowania w poszukiwaniu nowych aktualizacji" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Opis" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Informacje o wydaniu" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Pokaż postęp pobierania poszczególnych plików" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Aktualizacje oprogramowania" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1102,32 +1118,37 @@ msgstr "" "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " "bezpieczeństwa i dostarczyć nowe funkcje." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Aktualizuj" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Zaktualizuj do najnowszej wersji Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "Sp_rawdź" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Wznów aktualizację" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Ukryj tę informację w przyszłości" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Instaluj aktualizacje" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Zmiany" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1238,11 +1259,12 @@ msgid "_Install security updates without confirmation" msgstr "_Instaluj aktualizacje bezpieczeństwa bez potwierdzania" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1276,10 +1298,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" @@ -1338,8 +1360,9 @@ msgid "Check for new distribution releases" msgstr "Sprawdzaj nowe wydania dystrybucji" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1360,8 +1383,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "Zapamiętuje rozmiar okna Menedżera aktualizacji" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych aktualizacji" @@ -1388,212 +1412,190 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Aktualizacje dla Ubuntu 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Utrzymywane przez społeczność (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Inne oprogramowanie (Contributed)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Utrzymywane przez społeczność (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Utrzymywane przez społeczność (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Nie-wolnodostępne (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "Oprogramowanie objęte restrykcjami eksportowymi USA" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Instalowanie pakietów" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Wspierane oficjalnie" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 5.04" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Wspierane oficjalnie" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Utrzymywane przez społeczność (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Niektóre programy nie są już oficjalnie wspierane" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "O ograniczonych prawach kopiowania" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" @@ -1644,6 +1646,47 @@ msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." +#~ msgid "Some software no longer officially supported" +#~ msgstr "Niektóre programy nie są już oficjalnie wspierane" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Nie odnaleziono żadnych aktualizacji" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "System został już zaktualizowany." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Aktualizacja do Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Zaktualizuj do najnowszej wersji Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Nie można zainstalować wszystkich dostępnych aktualizacji" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Sprawdzanie systemu\n" +#~ "\n" +#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe " +#~ "punkty bezpieczeństwa i dostarczyć nowe funkcje." + +#~ msgid "Oficially supported" +#~ msgstr "Wspierane oficjalnie" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1755,9 +1798,6 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Sections" #~ msgstr "Sekcje:" -#~ msgid "Check for available updates" -#~ msgstr "Sprawdź dostępne aktualizacje" - #~ msgid "Sections:" #~ msgstr "Sekcje:" diff --git a/po/pt.po b/po/pt.po index 9c701587..dc4e9a6a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-24 10:17+0000\n" "Last-Translator: Joao Carvalhinho \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -129,9 +129,9 @@ msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -147,11 +147,11 @@ msgstr "Por favor introduza um nome para o disco" msgid "Please insert a disc in the drive:" msgstr "Por favor introduza um disco no leitor:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Pacotes Quebrados" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,23 +160,23 @@ msgstr "" "este software. Por favor corrija-os usando o synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível actualizar os meta-pacotes necessários" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -185,11 +185,11 @@ msgstr "" "reporte este erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "rede transitório. Pode tentar novamente mais tarde. Verifique abaixo uma " "lista de pacotes não autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Impossível de instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,15 +212,16 @@ msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -230,12 +231,12 @@ msgstr "" " Por favor instale um dos pacotes acima mencionados usando o synaptic ou apt-" "get antes de continuar." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Falha a obter" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "A ler a cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -261,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrada" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +287,11 @@ msgstr "" "Se escolher \"não\" a actualização irá ser cancelada." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +305,11 @@ msgstr "" "Deverão ser adicionadas entradas para '%s'? Se seleccionar 'Não' a " "actualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,13 +317,14 @@ msgstr "" "A actualização da informação de repositório resultou num ficheiro inválido. " "Por favor reporte este erro." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Fontes de terceiros desactivadas" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -330,11 +332,11 @@ msgstr "" "reactivá-las depois da actualização com a ferramenta 'propriedades-software' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Erro durante a actualização" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +345,11 @@ msgstr "" "tipo de problema na rede, por favor verifique a sua ligação à rede e volte a " "tentar." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Não existe espaço livre em disco suficiente" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +361,15 @@ msgstr "" "usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Impossível de instalar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +381,11 @@ msgstr "" "A actualização abortará agora. O seu sistema poderá estar num estado " "inutilizável. Foi efectuada uma recuperação (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Impossível de descarregar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,17 +393,18 @@ msgstr "" "A actualização abortará agora. Por favor verifique a sua ligação à internet " "ou media de instalação e volte a tentar. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Algum software já não é suportado oficialmente" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Estes pacotes instalados já não são suportados oficialmente, e agora são " "apenas suportados pela comunidade ('universe').\n" @@ -409,23 +412,23 @@ msgstr "" "Se não tem o repositório 'universe' activo será sugerida a remoção destes " "pacotes no próximo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Saltar Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Erro ao submeter" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,27 +437,32 @@ msgstr "" "abaixo para mais informação. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 #, fuzzy msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "A Actualizar informação de repositórios" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Informação de pacotes inválida" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -467,19 +475,19 @@ msgstr "" "pacote essencial '%s'.\n" "Isto indica um erro sério, por favor reporte este problema." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "A pedir confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "A actualizar" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." @@ -500,7 +508,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "A descarregar ficheiro %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Cerca de %li minutos restantes" @@ -530,23 +538,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Substituir ficheiro de configuração\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -561,28 +575,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s pacote será removido." msgstr[1] "%s pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s novo pacote será instalado." msgstr[1] "%s novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pacote será actualizado." msgstr[1] "%s pacotes serão actualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -590,7 +604,7 @@ msgid "" "You have to download a total of %s. " msgstr "Tem de efectuar o download de um total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -599,32 +613,35 @@ msgstr "" "A actualização poderá demorar várias horas e não poderá ser cancelada a " "qualquer instante posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Impossível de encontrar quaisquer actualizações" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "O seu sistema já foi actualizado." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -658,11 +675,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Necessário reiniciar" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -698,11 +715,8 @@ msgid "Start the upgrade?" msgstr "Iniciar a actualização?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"A actualizar para Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -826,9 +840,10 @@ msgid "Verfication failed" msgstr "Falhou a verificação" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Verificação da actualização falhou. Poderá existir um problema com a rede ou " "com o servidor. " @@ -855,18 +870,18 @@ msgstr "A descarregar ficheiro %li de %li a %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -874,134 +889,125 @@ msgstr "" "Falha a descarregar a lista de alterações. Por favor verifique a sua ligação " "à internet." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "A instalar actualizações" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Actualize para a última versão do Ubuntu" +msgid "Normal updates" +msgstr "A instalar actualizações" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "A instalar actualizações" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Impossível de instalar todas as actualizações disponíveis" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versão %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "A descarregar lista de alterações..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Verificar" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "O seu sistema está actualizado" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Pode instalar %s actualização" msgstr[1] "Pode instalar %s actualizações" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Por favor aguarde, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "A actualização está completa" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Verificar por actualizações disponíveis" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nova versão: %s (Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versão %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "A sua distribuição já não é suportada" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1011,17 +1017,17 @@ msgstr "" "versão mais recente do Ubuntu Linux. Veja http://www.ubuntu.com para mais " "informação em como actualizar." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "O índice de software está quebrado" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1045,58 +1051,67 @@ msgstr "" "Software\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Mantenha o seu sistema actualizado" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"A examinar o seu sistema\n" +"Erro ao ler o CD\n" "\n" -"Actualizações de software podem corrigir erros, eliminar problemas de " -"segurança, e fornecer novas funcionalidades." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Mantenha o seu sistema actualizado" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Iniciar a actualização?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Cancelar _Descarregamento" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Alterações" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "Verific_ar" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Verificar os repositórios de software por novas actualizações" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Descrição" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Notas de lançamento" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Mostrar progresso de ficheiros individuais" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Actualizações de Software" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1104,32 +1119,37 @@ msgstr "" "Actualizações de software podem corrigir erros, eliminar problemas de " "segurança, e fornecer novas funcionalidades." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "A_ctualização" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Actualize para a última versão do Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Verificar" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Retomar Actualização?" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Ocultar esta informação no futuro" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Instalar Actualizações" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Alterações" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1239,11 +1259,12 @@ msgid "_Install security updates without confirmation" msgstr "_Instalar actualizações de segurança sem confirmação" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1278,10 +1299,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Introduza uma linha completa APT para o repositório que deseja " @@ -1339,8 +1360,9 @@ msgid "Check for new distribution releases" msgstr "Verificar por novos lançamentos de distribuições" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1361,8 +1383,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "Guarda o tamanho do diálogo do gestor de actualizações" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Guarda o estado da lista que contém a lista de alterações e a descrição" @@ -1389,212 +1412,190 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Actualizações" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Mantido pela comunidade (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Não-livre (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Mantido pela comunidade (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Mantido pela comunidade (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Não-livre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Não-livre (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 Actualizações de Segurança" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "A instalar actualizações" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Suportado Oficialmente" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Actualizações" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Suportado Oficialmente" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Actualizações" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela comunidade (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Algum software já não é suportado oficialmente" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Direitos de autor restritos" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Actualizações" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" @@ -1645,6 +1646,47 @@ msgstr "Software compatível-DFSG com Dependências Não-Livres" msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Algum software já não é suportado oficialmente" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Impossível de encontrar quaisquer actualizações" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "O seu sistema já foi actualizado." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "A actualizar para Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Actualizações de Segurança" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Actualize para a última versão do Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Impossível de instalar todas as actualizações disponíveis" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "A examinar o seu sistema\n" +#~ "\n" +#~ "Actualizações de software podem corrigir erros, eliminar problemas de " +#~ "segurança, e fornecer novas funcionalidades." + +#~ msgid "Oficially supported" +#~ msgstr "Suportado Oficialmente" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1745,9 +1787,6 @@ msgstr "Software compatível-DFSG" #~ msgid "Sections" #~ msgstr "Secções" -#~ msgid "Check for available updates" -#~ msgstr "Verificar por actualizações disponíveis" - #~ msgid "Sections:" #~ msgstr "Secções:" diff --git a/po/pt_BR.po b/po/pt_BR.po index 57131852..2a927beb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-26 22:31+0000\n" "Last-Translator: KurtKraut \n" "Language-Team: Ubuntu-BR \n" @@ -133,9 +133,9 @@ msgstr "" "como um erro." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -151,11 +151,11 @@ msgstr "Por favor digite um nome para o disco" msgid "Please insert a disc in the drive:" msgstr "Por favor insira um disco no drive:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Pacotes quebrados" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -164,23 +164,23 @@ msgstr "" "programa. Por favor, arrume-os primeiro usando o Synaptic ou apt-get antes " "de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível atualizar os meta-pacotes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Não foi possível calcular a atualização" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -189,11 +189,11 @@ msgstr "" "favor reporte isto como um erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "de rede. Você pode tentar de novo depois. Veja abaixo uma lista dos pacotes " "não-autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Não foi possível instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,15 +217,16 @@ msgstr "" "um erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Não foi possível adivinhar o meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -235,12 +236,12 @@ msgstr "" "Por favor instale um desses pacotes primeiro usando o Synaptic ou apt-get " "antes de continuar." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Falha ao obter" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -250,15 +251,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Lendo cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrado" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -290,11 +291,11 @@ msgstr "" "Se você selecionar 'não' a atualização será cancelada." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Gerar sources padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +309,11 @@ msgstr "" "Entradas padrões para '%s' devem ser adicionadas? Se você escolher 'Não' a " "atualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,13 +321,14 @@ msgstr "" "Atualizando a informações de repositórios resultou em um arquivo inválido. " "Por favor reporte isso como um erro." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Fontes de terceiros desabilitadas" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -334,11 +336,11 @@ msgstr "" "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " "programa' ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Erro durante a atualização" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -347,11 +349,11 @@ msgstr "" "problemas de rede, por favor verifique a sua conexão de rede e tente " "novamente." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Não há espaço suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -363,15 +365,15 @@ msgstr "" "instalações anteriores usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -383,11 +385,11 @@ msgstr "" "A atualização será abortada agora. Seu sistema pode estar em um estado " "instável. Uma recuperação é executada (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Não foi possível obter as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -395,17 +397,18 @@ msgstr "" "A atualização será abortada agora. Por favor verifique sua conexão à " "Internet ou mídia de instalação e tente de novo. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Alguns softwares não são mais oficialmente suportado." +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Estes pacotes já instalados não são mais oficialmente suportados, e agora " "são suportados somente pela comunidade ('universe').\n" @@ -413,23 +416,23 @@ msgstr "" "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " "sugeridos à remoção no próximo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Pular Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,27 +441,32 @@ msgstr "" "abaixo para maiores informações. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Reiniciando o estado original do sistema" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Verificando o Gerenciador de Pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Atualizando informação do repositório" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 #, fuzzy msgid "Invalid package information" msgstr "Informação do pacote inválida" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +479,19 @@ msgstr "" "não pôde mais ser encontrado.\n" "Isto indica um sério erro, por favor reporte isso como um erro." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Pedindi por confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Atualizando" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "A Atualização do Sistema está completa." @@ -504,7 +512,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Obtendo arquivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Aproximadamente %li minutos restando" @@ -534,23 +542,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Substituir arquivo de configuração\n" "'%s' ?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -565,28 +579,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s pacote será removido." msgstr[1] "%s pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s novo pacote será instalado." msgstr[1] "%s novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pacote será atualizado." msgstr[1] "%s pacotes serão atualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -594,7 +608,7 @@ msgid "" "You have to download a total of %s. " msgstr "Você precisa obter um total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -602,30 +616,33 @@ msgid "" msgstr "" "A atualização pode levar diversas horas e não poderá ser cancelada depois." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Não foi possível encontrar nenhuma atualização" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Seu sistema está atualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Seu sistema já foi atualizado." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Atualizar %s" @@ -659,11 +676,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Reinicialização requerida" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -700,11 +717,8 @@ msgid "Start the upgrade?" msgstr "Iniciar a Atualização?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Atualizando para o Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -829,9 +843,10 @@ msgid "Verfication failed" msgstr "Falha na verificação" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Falha na verificação da atualização. Pode ter havido um problema com a rede " "ou com o servidor. " @@ -858,20 +873,20 @@ msgstr "Obtendo arquivo %li de %li a %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "A lista de alterações não está disponível ainda. Por favor, tente novamente " "mais tarde." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "A lista de alterações não está disponível ainda. Por favor, tente novamente " "mais tarde." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -879,134 +894,125 @@ msgstr "" "Não foi possível baixar a lista de mudanças. Por favor, verifique sua " "conexão com a internet." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Instalando Atualizações" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Atualizar para a última versão do Ubuntu" +msgid "Normal updates" +msgstr "Instalando Atualizações" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Instalando Atualizações" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Não foi possível instalar todas as atualizações disponíveis" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Obtendo a lista de alterações" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Verificar" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Seu sistema está atualizado" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Você pode instalar %s atualização" msgstr[1] "Você pode instalar %s atualizações" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Por favor, espere, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Atualização completa" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Procurar updates disponíveis" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "New version: %s (Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Sua distribuição não é mais suportada" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1016,17 +1022,17 @@ msgstr "" "falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. " "Veja http://www.ubuntu-br.org" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "A índex de software está quebrado" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1050,58 +1056,67 @@ msgstr "" "de Programas\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Manter o Sistema Atualizado" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Verificando as Atualizações Disponíveis\n" +"Erro analisando o CD\n" "\n" -"Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " -"segurança, e prover novas funcionalidades para você." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Manter o Sistema Atualizado" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Iniciar a Atualização?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Cancelar _Download" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Mudanças" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Verificar" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Verificar os canais de software por novas atualizações" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Descrição" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Notas de Versão" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Exibir progresso de arquivos únicos" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Atualizações de Programas" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1109,33 +1124,38 @@ msgstr "" "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " "segurança, e prover novas funcionalidades para você." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 #, fuzzy msgid "U_pgrade" msgstr "At_ualizar" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Atualizar para a última versão do Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Verificar" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "Continua_r Atualização" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Ocultar esta informação no futuro" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Instalar Atualizações" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Mudanças" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1247,11 +1267,12 @@ msgid "_Install security updates without confirmation" msgstr "_Instalar novas atualizações de segurança sem confirmação" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1285,10 +1306,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Insira a linha completa do APT do canal que você quer adicionarUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Atualizando para o Ubuntu 6.06 " +#~ "LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Atualizações de Segurança do Ubuntu 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Atualizar para a última versão do Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Não foi possível instalar todas as atualizações disponíveis" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Verificando as Atualizações Disponíveis\n" +#~ "\n" +#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades " +#~ "de segurança, e prover novas funcionalidades para você." + +#~ msgid "Oficially supported" +#~ msgstr "Suportado Oficialmente" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1765,9 +1807,6 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Sections" #~ msgstr "Seções" -#~ msgid "Check for available updates" -#~ msgstr "Procurar updates disponíveis" - #~ msgid "Sections:" #~ msgstr "Sections:" diff --git a/po/ro.po b/po/ro.po index e4231744..32441a57 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-24 17:39+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -135,9 +135,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -153,12 +153,12 @@ msgstr "Introduceţi un nume pentru disc" msgid "Please insert a disc in the drive:" msgstr "Introduceţi un disc în unitate:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 #, fuzzy msgid "Broken packages" msgstr "Pachete deteriorate" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 #, fuzzy msgid "" "Your system contains broken packages that couldn't be fixed with this " @@ -168,46 +168,46 @@ msgstr "" "program. Înainte de a continua vă rugăm să le remediaţi utilizând synaptic " "sau apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 #, fuzzy msgid "Error authenticating some packages" msgstr "Eroare la autentificarea unor pachete." -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Nu pot instala '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -217,25 +217,29 @@ msgstr "" "(eroare). " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" +"Sistemul conţine pachete deteriorate care nu au putut fi reparate cu acest " +"program. Înainte de a continua vă rugăm să le remediaţi utilizând synaptic " +"sau apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Nu s-a putut extrage" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +249,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Citire cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -261,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -278,11 +282,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -291,42 +295,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Eroare în timpul actualizării" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Spaţiu liber insuficient" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -335,15 +339,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Nu s-au putut instalat upgrade-urile" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -352,73 +356,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Nu pot descărca actualizările" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "Şter_ge" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 #, fuzzy msgid "Restoring original system state" msgstr "Se reface starea iniţială a sistemului" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -428,19 +437,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Se actualizează" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" @@ -460,7 +469,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -492,19 +501,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -514,31 +529,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -546,36 +558,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Nu s-au găsit actualizări" - -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +624,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -644,7 +659,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -768,8 +783,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -792,16 +807,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Nu există nici un pachet de actualizat." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -810,100 +825,85 @@ msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Actualizări de Securitate Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_Instalează actualizarile" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Se actualizează Ubuntu" +msgid "Normal updates" +msgstr "_Instalează actualizarile" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_Instalează actualizarile" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Versiunea %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Se descarcă listă schimbărilor..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Sistemul dumneavoastră este actualizat la zi!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -911,53 +911,58 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_Instalează actualizarile" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versiunea nouă: %s (Mărime: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Versiunea %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Distribuţia dvs. nu mai este suportată" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -973,87 +978,108 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" +"Eroare la scanarea CD-ului\n" +"\n" +"%s" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "" +"Eroare la scanarea CD-ului\n" +"\n" +"%s" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Modificări" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Descriere" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Actualizări software" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 #, fuzzy msgid "U_pgrade" msgstr "_Actualizează" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Continuă Actualizarea" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "_Instalează actualizarile" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Modificări" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1166,10 +1192,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1197,10 +1223,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Introduceţi linia APT completă a locaţiei pe care doriţi să o " @@ -1265,7 +1291,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1284,7 +1310,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1309,214 +1335,191 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualizări Ubuntu 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Pachete întreţinute de comunitate (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Software în contribuţie" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Actualizări de securitate Ubuntu 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Pachete întreţinute de comunitate (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Pachete non-libere (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pachete non-libere (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "Software cu restricţii de export din SUA" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Actualizări de securitate Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Actualizări de Securitate Ubuntu 5.10" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "_Instalează actualizarile" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Pachete suportate oficial" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizări Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualizări de securitate Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Actualizări de securitate Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Actualizări de securitate Ubuntu 5.04" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Pachete suportate oficial" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Actualizări Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualizări de securitate Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Pachete întreţinute de comunitate (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pachete non-libere (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Pachete suportate oficial" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrictiv" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizări de securitate Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Actualizări Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualizări de securitate Ubuntu 5.04" @@ -1567,6 +1570,24 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Could not find any upgrades" +#~ msgstr "Nu s-au găsit actualizări" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Sistemul dumneavoastră este actualizat la zi!" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Actualizări de Securitate Ubuntu 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Se actualizează Ubuntu" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Pachete suportate oficial" + #~ msgid "Hide details" #~ msgstr "Ascunde detaliile" diff --git a/po/ru.po b/po/ru.po index 616a59c8..4b799c1e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-25 19:23+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -130,9 +130,9 @@ msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -148,11 +148,11 @@ msgstr "Введите название для диска" msgid "Please insert a disc in the drive:" msgstr "Пожалуйста, вставьте диск в привод:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Поврежденные пакеты" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -161,23 +161,23 @@ msgstr "" "данной программой. Пожалуйста, исправьте их, используя synaptic или apt-get, " "прежде чем продолжить." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Невозможно обновить требуемые мета-пакеты" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -186,11 +186,11 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "кратковременная проблема с сетью и стоит попробовать позже. Ниже приведен " "список пакетов, не прошедших проверку." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Невозможно установить '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,15 +214,16 @@ msgstr "" "ошибке. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -231,12 +232,12 @@ msgstr "" " Для продолжения сначала установите один из приведенных выше пакетов с " "помощью synaptic или apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Не удалось получить" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +247,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Чтение кэша" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +263,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Не найдено действующее зеркало" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +287,11 @@ msgstr "" "Ответ 'Нет' отменит обновление." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +304,11 @@ msgstr "" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Информация о репозитории неверна" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,13 +316,14 @@ msgstr "" "В результате обновления информации о репозиториях образовался неверный файл. " "Пожалуйста отправьте отчет об ошибке." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Источники третьих сторон отключены" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -329,11 +331,11 @@ msgstr "" "обновления вы можете снова включить их с помощью утилиты 'software-" "properties' или synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Ошибка при обновлении" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +343,11 @@ msgstr "" "При обновлении возникла проблема. Обычно это бывает вызвано проблемами в " "сети, проверьте сетевые подключения и повторите попытку." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Недостаточно свободного места на диске" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +359,15 @@ msgstr "" "предыдущих установок с помощью команды 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Невозможно установить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +379,11 @@ msgstr "" "Обновление прервано. Система, возможно, находится в неработоспособном " "состоянии. Запущено восстановление системы (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Невозможно загрузить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,17 +391,18 @@ msgstr "" "Обновление прервано. Проверьте соединение с Интернет или установочный диск и " "попробуйте снова. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Некоторые программы больше не поддерживаются официально" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Эти установленные пакеты больше не поддерживаются официально. Теперь их " "поддержкой занимается только сообщество ('universe').\n" @@ -407,23 +410,23 @@ msgstr "" "Если у вас не подключен репозиторий 'universe', на следующем шаге вам " "предложат удалить эти пакеты. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Пропустить этот шаг" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Удалить" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Ошибка при фиксировании" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,26 +435,31 @@ msgstr "" "ниже. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Обновление информации о репозитории" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Неверная информация о пакете" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -464,19 +472,19 @@ msgstr "" "найден.\n" "Это говорит о серьезной проблеме, пожалуйста отправьте отчет об ошибке." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Запрос подтверждения" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Обновление" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Обновление системы завершено." @@ -497,7 +505,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Загрузка файла %li из %li со скоростью %s/с" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Осталось приблизительно %li минут" @@ -527,23 +535,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Заменить конфигурационный файл\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Не найдена команда 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Произошла неисправимая ошибка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -557,31 +571,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s пакет будет удален." msgstr[1] "%s пакета будут удалены." msgstr[2] "%s пакетов будут удалены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s новый пакет будет установлен." msgstr[1] "%s новых пакета будут установлены." msgstr[2] "%s новых пакетов будут установлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет будет обновлен." msgstr[1] "%s пакета будут обновлены." msgstr[2] "%s пакетов будут обновлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -589,7 +603,7 @@ msgid "" "You have to download a total of %s. " msgstr "Всего требуется загрузить %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -598,31 +612,34 @@ msgstr "" "Обновление может занять несколько часов и не может быть прервано в любой " "момент." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Обновления не найдены" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Ваша система не требует обновления" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Система уже обновлена." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Удалить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Установить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Обновить %s" @@ -656,11 +673,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Требуется перезагрузка" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" @@ -695,10 +712,8 @@ msgid "Start the upgrade?" msgstr "Начать обновление?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Обновление до Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -822,9 +837,10 @@ msgid "Verfication failed" msgstr "Проверка не удалась" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Проверка обновления не удалась. Возможно, возникла проблема в сети или на " "сервере. " @@ -851,18 +867,18 @@ msgstr "Загрузка файла %li из %li со скоростью %s/с" msgid "Downloading file %li of %li with unknown speed" msgstr "Загрузка файла %li из %li с неизвестной скоростью" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "" "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -870,99 +886,85 @@ msgstr "" "Не удалось загрузить список изменений. Пожалуйста, проверьте соединение с " "интернет." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Обновления безопасности Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Установить обновления" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Обновить систему до последней версии Ubuntu" +msgid "Normal updates" +msgstr "Установить обновления" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Установить обновления" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Невозможно установить все доступные обновления" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Версия %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Загрузка списка изменений..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "Проверить" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Размер загружаемых данных: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Ваша система не требует обновления" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -970,35 +972,40 @@ msgstr[0] "Вы можете установить %s обновление" msgstr[1] "Вы можете установить %s обновления" msgstr[2] "Вы можете установить %s обновлений" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Пожалуйста подождите, это может занять некоторое время." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Обновление завершено" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Установить обновления" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Новая версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Версия %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Ваша версия Ubuntu больше не поддерживается" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1008,17 +1015,17 @@ msgstr "" "обновления. Обновите систему до более поздней версии Ubuntu Linux. Для " "получения информации об обновлении посетите http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Индекс программ поврежден" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1041,58 +1048,67 @@ msgstr "" "\"Система\" -> \"Администрирование\" -> \"Параметры приложений\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Не забывайте обновлять систему" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Обследование системы\n" +"Ошибка при сканировании CD\n" "\n" -"Обновления программ исправляют ошибки, уязвимости и добавляют новые " -"возможности." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Не забывайте обновлять систему" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Начать обновление?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Отменить _загрузку" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Изменения" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Проверить" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Проверить каналы приложений на наличие обновлений" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Описание" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Сведения о релизе" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Показывать прогресс для отдельных файлов" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Обновления программ" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1100,32 +1116,37 @@ msgstr "" "Обновления программ исправляют ошибки, уязвимости и добавляют новые " "возможности." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "Обновить" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Обновить систему до последней версии Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "Проверить" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Продолжить обновление" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "Не показывать эту информацию в дальнейшем" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "Установить обновления" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Изменения" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1235,11 +1256,12 @@ msgid "_Install security updates without confirmation" msgstr "Устанавливать обновления безопасности без запроса" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1273,10 +1295,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Введите полную строку APT канала, который вы хотите добавитьUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Обновление до Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Обновления безопасности Ubuntu 5.10" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Обновить систему до последней версии Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Невозможно установить все доступные обновления" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Обследование системы\n" +#~ "\n" +#~ "Обновления программ исправляют ошибки, уязвимости и добавляют новые " +#~ "возможности." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Официально поддерживается" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/rw.po b/po/rw.po index 1eae4fdb..eecc39d9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:44+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -142,7 +142,7 @@ msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -155,56 +155,56 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -212,24 +212,24 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -239,15 +239,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -255,11 +255,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -272,11 +272,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -285,43 +285,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "i Urufunguzo" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,73 +347,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "Muyobozi ni" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,20 +428,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "Byarangiye" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -456,7 +461,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -489,19 +494,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -511,25 +522,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -537,37 +548,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" - -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 #, fuzzy -msgid "Your system has already been upgraded." -msgstr "Sisitemu" +msgid "Your system is up-to-date" +msgstr "Sisitemu ni Hejuru Kuri Itariki" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,11 +615,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -636,7 +650,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -762,8 +776,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -786,16 +800,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "ni a Gishya Bya Bihari" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -803,152 +817,142 @@ msgid "" msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "5" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "Kwinjiza porogaramu" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, fuzzy, python-format msgid "Version %s: \n" msgstr "Verisiyo \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Iyimura... i" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "Sisitemu ni Hejuru Kuri Itariki" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Kwinjiza porogaramu" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Verisiyo \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ikwirakwiza... ni Oya" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -964,87 +968,100 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Amahinduka" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Isobanuramiterere" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Ibihuzagihe bya porogaramumudasobwa" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 #, fuzzy msgid "U_pgrade" msgstr "Byarangiye" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "Byarangiye" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "Kwinjiza porogaramu" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Amahinduka" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1155,10 +1172,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1191,10 +1208,10 @@ msgstr "Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "\n" "Language-Team: Slovak \n" @@ -130,9 +130,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -148,11 +148,11 @@ msgstr "Prosím, zadajte názov disku" msgid "Please insert a disc in the drive:" msgstr "Prosím, vložte disk do mechaniky:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Poškodené balíky" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,23 +160,23 @@ msgstr "" "Váš systém obsahuje poškodené balíky, ktoré nemôžu byť týmto programom " "opravené. Pred pokračovaním ich opravte programom synaptic alebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Nemôžem aktualizovať požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -185,11 +185,11 @@ msgstr "" "ako chybu. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -199,27 +199,28 @@ msgstr "" "problémom v sieti. Môžete to opäť skúsiť neskôr. Nižšie je uvedený zoznam " "neoverených balíčkov." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Nemôžem inštalovať '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -228,12 +229,12 @@ msgstr "" "Pred pokračovaním nainštalujte jeden z vyššie uvedených balíkov pomocou " "Synapticu alebo apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Zlyhalo získavanie aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +244,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Čítam vyrovnávaciu pamäť cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -259,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Nebol nájdený vhodný server" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -283,11 +284,11 @@ msgstr "" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -301,11 +302,11 @@ msgstr "" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Neplatná informácia o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -313,13 +314,14 @@ msgstr "" "Aktualizácia informácií o zdrojoch softvéru skončila neplatným súborom. " "Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Zdroje tretích strán sú zakázané" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -327,11 +329,11 @@ msgstr "" "Môžete ich povoliť po upgrade pomocou nástroja 'vlastnosti-softwaru' alebo " "pomocou synapticu." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Chyba počas aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -339,11 +341,11 @@ msgstr "" "Počas aktualizácie sa objavil problém, ktorý je zvyčajne spôsobený chybou " "sieťového pripojenia, preto skontrolujte vaše pripojenie a skúste znova." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Nedostatok voľného miesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -355,15 +357,15 @@ msgstr "" "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -375,11 +377,11 @@ msgstr "" "Aktualizácia teraz skončí. Váš systém môže byť v nepoužiteľnom stave, preto " "bol spustený príkaz na zotavenie sa z tohto stavu (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť požadované balíky" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -387,17 +389,18 @@ msgstr "" "Aktualizácia bola neočakávane prerušená. Skontrolujte svoje internetové " "pripojenie alebo inštalačné médiá a skúste znova. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Niektoré programy už nie sú viac oficiálne podporované" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Tieto nainštalované balíky už viac nie sú oficiálne podporované, ale stará " "sa o ne komunita.\n" @@ -405,23 +408,23 @@ msgstr "" "Pokiaľ nemáte zapnutý komunitou spravovaný zdroj softvéru 'universe', budú " "tieto balíky v ďalšom kroku navrhnuté na odstránenie. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Preskočiť tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Odstrániť" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -430,26 +433,31 @@ msgstr "" "uvedené správy. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Kontrola správcu balíkov" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Aktualizácia informácií o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -462,19 +470,19 @@ msgstr "" "s'.\n" "To znamená závažný problém. Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Požaduje sa potvrdenie" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Prebieha aktualizácia" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." @@ -495,7 +503,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Zostáva %li minút" @@ -525,23 +533,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Nahradiť konfiguračný súbor\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Príkaz 'diff' nebol nájdený." -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Nastala závažná chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -557,31 +571,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "Bude odstránený %s balík." msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "Bude nainštalovaný %s nový balík." msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bude aktualizovaný %s balík." msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -589,38 +603,41 @@ msgid "" "You have to download a total of %s. " msgstr "Musíte stiahnuť celkom %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Nemôžno nájsť žiadne aktualizácie" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Váš systém je aktuálny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Váš systém už bol aktualizovaný." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Odstrániť %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Inštalovať %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Aktualizovať %s" @@ -654,11 +671,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Je potrebný reštart" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -695,11 +712,8 @@ msgid "Start the upgrade?" msgstr "Spustiť aktualizáciu?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Prebieha aktualizácia na Ubuntu 6.06 " -"LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -823,9 +837,10 @@ msgid "Verfication failed" msgstr "Zlyhala verifikácia" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Zlyhala verifikácia aktualizácie. Môže to byť spôsobené sieťovým problémom " "alebo nedostupňosťou servera. " @@ -852,16 +867,16 @@ msgstr "Sťahovanie súboru %li z %li pri %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Zoznam zmien ešte nie je k dispozícii. Skúste neskôr." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Zoznam zmien ešte nie je k dispozícii. Skúste neskôr." -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -869,99 +884,85 @@ msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Nainštalovať _aktualizácie" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Aktualizovať na najnovšiu verziu Ubuntu" +msgid "Normal updates" +msgstr "Nainštalovať _aktualizácie" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Nainštalovať _aktualizácie" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Nebolo možné nainštalovať všetky dostupné aktualizácie" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Verzia %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Získava sa zoznam zmien..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Skontrolovať" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Veľkosť na stiahnutie: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Váš systém je aktuálny" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -969,35 +970,40 @@ msgstr[0] "Môžete nainštalovať %s aktualizáciu" msgstr[1] "Môžete nainštalovať %s aktualizácie" msgstr[2] "Môžete nainštalovať %s aktualizácií" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Čakajte prosím, toto môže chvíľu trvať." -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Aktualizácia je dokončená" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Kontrolujem aktualizácie..." + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nová verzia: %s (veľkosť: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Verzia %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Vaša distribúcia už nie je podporovaná" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1008,17 +1014,17 @@ msgstr "" "Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." "com.\"" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Index softvéru je poškodený" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1042,58 +1048,67 @@ msgstr "" "softvéru'." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Udržujte si systém v aktuálnom stave" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Analyzuje sa váš systém\n" +"Chyba pri načítavaní CD\n" "\n" -"Softvérové aktualizácie opravujú chyby, odstraňujú bezpečnostné " -"zraniteľnosti alebo poskytujú nové vlastnosti." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Udržujte si systém v aktuálnom stave" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Spustiť aktualizáciu?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "_Zrušiť sťahovanie" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Zmeny" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Skontrolovať" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Skontrolovať, či zdroje softvéru neobsahujú nové aktualizácie" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Popis" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Poznámky k vydaniu" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Zobraziť priebeh jednotlivých súborov" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Aktualizácie softvéru" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1101,32 +1116,37 @@ msgstr "" "Softvérové aktualizácie opravujú chyby, odstraňujú bezpečnostné " "zraniteľnosti alebo poskytujú nové vlastnosti." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Aktualizovať" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Aktualizovať na najnovšiu verziu Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Skontrolovať" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_Pokračovať v aktualizácii" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Túto správu už viac nezobrazovať" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "Nainštalovať _aktualizácie" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Zmeny" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1237,11 +1257,12 @@ msgid "_Install security updates without confirmation" msgstr "_Bezpečnostné aktualizácie inštalovať automaticky bez potvrdenia" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1276,10 +1297,10 @@ msgstr "Adresa:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete pridaťUpgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Prebieha aktualizácia na Ubuntu " +#~ "6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Aktualizovať na najnovšiu verziu Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Nebolo možné nainštalovať všetky dostupné aktualizácie" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Analyzuje sa váš systém\n" +#~ "\n" +#~ "Softvérové aktualizácie opravujú chyby, odstraňujú bezpečnostné " +#~ "zraniteľnosti alebo poskytujú nové vlastnosti." + +#~ msgid "Oficially supported" +#~ msgstr "Oficiálne podporované" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -2016,9 +2058,6 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "Updating package list..." #~ msgstr "Aktualizujem zoznam balíkov..." -#~ msgid "Checking for updates..." -#~ msgstr "Kontrolujem aktualizácie..." - #~ msgid "There are no updates available." #~ msgstr "Nie sú dostupné žiadne aktualizácie." diff --git a/po/sr.po b/po/sr.po index c2cd91c3..420a0fa4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-27 12:27+0000\n" "Last-Translator: Dejan Milosavljevic \n" "Language-Team: Serbian \n" @@ -130,7 +130,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -143,79 +143,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,72 +332,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -407,19 +412,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -439,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -471,19 +476,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -493,31 +504,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -525,36 +536,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -588,11 +602,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -623,7 +637,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -744,8 +758,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -768,110 +782,94 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -879,52 +877,56 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -940,84 +942,96 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1121,10 +1135,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1151,10 +1165,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1204,7 +1218,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1223,7 +1237,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1247,192 +1261,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/sv.po b/po/sv.po index 34bd43c1..a1bac353 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:18+0000\n" "Last-Translator: Robin Sonefors \n" "Language-Team: Swedish \n" @@ -133,9 +133,9 @@ msgstr "" "Nyckeln du valde kan inte tas bort. Var vänlig anmäl detta som en bugg." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -151,11 +151,11 @@ msgstr "Skriv in ett namn på skivan" msgid "Please insert a disc in the drive:" msgstr "Sätt in en skiva i enheten:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Trasiga paket" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -164,23 +164,23 @@ msgstr "" "programmet. Reparera dem först med synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Kan inte uppdatera obligatoriska meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppdateringen" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." @@ -189,11 +189,11 @@ msgstr "" "vänlig rapportera detta som en bugg. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista " "med icke autentisierade paket." -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Kan inte installera \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,15 +217,16 @@ msgstr "" "rapportera detta som en bugg. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -235,12 +236,12 @@ msgstr "" " Installera ett av dessa paket med synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "Misslyckades med att hämta" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -250,15 +251,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Läser cache" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Hittade ingen giltig serverspegel" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -290,11 +291,11 @@ msgstr "" "Om du väljer \"nej\" kommer uppdateringen avbrytas." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "Lägg till standardförråd?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -307,11 +308,11 @@ msgstr "" "Ska standardposter för \"%s\" läggas till? Om du väljer \"Nej\" kommer " "uppdateringen avbrytas." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Information om förråd ogiltig" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -319,13 +320,14 @@ msgstr "" "Uppdatering av förrådsinformationen orsakade en ogiltig fil. Var vänlig " "rapportera detta som en bugg." -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Tredjepartskällor inaktiverade" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -333,11 +335,11 @@ msgstr "" "aktivera dem efter uppgraderingen med verktyget \"software-properties\" " "eller med synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Fel vid uppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +348,11 @@ msgstr "" "av nätverksproblem, var god kontrollera din nätverksanslutning och försök " "igen." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Inte tillräckligt med ledigt diskutrymme" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +364,15 @@ msgstr "" "använda 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppdateringen?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -382,11 +384,11 @@ msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " "En återställning kördes (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Det gick inte ladda ner uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,39 +396,40 @@ msgstr "" "Uppdateringen avbryts nu. Var god kontrollera din internetanslutning eller " "ditt installationsmedia och försök igen. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "Viss programvara har inte längre officiellt stöd" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " "gemenskapsunderhållna ('universe').Om du inte har 'universe' aktiverat " "kommer dessa paket föreslås för borttagning i nästa steg. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_Hoppa över det här steget" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Ta bort" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "Fel inträffade vid utförandet" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,26 +438,31 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "Återställer systemstatus" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Ogiltig paketinformation" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -467,19 +475,19 @@ msgstr "" "nödvändiga paketet \"%s\" längre.\n" "Det här tyder på ett alvarligt fel, var god och rapportera detto som en bugg." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Ber om bekräftelse" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Uppgraderar" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Söker efter föråldrad mjukvara" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." @@ -500,7 +508,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Hämtar hem fil %li av %li i %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "Omkring %li minuter återstår" @@ -530,23 +538,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "Ersätt konfigurationsfil\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Kommandot \"diff\" hittades inte" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ett kritiskt fel uppstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -561,28 +575,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket kommer att tas bort." msgstr[1] "%s paket kommer att tas bort." -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s nytt paket kommer att installeras." msgstr[1] "%s nya paket kommer att installeras." -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket kommer att uppgraderas." msgstr[1] "%s paket kommer att uppgraderas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -590,7 +604,7 @@ msgid "" "You have to download a total of %s. " msgstr "Du behöver ladda ner totalt %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -598,30 +612,36 @@ msgid "" msgstr "" "Uppdateringen kan ta flera timmar och kan inte avbrytas någon gång senare." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att undvika dataförlust." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Kunde inte hitta några uppgraderingar" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "Ditt system är uppdaterat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Ditt system har redan uppgraderats." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#, fuzzy +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" +"Det finns %s uppdateringar tillgängliga för ditt system, som kräver " +"att %s data hämtas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Ta bort %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installera %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Uppgradera %s" @@ -655,11 +675,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Omstart krävs" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -696,10 +716,8 @@ msgid "Start the upgrade?" msgstr "Starta uppgraderingen?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Uppdaterar till Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -826,9 +844,10 @@ msgid "Verfication failed" msgstr "Kontrollen misslyckades" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" "Kontrollen av uppdateringen misslyckades. Det kan vara ett problem med " "nätverket eller servern. " @@ -855,16 +874,16 @@ msgstr "Hämtar hem fil %li av %li i %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Hämtar hem fil %li av %li med okänd hastighet" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Listan med ändringar är inte tillgänglig än. Försök igen senare" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "Listan med ändringar är inte tillgänglig än. Försök igen senare" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." @@ -872,137 +891,130 @@ msgstr "" "Misslyckades med att hämta listan med ändringar. Kontrollera din " "internetanslutning." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" -#: ../UpdateManager/UpdateManager.py:230 +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 #, fuzzy -msgid "Recommended updates of Ubuntu" +msgid "Recommended updates" msgstr "%d uppdateringar" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "%d uppdateringar" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:239 +#, fuzzy +msgid "Backports" +msgstr "%d uppdateringar" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Uppdatera till senaste versionen av Ubuntu" +msgid "Normal updates" +msgstr "%d uppdateringar" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Uppdateringar" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "Det går inte att installera alla tillgängliga uppdateringar" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "Hämtar lista med ändringar..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" -msgstr "Markera _inga" +#: ../UpdateManager/UpdateManager.py:545 +#, fuzzy +msgid "_Uncheck All" +msgstr "_Uppdatera alla" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "Markera _alla" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "_Kontrollera" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 #, fuzzy msgid "None" msgstr "en" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 #, fuzzy msgid "1 KB" msgstr "%d kB" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, fuzzy, python-format msgid "%.0f KB" msgstr "%.2f MB" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, fuzzy, python-format msgid "%.1f MB" msgstr "%.2f MB" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "Nerladdningsstorlek: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "Ditt system är uppdaterat" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installera %s uppdatering" msgstr[1] "Du kan installera %s uppdateringar" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "Var god vänta, det här kan ta lite tid" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "Uppdateringen är färdig" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Kontrollera efter tillgängliga uppdateringar" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny version: %s (Storlek: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s:" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, fuzzy, python-format msgid "(Size: %s)" msgstr "Storlek:" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "Din distribution stöds inte längre" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -1012,17 +1024,17 @@ msgstr "" "till en senare version av Ubuntu Linux. Se http://www.ubuntu.com för mer " "information om att uppgradera." -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "Indexet för program är trasigt" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -1046,58 +1058,67 @@ msgstr "" "\"Programvaruinställningar\"" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "Håll ditt system uppdaterat" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"Undersöker ditt system\n" +"Fel vid genomsökning av CD\n" "\n" -"Mjukvaruuppdateringar fixar fel, eliminerar säkerhetsproblem och ger dig nya " -"funktioner." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "Håll ditt system uppdaterat" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Starta uppgraderingen?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Avbryt _nedladdningen" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Ändringar" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "_Kontrollera" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "Kontrollera programvarukanalerna efter nya uppdateringar" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Beskrivning" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "Versionsinformation" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "Visa förlopp för enstaka filer" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Programvaruuppdateringar" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1105,32 +1126,37 @@ msgstr "" "Mjukvaruuppdateringar fixar fel, eliminerar säkerhetsproblem och ger dig nya " "funktioner." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_Uppdateringar" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "Uppdatera till senaste versionen av Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "_Kontrollera" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "Distribution:" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_Dölj denna information i framtiden" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_Installera uppdateringar" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Ändringar" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 #, fuzzy msgid "updates" msgstr "Uppdateringar" @@ -1243,11 +1269,12 @@ msgid "_Install security updates without confirmation" msgstr "_Installera säkerhetsuppdateringar utan bekräftelse" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1281,10 +1308,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Skriv in hela APT-raden till kanalen du vill lägga till\n" @@ -1343,8 +1370,9 @@ msgid "Check for new distribution releases" msgstr "Sök efter ny utgåva av distributionen" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1365,8 +1393,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "Sparar storleken på uppdateringshanterarens fönster" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" "Sparar läget på expanderaren som innehåller listan på ändringar och " @@ -1394,214 +1423,191 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Uppdateringar" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Gemenskapsunderhållen (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidragen programvara" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Gemenskapsunderhållen (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Gemenskapsunderhållen (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ickefri (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ickefri (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "Programvara med USA-exportbegränsningar" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 \"Dapper Drake\"" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -#, fuzzy -msgid "Recommended updates" -msgstr "%d uppdateringar" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "%d uppdateringar" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 #, fuzzy msgid "Backported updates" msgstr "%d uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Stöds officiellt" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Stöds officiellt" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Bakåtportar" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Gemenskapsunderhållen (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ickefri (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Viss programvara har inte längre officiellt stöd" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begränsad upphovsrätt" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" @@ -1652,6 +1658,57 @@ msgstr "DFSG-kompatibel programvara med icke-fria beroenden" msgid "Non-DFSG-compatible Software" msgstr "Inte DFSG-kompatibel programvara" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Viss programvara har inte längre officiellt stöd" + +#~ msgid "Could not find any upgrades" +#~ msgstr "Kunde inte hitta några uppgraderingar" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "Ditt system har redan uppgraderats." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Uppdaterar till Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" + +#, fuzzy +#~ msgid "Recommended updates of Ubuntu" +#~ msgstr "%d uppdateringar" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "Uppdatera till senaste versionen av Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "Det går inte att installera alla tillgängliga uppdateringar" + +#~ msgid "Select _None" +#~ msgstr "Markera _inga" + +#~ msgid "Select _All" +#~ msgstr "Markera _alla" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Undersöker ditt system\n" +#~ "\n" +#~ "Mjukvaruuppdateringar fixar fel, eliminerar säkerhetsproblem och ger dig " +#~ "nya funktioner." + +#~ msgid "Oficially supported" +#~ msgstr "Stöds officiellt" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1841,9 +1898,6 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Installing updates" #~ msgstr "Installerar uppdateringar" -#~ msgid "Check for available updates" -#~ msgstr "Kontrollera efter tillgängliga uppdateringar" - #~ msgid "Sections:" #~ msgstr "Avdelningar:" @@ -2035,9 +2089,6 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Components" #~ msgstr "Komponenter" -#~ msgid "Distribution:" -#~ msgstr "Distribution:" - #~ msgid "Type:" #~ msgstr "Typ:" @@ -2876,9 +2927,6 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "_Updates" #~ msgstr "_Uppdateringar" -#~ msgid "_Update All" -#~ msgstr "_Uppdatera alla" - #~ msgid "Privilege" #~ msgstr "Privilegium" @@ -3576,13 +3624,6 @@ msgstr "Inte DFSG-kompatibel programvara" #~ "Det finns en uppdatering tillgänglig för ditt system, som kräver " #~ "att %s data hämtas." -#~ msgid "" -#~ "There are %s updates available for your system, totalling %s of data to be downloaded." -#~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga för ditt system, som " -#~ "kräver att %s data hämtas." - #~ msgid " Of these updates, one is urgent." #~ msgstr " Utav dessa uppdateringar är en brådskande." diff --git a/po/th.po b/po/th.po index afcc2d56..1d7c9bae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-24 16:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -127,9 +127,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -145,11 +145,11 @@ msgstr "กรุณาใส่ชื่อสำหรับแผ่นดิ msgid "Please insert a disc in the drive:" msgstr "กรุณาใส่แผ่นดิสก์เข้าไปในเครื่อง:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "แพกเกจเสียหาย" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -157,34 +157,34 @@ msgstr "" "ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " "หรือ apt-get ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "ไม่สามารถปรับปรุง meta แพกเกจที่ต้องการได้" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -193,27 +193,28 @@ msgstr "" "ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " "คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "ไม่สามารถติดตั้ง '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -222,12 +223,12 @@ msgstr "" "กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic หรือโปรแกรม apt-get " "ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "ไม่สามารถเอามาได้" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -237,15 +238,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "กำลังอ่านจากที่เก็บชั่วคราว" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -253,11 +254,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "ไม่เจอเซิรฟ์เวอร์เสริม(mirror)" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -276,11 +277,11 @@ msgstr "" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "สร้าง default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -292,23 +293,24 @@ msgstr "" "\n" "ควรเพิ่มรายการสำหรับ '%s' หรือไม่?ถ้าคุณเลือก 'No' การปรับปรุงจะถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บข้อมูลใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "แหล่งอื่นๆใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" @@ -316,11 +318,11 @@ msgstr "" "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรม synaptic" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "เกิดข้อผิดพลาดขณะปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -328,11 +330,11 @@ msgstr "" "มีปัญหาเกิดขึ้นขณะทำการปรับปรุง โดยปกติแล้วจะเป็นปัญหาด้านเครือข่าย " "กรุณาตรวจสอบการสื่อสารในเครือข่ายของคุณแล้วลองใหม่อีกที" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "ไม่มีพื้นที่ว่างในดิสก์เพียงพอ" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -343,15 +345,15 @@ msgstr "" "เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -363,11 +365,11 @@ msgstr "" "การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" "configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -375,67 +377,73 @@ msgstr "" "การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " "mediaและลองอีกครั้ง " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "ซอฟแวร์บางตัวไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจากชุมชน " "('universe') แต่เพียงอย่างเดียว\\n\n" "\\n\n" "ถ้าคุณไม่ได้เลือกใช้แหล่งข้อมูล 'universe' แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "_ข้ามขั้นตอนนี้" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "เ_อาออก" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 #, fuzzy msgid "Restoring original system state" msgstr "เริ่มระบบใหม่อีกครั้ง" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -447,19 +455,19 @@ msgstr "" "หลังจากการปรับปรุงข้อมูลของแพจเกจ แพจเกจที่จำเป็น '%s'ได้หายไป\n" "นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานว่าเป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "_ถามการยืนยันจากคุณก่อน" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "กำลังปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" @@ -480,7 +488,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li ที่ %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "เหลือประมาณ %li นาที" @@ -510,23 +518,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "เปลี่ยนไฟล์ปรับแต่ง\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "ไม่เจอคำสั่ง 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "เกิดข้อผิดพลาดอย่างร้ายแรง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -540,25 +554,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s แพกเกจจะถูกลบออก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s แพกเกจใหม่จะถูกติดตั้ง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s แพกเกจจะถูกปรับปรุง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -566,37 +580,40 @@ msgid "" "You have to download a total of %s. " msgstr "คุณจะต้องดาวน์โหลดทั้งหมด %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "การปรับปรุงอาจจะใช้เวลานานหลายชั่วโมงและไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "ไม่มีอะไรให้ปรับปรุง" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "ระบบของคุณทันสมัยแล้ว" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "ระบบของคุณได้ผ่านการปรับปรุงแล้ว" +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "ลบออก %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "ติดตั้ง %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "ปรับปรุงรุ่น %s" @@ -630,11 +647,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "ต้องเริ่มระบบใหม่" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" @@ -668,9 +685,8 @@ msgid "Start the upgrade?" msgstr "เริ่มการปรับปรุงหรือไม่?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" -msgstr "กำลังปรับปรุงอูบันตู 6.06 LTS" +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -790,9 +806,10 @@ msgid "Verfication failed" msgstr "ไม่สามารถตรวจเช็คความถูกต้องได้" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -815,149 +832,140 @@ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li msgid "Downloading file %li of %li with unknown speed" msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" "ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "อูบันตู 5.10 Security Updates" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "_ติดตั้งปรัยปรุง" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "ปรับปรุงให้เป็นรุ่นล่าสุดของอูบันตู" +msgid "Normal updates" +msgstr "_ติดตั้งปรัยปรุง" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "_ติดตั้งปรัยปรุง" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "ไม่สามารถปรับปรุงทั้งหมดที่มีได้" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "รุ่น %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "กำลังดาวน์โหลดรายการของการเปลี่ยนแปลง..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "เ_ลือก" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "ขนาดดาวน์โหลด: %s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "ระบบของคุณทันสมัยแล้ว" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "คุณสามารถติดตั้ง %s รายการปรับปรุง" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "กรุณารอสักครู่ นี่อาจจะใช้เวลาสักหน่อย" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "ปรับปรุงเสร็จสิ้นแล้ว" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "_ติดตั้งปรัยปรุง" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "รุ่นใหม่: %s (ขนาด: %s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "รุ่น %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "ชุดเผยแพร่(distribution)ของคุณไม่มีบริการสนับสนุนแล้ว" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -967,17 +975,17 @@ msgstr "" "ปรับปรุงขึ้นไปรุ่นถัดไปของอูบันตูลีนุกซ์ กรุณาอ่าน http://www.ubuntu.com " "สำหรับรายละเอียดเพิ่มเติมในการปรับปรุงรุ่น" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -999,88 +1007,103 @@ msgstr "" "\"Administration\" -> \"Software Properties\"." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "รักษาระบบของคุณให้ทันสมัย" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"ตรวจสอบระบบของคุณ\n" +"มีปัญหาตรวจสอบแผ่นซีดี\n" "\n" -"ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "รักษาระบบของคุณให้ทันสมัย" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "เริ่มการปรับปรุงหรือไม่?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "ยกเลิก_ดาวน์โหลด" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "เปลี่ยนแปลง" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "ต_รวจ" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "ตรวจช่องซอฟแวร์สำหรับรายการปรับปรุงใหม่" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "คำบรรยาย" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "บันทึกรายการปรับปรุง" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "แสดงการคืบหน้าของแต่ละไฟล์" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "ซอฟต์แวร์ปรับปรุง" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "_ปรับปรุง" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "ปรับปรุงให้เป็นรุ่นล่าสุดของอูบันตู" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "เ_ลือก" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "_ซ่อนข้อมูลนี้ในคราวหน้า" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "_ติดตั้งปรัยปรุง" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "เปลี่ยนแปลง" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1188,11 +1211,12 @@ msgid "_Install security updates without confirmation" msgstr "_ติดตั้งการปรับปรุงด้านความปลอดภัยโดยไม่ต้องถามก่อน" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1225,10 +1249,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "กรุณาเติมให้ครบบรรทัด APT ของช่องที่คุณต้องการจะเพิ่ม\n" @@ -1284,8 +1308,9 @@ msgid "Check for new distribution releases" msgstr "ตรวจหาชุดเผยแพร่ใหม่" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1305,8 +1330,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "บึนทึกขนาดของหน้าต่างของโปรแกรมจัดการปรับปรุง" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "บันทึกสถานะของตัวขยาย(expander)ที่มีรายการของการเปลี่ยนแปลงและคำบรรยาย" @@ -1332,212 +1358,189 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "อูบันตู 5.10 Updates" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "ชุมชนดูแล (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "ไม่ฟรี(ลิขสิทธิ์)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "ชุมชนดูแล (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "ชุมชนดูแล (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "ไม่ฟรี(ลิขสิทธิ์)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "อูบันตู 5.10 Security Updates" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "_ติดตั้งปรัยปรุง" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "สนับสนุนอย่างเป็นทางการ" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "อูบันตู 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "อูบันตู 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "อูบันตู 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "สนับสนุนอย่างเป็นทางการ" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "อูบันตู 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "อูบันตู 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "อูบันตู 5.10 Backports" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "อูบันตู 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "ชุมชนดูแล (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "ซอฟแวร์บางตัวไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "จำกัดลิขสิทธิ์" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "อูบันตู 5.10 Updates" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "อูบันตู 5.10 Backports" @@ -1588,6 +1591,46 @@ msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอ msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" +#~ msgid "Some software no longer officially supported" +#~ msgstr "ซอฟแวร์บางตัวไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" + +#~ msgid "Could not find any upgrades" +#~ msgstr "ไม่มีอะไรให้ปรับปรุง" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "ระบบของคุณได้ผ่านการปรับปรุงแล้ว" + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "กำลังปรับปรุงอูบันตู 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "อูบันตู 5.10 Security Updates" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "ปรับปรุงให้เป็นรุ่นล่าสุดของอูบันตู" + +#~ msgid "Cannot install all available updates" +#~ msgstr "ไม่สามารถปรับปรุงทั้งหมดที่มีได้" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "ตรวจสอบระบบของคุณ\n" +#~ "\n" +#~ "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "สนับสนุนอย่างเป็นทางการ" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " diff --git a/po/tr.po b/po/tr.po index f1a299ec..422f1414 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Özgur KIRCALI \n" "Language-Team: Turkish \n" @@ -128,9 +128,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -146,11 +146,11 @@ msgstr "Lütfen disk için bir isim girin" msgid "Please insert a disc in the drive:" msgstr "Lütfen sürücüye bir disk yerleştirin:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Bozuk paketler" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -158,60 +158,61 @@ msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları synaptic veya apt-get kullanarak düzeltin." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "'%s' yüklenemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -220,11 +221,11 @@ msgstr "" " Lütfen devam etmeden önce, synaptic veya apt-get kullanarak yukarıdaki " "paketlerden birini kurun." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -234,15 +235,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Önbellek okunuyor" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -250,11 +251,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "Geçerli yansı bulunamadı" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -267,11 +268,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,32 +285,32 @@ msgstr "" "'%s' için varsayılan girişler eklensin mi? Eğer 'Hayır'ı seçerseniz, " "güncelleştirme iptal edilecektir." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "Üçüncü parti kaynaklar devredışı bırakıldı" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "Güncelleştirme sırasında hata" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -317,11 +318,11 @@ msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı kontrol edin ve yeniden deneyin." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +331,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,11 +348,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -359,62 +360,67 @@ msgstr "" "Yükseltme şimdi iptal edilecek. Lütfen internet bağlantınızı veya kurulum " "ortamınızı kontrol edin ve yeniden deneyin. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "Bu Adımı _Atla" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "_Kaldır" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,19 +430,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "Yükseltiliyor" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." @@ -457,7 +463,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -489,19 +495,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "'diff' komutu bulunamadı" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -511,25 +523,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -537,36 +549,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Sisteminiz zaten yükseltilmiş." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s'i kur" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s'i yükselt" @@ -600,11 +615,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Yeniden başlatma gerekiyor" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -637,11 +652,8 @@ msgid "Start the upgrade?" msgstr "Yükseltme başlatılsın mı?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"Ubuntu 6.06 LTS'ya yükseltiliyor" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -762,8 +774,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -786,162 +798,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -957,84 +957,101 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" +"CD taramada hata\n" +"\n" +"%s" + +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Yükseltme başlatılsın mı?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1141,10 +1158,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1171,10 +1188,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1226,7 +1243,7 @@ msgstr "Yeni dağıtım yayımları için kontrol et" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1245,7 +1262,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1270,205 +1287,183 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Sınırlı telif hakkı" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "Resmi olarak desteklenenler" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "Resmi olarak desteklenenler" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Resmi olarak desteklenenler" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Sınırlı telif hakkı" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" @@ -1519,6 +1514,24 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Your system has already been upgraded." +#~ msgstr "Sisteminiz zaten yükseltilmiş." + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "Ubuntu 6.06 LTS'ya yükseltiliyor" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Resmi olarak desteklenenler" + #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Yükseltme şimdi iptal edilecek. Lütfen bu hatayı bildirin." diff --git a/po/uk.po b/po/uk.po index 2b33d01f..cf7c4fa6 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Serhey Kusyumoff \n" "Language-Team: Ukrainian \n" @@ -132,7 +132,7 @@ msgstr "Вибраний ключ неможливо видалити. Спов #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -145,11 +145,11 @@ msgstr "Введіть назву диску" msgid "Please insert a disc in the drive:" msgstr "Вставте диск в пристрій:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Пошкоджені пакунки" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -157,46 +157,46 @@ msgstr "" "Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " "цією програмою. Скористайтесь перш програмами synaptic чи apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "Не можливо поновити необхідні meta-пакунки" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "Це призведе довидалення базового пакунку системи" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "Не можливо встановити '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -204,24 +204,27 @@ msgid "" msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" +"Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " +"цією програмою. Скористайтесь перш програмами synaptic чи apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -231,15 +234,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "Зчитування кешу" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,12 +250,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 #, fuzzy msgid "No valid mirror found" msgstr "Не знайдено" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -265,11 +268,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -278,43 +281,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "Помилка в даних про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "Помилка підчас поновлення" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "Недостатньо місця на диску" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +326,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати апгрейд системи?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "Неможливо провести апргрейд системи" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -344,11 +347,11 @@ msgstr "" "Виконайте команду 'sudo apt-get install -f', або скористайдесь програмою " "Synaptic для налаштування системи." -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "Неможливо завантажити пакунки для апргрейду системи" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -356,37 +359,37 @@ msgstr "" "Апргрейд системи щойно перервано. Будь ласка, перевірте зєднання з " "інтернетом чи носії та спробуйте знов. " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 #, fuzzy msgid "Remove obsolete packages?" msgstr "Видалити непотрібні пакунки?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -395,27 +398,32 @@ msgstr "" "нижче. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 #, fuzzy msgid "Restoring original system state" msgstr "Перезавантаження системи" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "Отримання інформації про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -425,20 +433,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "Запит підтвердження" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "Оновлення завершено" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "Пошук програм, що не використовуються" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "Апргрейд системи завершено." @@ -459,7 +467,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Завантажується файл %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -492,19 +500,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Виникла невиправна помилка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -517,31 +531,31 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s пакунків буде видалено." msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s пакунків буде встановлено." msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "буде проведено апргрейд %s пакунків." msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -549,7 +563,7 @@ msgid "" "You have to download a total of %s. " msgstr "Потрібно завантажити всього %s пакунків." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -558,30 +572,34 @@ msgstr "" "Апрейд може продовжуватись декілька годин, і не може бути перервано протягом " "всього часу." -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "Не знайдено пакунків для апгрейду" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +#, fuzzy +msgid "Your system is up-to-date" +msgstr "Ваша система оновлена!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "Апгрейд вашої системи вже проведено." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, fuzzy, python-format msgid "Remove %s" msgstr "Видалити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, fuzzy, python-format msgid "Install %s" msgstr "Встановити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Апргрейд %s" @@ -615,11 +633,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "Необхідно перезавантажити систему" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -654,7 +672,7 @@ msgid "Start the upgrade?" msgstr "Почати апгрейд системи?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -783,8 +801,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -808,16 +826,16 @@ msgstr "Завантажується файл %li of %li at %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "Завантажується файл %li of %li на невизначенії швидкості" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Доступний новий випуск Ubuntu!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -825,102 +843,85 @@ msgid "" msgstr "" "не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Оновлення безпеки Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Встановлення оновлень..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "Апгрейд системи Ubuntu" +msgid "Normal updates" +msgstr "Встановлення оновлень..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Встановлення оновлень..." -#: ../UpdateManager/UpdateManager.py:276 -#, fuzzy -msgid "Cannot install all available updates" -msgstr "Пошук пакунків для апгрейду" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Версія %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Завантаження змін" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "Ваша система оновлена!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -928,54 +929,59 @@ msgstr[0] "Неможливо провести апргрейд системи" msgstr[1] "Неможливо провести апргрейд системи" msgstr[2] "Неможливо провести апргрейд системи" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 #, fuzzy msgid "Update is complete" msgstr "Завантадення пакунків завершено" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Встановлення оновлень..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Версія %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ваш дистрибутив вже не підтримується" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -991,86 +997,100 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "Почати апгрейд системи?" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "Скасувати _Завантаження" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Зміни" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Опис" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Оновлення програм" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "П_родовжити апгрейд системи" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "Встановлення оновлень..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Зміни" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1186,10 +1206,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1218,10 +1238,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Введіть повний рядок APT репозиторію, який ви бажаєте додати\n" "Language-Team: LANGUAGE \n" @@ -129,7 +129,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -142,79 +142,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -224,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,72 +331,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -406,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -438,7 +443,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -470,19 +475,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -492,28 +503,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -521,36 +532,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -584,11 +598,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -619,7 +633,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -740,8 +754,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -764,162 +778,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -935,84 +937,96 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1116,10 +1130,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1146,10 +1160,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1199,7 +1213,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1218,7 +1232,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1242,192 +1256,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/ur.po b/po/ur.po index 0064ae7b..5b170945 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -130,7 +130,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -143,79 +143,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,72 +332,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -407,19 +412,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -439,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -471,19 +476,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -493,28 +504,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -522,36 +533,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -585,11 +599,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -620,7 +634,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -741,8 +755,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -765,162 +779,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -936,84 +938,96 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1118,10 +1132,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1148,10 +1162,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1201,7 +1215,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1220,7 +1234,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1244,192 +1258,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/urd.po b/po/urd.po index 0a34f9a4..3d403f41 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -130,7 +130,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -143,79 +143,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,72 +332,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -407,19 +412,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -439,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -471,19 +476,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -493,28 +504,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -522,36 +533,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -585,11 +599,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -620,7 +634,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -741,8 +755,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -765,162 +779,150 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 -msgid "Important security updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" +#: ../UpdateManager/UpdateManager.py:240 +msgid "Normal updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -936,84 +938,96 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1118,10 +1132,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1148,10 +1162,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1201,7 +1215,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1220,7 +1234,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1244,192 +1258,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -msgid "Important security updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -msgid "Proposed updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" diff --git a/po/vi.po b/po/vi.po index 0c564a83..d1f26a40 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -131,7 +131,7 @@ msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông b #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -144,56 +144,56 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -201,24 +201,24 @@ msgid "" msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -228,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,43 +274,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -319,15 +319,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -336,73 +336,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "Một bộ quản lý gói khác đang chạy" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,20 +417,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "Nâng cấp xong" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -445,7 +450,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -478,19 +483,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -500,25 +511,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -526,36 +537,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +#, fuzzy +msgid "Your system is up-to-date" +msgstr "Hệ thống bạn toàn mới nhất." -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -589,11 +604,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -624,7 +639,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -749,8 +764,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -774,16 +789,16 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Có một bản phát hành Ubuntu mới công bố." -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " @@ -792,153 +807,142 @@ msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "Đang cài đặt bản cập nhật..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:276 -#, fuzzy -msgid "Cannot install all available updates" -msgstr "Đang kiểm tra có cập nhật..." - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "Phiên bản %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "Đang tải các thay đổi" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "Hệ thống bạn toàn mới nhất." - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Đang cài đặt bản cập nhật..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "Phiên bản %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Không còn hỗ trợ lại bản phát hành của bạn." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -954,86 +958,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Đổi" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "Mô tả" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "Bản cập nhật phần mềm" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "Đổi" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1147,10 +1163,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1179,10 +1195,10 @@ msgstr "Địa chỉ định vị:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "Hãy nhập toàn dòng APT của kho cần thêm\n" @@ -1242,7 +1258,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1261,7 +1277,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1286,217 +1302,194 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Bản cập nhật Ubuntu 5.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Do cộng đồng bảo quản (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Phần mềm đã đóng góp" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Do cộng đồng bảo quản (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Không tự do (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Không tự do (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "Phần mềm bị giới hạn xuất Mỹ" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Đang cài đặt bản cập nhật..." - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -#, fuzzy -msgid "Officially supported" -msgstr "Được hỗ trợ một cách chính thức" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Bản cập nhật Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy -msgid "Oficially supported" +msgid "Officially supported" msgstr "Được hỗ trợ một cách chính thức" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Bản cập nhật Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Bản cập nhật Ubuntu 5.10" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Do cộng đồng bảo quản (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Không tự do (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "Được hỗ trợ một cách chính thức" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Bản quyền bị giới hạn" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Bản cập nhật Ubuntu 4.10" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" @@ -1550,6 +1543,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" + +#, fuzzy +#~ msgid "Cannot install all available updates" +#~ msgstr "Đang kiểm tra có cập nhật..." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "Được hỗ trợ một cách chính thức" + #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." diff --git a/po/xh.po b/po/xh.po index 1fc12d1e..60067ee2 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-04-20 19:15+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -130,7 +130,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -143,79 +143,79 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,72 +332,77 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -407,19 +412,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -439,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -471,19 +476,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -493,28 +504,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -522,36 +533,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -585,11 +599,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -620,7 +634,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -741,8 +755,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -765,165 +779,156 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Kukho i-%i yohlaziyo ekhoyo" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "Bonisa izihlaziyo" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "Bonisa izihlaziyo" + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -939,86 +944,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +msgid "Cancel _Download" msgstr "" #: ../data/glade/UpdateManager.glade.h:8 -msgid "Cancel _Download" +msgid "Changes" msgstr "" #: ../data/glade/UpdateManager.glade.h:9 -msgid "Changes" +msgid "Changes and description of the update" msgstr "" #: ../data/glade/UpdateManager.glade.h:10 -msgid "Changes and description of the update" +msgid "Chec_k" msgstr "" #: ../data/glade/UpdateManager.glade.h:11 -msgid "Chec_k" +msgid "Check the software channels for new updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:12 -msgid "Check the software channels for new updates" +msgid "Description" msgstr "" #: ../data/glade/UpdateManager.glade.h:13 -msgid "Description" +msgid "Release Notes" msgstr "" #: ../data/glade/UpdateManager.glade.h:14 -msgid "Release Notes" +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 #, fuzzy msgid "Software Updates" msgstr "Bonisa izihlaziyo" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "Bonisa izihlaziyo" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1125,10 +1142,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1157,10 +1174,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" @@ -1211,7 +1228,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1230,7 +1247,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1254,194 +1271,172 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Bonisa izihlaziyo" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "Bonisa izihlaziyo" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 -msgid "No longer oficially supported" +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" @@ -1491,6 +1486,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Bonisa izihlaziyo" + #, fuzzy #~ msgid "Channels" #~ msgstr "Uluhlu lwezinto ezikhethwayo zeenkqubo zekhompyutha" diff --git a/po/zh_CN.po b/po/zh_CN.po index b36da2ac..3ad9723b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-30 14:16+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -133,9 +133,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -151,11 +151,11 @@ msgstr "请输入光盘的名称" msgid "Please insert a disc in the drive:" msgstr "请将光盘插入到光驱里:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "破损的软件包" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -163,34 +163,34 @@ msgstr "" "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" "apt-get修复它们。" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "不能升级要求的元包" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "无法计算升级" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -199,27 +199,28 @@ msgstr "" "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" "件包的列表。" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "无法安装'%s'" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "无法猜出元包" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -227,12 +228,12 @@ msgstr "" "确定你运行的ubuntu的版本。 请在继续前先用新立得或apt-get安装以上所举软件包中" "的一个。" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "下载失败" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -242,15 +243,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "正在读取缓存" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -258,11 +259,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "未找到可用的镜像" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -279,11 +280,11 @@ msgstr "" "如果选'no'更新将被取消." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "生成默认的源?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,44 +296,45 @@ msgstr "" "\n" "添加用于'%s'的缺省条目?如果选择'No',升级将被取消." -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "源的信息无效" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升级源的信息时产生一个无效文件。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "第三方源被禁用" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" "源列表中一些第三方源被禁用.你可以在升级后用\"软件属性\"工具或新立得包管理器来" "重新启用它们." -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "升级时出错" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "升级时候出错。这通常是一些网络问题,请检查你的网络连接后再试。" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "磁盘空间不足" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -343,15 +345,15 @@ msgstr "" "get clean'命令来删除之前安装的临时软件包。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "无法安装升级" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -363,75 +365,81 @@ msgstr "" "升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" "a)。" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "无法下载升级包" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "一些软件已经不在被官方支持." +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 +#, fuzzy msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" "这些安装的包已不在被官方支持,仅为社区维护('universe').\n" "\n" "如果你没有启用'社区维护'源,下一步这些包将被建议移除. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "跳过这个步骤(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "删除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "确认时出错" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "正在检查软件包管理器" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "更新源的信息" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "无效的包信息" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -443,19 +451,19 @@ msgstr "" "包信息被更新后核心包'%s'没有找到.\n" "这标志着一个严重的错误,请报告bug." -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "请求确认" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "正在更新" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "寻找陈旧的软件包" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "系统更新完毕" @@ -476,7 +484,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "正在下载文件%li/%li速度是%s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, fuzzy, python-format msgid "About %s remaining" msgstr "大约还要%li分钟" @@ -506,23 +514,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "替换配置文件\n" "“%s”吗?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "外部命令“diff”没有找到" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "出现致命错误" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -536,25 +550,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s软件包将被删除。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s新的软件包将被安装。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s软件包将被升级" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -562,37 +576,40 @@ msgid "" "You have to download a total of %s. " msgstr "你下载了总体的%s。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "升级会持续几个小时且不能在稍后的任何时候被终止" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "不能找到任何升级" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "您的系统已为最新" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "你的系统已经升级。" +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "删除%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "安装%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "升级%s" @@ -626,11 +643,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "需要重启" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升级已经完成并需要重启。你要现在重启么?" @@ -663,10 +680,8 @@ msgid "Start the upgrade?" msgstr "开始升级?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" -"正在升级到 Ubuntu 6.06 LTS" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -786,9 +801,10 @@ msgid "Verfication failed" msgstr "验证失败" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "验证升级程序失败。可能是网络或服务器的问题。 " #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -811,148 +827,139 @@ msgstr "正在下载文件 %li/%li 速度是 %s/s" msgid "Downloading file %li of %li with unknown speed" msgstr "正在下载文件 %li/%li 速度未知" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "变动列表尚不可用。请稍后再试。" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "变动列表尚不可用。请稍后再试。" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "无法下载更新列表。请检查您的网络连接。" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 安全更新" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "安装更新" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "升级到最新版本的Ubuntu" +msgid "Normal updates" +msgstr "安装更新" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "安装更新" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "无法安装所有升级" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "正在下载更新列表..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "检查(_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "下载文件大小:%s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "您的系统已为最新" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "你可以安装 %s 个更新" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "请稍等,这需要花一些时间。" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "检查有效的更新" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新版本:%s(大小:%s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "您的发行版不再被支持" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -962,17 +969,17 @@ msgstr "" "\r\n" "http://www.ubuntu.com 来获取更多有关升级的信息。" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "软件索引已被破坏" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -994,88 +1001,103 @@ msgstr "" "变." #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "保持你的系统更新" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"正在检查你的系统\n" +"读取光盘时出错\n" "\n" -"软件更新可以为你修复错误,除去安全漏洞,并提供新的特性。" +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "保持你的系统更新" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "开始升级?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "取消下载(_D)" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "变更" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "检查(_K)" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "检查软件频道以获得新的更新" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "描述" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "发布说明" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "显示单个文件进度" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "软件更新" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "软件更行可以为你修复错误,消除安全漏洞及提供新的特性" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "升级(_p)" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "升级到最新版本的Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "检查(_C)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "继续升级(_R)" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "在以后隐藏该信息(_H)" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "安装更新(_I)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "变更" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1186,11 +1208,12 @@ msgid "_Install security updates without confirmation" msgstr "不确认就安装安全更新(_I)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1223,10 +1246,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "输入你想增加的完整的频道 APT 命令行\n" @@ -1286,8 +1309,9 @@ msgid "Check for new distribution releases" msgstr "检测新版本发布" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1307,8 +1331,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "储存更新管理器对话框的大小" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "储存包含变动和描述列表的扩展器的状态" @@ -1334,212 +1359,190 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 更新" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "社区维护(Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "贡献的软件" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6-06 'Dapper Drake'" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "社区维护(Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "社区维护(Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "非自由(Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非自由(Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "美国限制出口的软件" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6-06 'Dapper Drake'" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 安全更新" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "安装更新" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "官方支持" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 移植" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 安全更新" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "官方支持" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 移植" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "社区维护(Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由(Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "一些软件已经不在被官方支持." #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版权限制" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全更新" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 移植" @@ -1590,6 +1593,45 @@ msgstr "带有非自由依赖关系的DFSG兼容软件" msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" +#~ msgid "Some software no longer officially supported" +#~ msgstr "一些软件已经不在被官方支持." + +#~ msgid "Could not find any upgrades" +#~ msgstr "不能找到任何升级" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "你的系统已经升级。" + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "正在升级到 Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 安全更新" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "升级到最新版本的Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "无法安装所有升级" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "正在检查你的系统\n" +#~ "\n" +#~ "软件更新可以为你修复错误,除去安全漏洞,并提供新的特性。" + +#~ msgid "Oficially supported" +#~ msgstr "官方支持" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " @@ -1685,9 +1727,6 @@ msgstr "非DFSG兼容软件" #~ msgid "Sections" #~ msgstr "节:" -#~ msgid "Check for available updates" -#~ msgstr "检查有效的更新" - #~ msgid "Sections:" #~ msgstr "节:" diff --git a/po/zh_HK.po b/po/zh_HK.po index 65eb63ef..06195b80 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -131,7 +131,7 @@ msgstr "你選定的密碼匙無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1036 #, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -144,56 +144,56 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "你選定的密碼匙無法移除,請匯報問題。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -201,24 +201,24 @@ msgid "" msgstr "你選定的密碼匙無法移除,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -228,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,43 +274,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 #, fuzzy msgid "Error during update" msgstr "移除密碼匙時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -319,15 +319,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -336,73 +336,78 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "Checking package manager" msgstr "另一個套件管理員正在執行中" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,20 +417,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 #, fuzzy msgid "Upgrading" msgstr "完成升級" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "" @@ -445,7 +450,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -478,19 +483,25 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -500,28 +511,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -529,36 +540,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +#, fuzzy +msgid "Your system is up-to-date" +msgstr "系統已經在最新狀態!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -592,11 +607,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -627,7 +642,7 @@ msgid "Start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:7 -msgid "Upgrading to Ubuntu 6.10" +msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 @@ -752,8 +767,8 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -777,170 +792,159 @@ msgstr "" msgid "Downloading file %li of %li with unknown speed" msgstr "" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "Ubuntu 已推出新版本!" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 安全性更新" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "正在安裝軟件更新..." -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 -msgid "Updates of Ubuntu" -msgstr "" +#: ../UpdateManager/UpdateManager.py:240 +#, fuzzy +msgid "Normal updates" +msgstr "正在安裝軟件更新..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "正在安裝軟件更新..." -#: ../UpdateManager/UpdateManager.py:276 -#, fuzzy -msgid "Cannot install all available updates" -msgstr "正在檢查更新套件..." - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 #, fuzzy msgid "Downloading the list of changes..." msgstr "正在下載更改紀錄" -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" +#: ../UpdateManager/UpdateManager.py:551 +msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 -#, fuzzy -msgid "Your system is up-to-date" -msgstr "系統已經在最新狀態!" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "正在安裝軟件更新..." + +#: ../UpdateManager/UpdateManager.py:822 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "已經不再支援你用的發行版本" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -956,86 +960,98 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" msgstr "" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" msgstr "" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "更改紀錄" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "詳細說明" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "軟件更新" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "_Install Updates" msgstr "正在安裝軟件更新..." -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "更改紀錄" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1149,10 +1165,10 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1181,10 +1197,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "請輸入整行你想加入的 APT 軟件庫位置\n" @@ -1243,7 +1259,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:3 msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1262,7 +1278,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:7 msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "" @@ -1287,217 +1303,194 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 更新" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "協力維護軟件 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "協力維護軟件" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 更新" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "協力維護軟件 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "協力維護軟件 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "非自由軟件 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非自由軟件 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 #, fuzzy msgid "By copyright or legal issues restricted software" msgstr "美國禁止出口軟件" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 更新" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 安全性更新" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "正在安裝軟件更新..." - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 光碟 “Breezy Badger”" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -#, fuzzy -msgid "Officially supported" -msgstr "官方支援" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 光碟 “Breezy Badger”" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 光碟 “Hoary Hedgehog”" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 光碟 “Hoary Hedgehog”" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy -msgid "Oficially supported" +msgid "Officially supported" msgstr "官方支援" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟件 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟件 (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "官方支援" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 更新" @@ -1551,6 +1544,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 安全性更新" + +#, fuzzy +#~ msgid "Cannot install all available updates" +#~ msgstr "正在檢查更新套件..." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "官方支援" + #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "你選定的密碼匙無法移除,請匯報問題。" diff --git a/po/zh_TW.po b/po/zh_TW.po index 62a2dc1f..5bdfffd2 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-10 01:15+0200\n" +"POT-Creation-Date: 2006-09-23 00:48+0200\n" "PO-Revision-Date: 2006-05-31 12:00+0000\n" "Last-Translator: PCMan \n" "Language-Team: Chinese (Taiwan) \n" @@ -126,9 +126,9 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1036 -#, python-format +#, fuzzy, python-format msgid "" -"Error scaning the CD\n" +"Error scanning the CD\n" "\n" "%s" msgstr "" @@ -144,11 +144,11 @@ msgstr "請輸入光碟的名稱" msgid "Please insert a disc in the drive:" msgstr "請將光碟放入光碟機:" -#: ../DistUpgrade/DistUpgradeCache.py:89 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "不完整套件" -#: ../DistUpgrade/DistUpgradeCache.py:90 +#: ../DistUpgrade/DistUpgradeCache.py:93 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -156,34 +156,34 @@ msgstr "" "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " "synaptic 或 apt-get 來修恢它們。" -#: ../DistUpgrade/DistUpgradeCache.py:147 +#: ../DistUpgrade/DistUpgradeCache.py:150 msgid "Can't upgrade required meta-packages" msgstr "無法升級須要的元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:154 +#: ../DistUpgrade/DistUpgradeCache.py:157 msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:160 msgid "Could not calculate the upgrade" msgstr "無法計算升級" -#: ../DistUpgrade/DistUpgradeCache.py:158 +#: ../DistUpgrade/DistUpgradeCache.py:161 #, fuzzy msgid "" -"A unresolvable problem occured while calculating the upgrade.\n" +"A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:186 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" -#: ../DistUpgrade/DistUpgradeCache.py:184 +#: ../DistUpgrade/DistUpgradeCache.py:187 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 a list of " @@ -192,27 +192,28 @@ msgstr "" "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" "的套件。" -#: ../DistUpgrade/DistUpgradeCache.py:249 +#: ../DistUpgrade/DistUpgradeCache.py:252 #, python-format msgid "Can't install '%s'" msgstr "無法安裝‘%s’" -#: ../DistUpgrade/DistUpgradeCache.py:250 +#: ../DistUpgrade/DistUpgradeCache.py:253 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:257 +#: ../DistUpgrade/DistUpgradeCache.py:260 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:258 +#: ../DistUpgrade/DistUpgradeCache.py:261 +#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" +"you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" @@ -220,12 +221,12 @@ msgstr "" "此無法偵測正在執行那個版本的 ubuntu。\n" " 請進行操作前使用 synaptic 或 apt-get安裝上述其中一個套件" -#: ../DistUpgrade/DistUpgradeControler.py:73 +#: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" msgstr "下載失敗" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -235,15 +236,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:104 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" msgstr "正在讀取快取" -#: ../DistUpgrade/DistUpgradeControler.py:143 +#: ../DistUpgrade/DistUpgradeControler.py:147 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:144 +#: ../DistUpgrade/DistUpgradeControler.py:148 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -251,11 +252,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:235 +#: ../DistUpgrade/DistUpgradeControler.py:239 msgid "No valid mirror found" msgstr "找不到有效的 mirror" -#: ../DistUpgrade/DistUpgradeControler.py:236 +#: ../DistUpgrade/DistUpgradeControler.py:240 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -274,11 +275,11 @@ msgstr "" "如果選擇「否」,則更新會被取消。" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:253 +#: ../DistUpgrade/DistUpgradeControler.py:257 msgid "Generate default sources?" msgstr "產生預設的來源?" -#: ../DistUpgrade/DistUpgradeControler.py:254 +#: ../DistUpgrade/DistUpgradeControler.py:258 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -290,44 +291,45 @@ msgstr "" "\n" "需要加入預設的 '%s' 項目嗎?如果你選擇「否」,更新將會被取消。" -#: ../DistUpgrade/DistUpgradeControler.py:288 +#: ../DistUpgrade/DistUpgradeControler.py:292 msgid "Repository information invalid" msgstr "無效的套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:289 +#: ../DistUpgrade/DistUpgradeControler.py:293 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升級套件庫時導致無效的檔案。請匯報問題。" -#: ../DistUpgrade/DistUpgradeControler.py:295 +#: ../DistUpgrade/DistUpgradeControler.py:299 msgid "Third party sources disabled" msgstr "停用第三方來源" -#: ../DistUpgrade/DistUpgradeControler.py:296 +#: ../DistUpgrade/DistUpgradeControler.py:300 +#, fuzzy msgid "" -"Some third party entries in your souces.list were disabled. You can re-" +"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 " "synaptic." msgstr "" "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" "properties' 工具或 synaptic升級後,你可以重新啟用它。" -#: ../DistUpgrade/DistUpgradeControler.py:345 +#: ../DistUpgrade/DistUpgradeControler.py:349 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:346 +#: ../DistUpgrade/DistUpgradeControler.py:350 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網路問題,試檢查網路連線及再試。" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:356 +#: ../DistUpgrade/DistUpgradeControler.py:360 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -338,15 +340,15 @@ msgstr "" "clean'來移除先前安裝套件時的暫存檔。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:415 +#: ../DistUpgrade/DistUpgradeControler.py:419 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:432 +#: ../DistUpgrade/DistUpgradeControler.py:439 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:433 +#: ../DistUpgrade/DistUpgradeControler.py:440 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -358,72 +360,77 @@ msgstr "" "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" "configure -a)。" -#: ../DistUpgrade/DistUpgradeControler.py:451 +#: ../DistUpgrade/DistUpgradeControler.py:458 msgid "Could not download the upgrades" msgstr "無法下載升級套件" -#: ../DistUpgrade/DistUpgradeControler.py:452 +#: ../DistUpgrade/DistUpgradeControler.py:459 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常及再試 " -#: ../DistUpgrade/DistUpgradeControler.py:488 -msgid "Some software no longer officially supported" -msgstr "有些軟體不再有官方支援" +#: ../DistUpgrade/DistUpgradeControler.py:495 +msgid "Support for some applications ended" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:490 +#: ../DistUpgrade/DistUpgradeControler.py:496 msgid "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" "\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " +"If you havn't enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:531 msgid "Remove obsolete packages?" msgstr "移除不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:532 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:535 +#: ../DistUpgrade/DistUpgradeControler.py:542 msgid "Error during commit" msgstr "提交時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:543 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:546 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "Restoring original system state" msgstr "恢復原先的系統狀態" +#: ../DistUpgrade/DistUpgradeControler.py:609 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:554 -#: ../DistUpgrade/DistUpgradeControler.py:583 +#: ../DistUpgrade/DistUpgradeControler.py:644 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:663 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:594 +#: ../DistUpgrade/DistUpgradeControler.py:688 msgid "Invalid package information" msgstr "無效的套件資訊" -#: ../DistUpgrade/DistUpgradeControler.py:595 +#: ../DistUpgrade/DistUpgradeControler.py:689 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -433,19 +440,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:607 +#: ../DistUpgrade/DistUpgradeControler.py:701 msgid "Asking for confirmation" msgstr "詢問以確認" -#: ../DistUpgrade/DistUpgradeControler.py:611 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:618 +#: ../DistUpgrade/DistUpgradeControler.py:712 msgid "Searching for obsolete software" msgstr "尋搜不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:623 +#: ../DistUpgrade/DistUpgradeControler.py:717 msgid "System upgrade is complete." msgstr "系統升級完成。" @@ -466,7 +473,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "正在下載檔案 %li/%li,速度在 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:252 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -496,23 +503,29 @@ msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, python-format +#, fuzzy, python-format msgid "" -"Replace configuration file\n" +"Replace the customized configuration file\n" "'%s'?" msgstr "" "取代設定檔\n" "‘%s‘?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:219 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will loose all customizations, that have been made by yourself or by a " +"script, if you replace the file by its latest version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:357 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "發生嚴重錯誤" -#: ../DistUpgrade/DistUpgradeViewGtk.py:358 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -526,28 +539,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:475 -#, python-format -msgid "%s package is going to be removed." -msgid_plural "%s packages are going to be removed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." msgstr[0] "%s 個套件將會移除。" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:480 -#, python-format -msgid "%s new package is going to be installed." -msgid_plural "%s new packages are going to be installed." +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." msgstr[0] "%s 個新套件將會安裝。" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, python-format -msgid "%s package is going to be upgraded." -msgid_plural "%s packages are going to be upgraded." +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s 個套件將會升級。" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, fuzzy, python-format msgid "" "\n" @@ -555,37 +568,40 @@ msgid "" "You have to download a total of %s. " msgstr "您總共需要下載 %s。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "升級可能需要數小時及無法在稍後任何時間取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:500 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 -msgid "Could not find any upgrades" -msgstr "無法找到任何升級" +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:618 +msgid "Your system is up-to-date" +msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:507 -msgid "Your system has already been upgraded." -msgstr "系統升級已經完成。" +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:522 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "移除 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:524 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "安裝 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "升級 %s" @@ -619,11 +635,11 @@ msgid "" "DSL connection" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:105 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" msgstr "須要重新開機" -#: ../DistUpgrade/DistUpgradeView.py:106 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" @@ -657,9 +673,8 @@ msgid "Start the upgrade?" msgstr "開始升級?" #: ../DistUpgrade/DistUpgrade.glade.h:7 -#, fuzzy -msgid "Upgrading to Ubuntu 6.10" -msgstr "升級至 Ubuntu 6.06 LTS" +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -779,9 +794,10 @@ msgid "Verfication failed" msgstr "檢驗失敗" #: ../UpdateManager/DistUpgradeFetcher.py:222 +#, fuzzy msgid "" -"Verfing the upgrade failed. There may be a problem with the network or with " -"the server. " +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " msgstr "檢驗升級套件失敗。可能是因為跟伺服器的網路連接出現問題。 " #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -804,149 +820,140 @@ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" msgid "Downloading file %li of %li with unknown speed" msgstr "正在下載檔案 %li/%li,下載速度不明" -#: ../UpdateManager/UpdateManager.py:197 +#: ../UpdateManager/UpdateManager.py:204 #, fuzzy msgid "The list of changes is not available" msgstr "修改紀錄不存在,請稍後再試。" -#: ../UpdateManager/UpdateManager.py:203 +#: ../UpdateManager/UpdateManager.py:210 msgid "The list of changes is not available yet. Please try again later." msgstr "修改紀錄不存在,請稍後再試。" -#: ../UpdateManager/UpdateManager.py:208 +#: ../UpdateManager/UpdateManager.py:215 msgid "" "Failed to download the list of changes. Please check your Internet " "connection." msgstr "無法下載更動列表。請檢查網路連線是否正常。" -#: ../UpdateManager/UpdateManager.py:228 +#. Description +#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 #, fuzzy -msgid "Important security updates of Ubuntu" +msgid "Important security updates" msgstr "Ubuntu 5.10 安全性更新" -#: ../UpdateManager/UpdateManager.py:230 -msgid "Recommended updates of Ubuntu" +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:232 -msgid "Proposed updates for Ubuntu" -msgstr "" +#. Description +#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#, fuzzy +msgid "Proposed updates" +msgstr "安裝更新套件(_I)" -#: ../UpdateManager/UpdateManager.py:233 -msgid "Backports of Ubuntu" +#: ../UpdateManager/UpdateManager.py:239 +msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:234 +#: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Updates of Ubuntu" -msgstr "升級到最新版本的 Ubuntu" +msgid "Normal updates" +msgstr "安裝更新套件(_I)" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:242 ../UpdateManager/UpdateManager.py:255 +#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 #, fuzzy msgid "Other updates" msgstr "安裝更新套件(_I)" -#: ../UpdateManager/UpdateManager.py:276 -msgid "Cannot install all available updates" -msgstr "無法安裝所有更新套件" - -#: ../UpdateManager/UpdateManager.py:277 -msgid "" -"Some of the updates require more extensive changes than expected.\n" -"\n" -"This usually means that you have enabled unoffical repositories, that it is " -"not fully upgraded from the last distribution release or that you run a " -"development release of the distribution.\n" -"\n" -"Would you like to perform a full distribution upgrade now?" -msgstr "" - -#: ../UpdateManager/UpdateManager.py:474 +#: ../UpdateManager/UpdateManager.py:460 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:535 +#: ../UpdateManager/UpdateManager.py:521 msgid "Downloading the list of changes..." msgstr "正在下載修改紀錄..." -#: ../UpdateManager/UpdateManager.py:559 -msgid "Select _None" +#: ../UpdateManager/UpdateManager.py:545 +msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:565 -msgid "Select _All" -msgstr "" +#: ../UpdateManager/UpdateManager.py:551 +#, fuzzy +msgid "_Check All" +msgstr "檢查(_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:596 +#: ../UpdateManager/UpdateManager.py:582 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:599 +#: ../UpdateManager/UpdateManager.py:585 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:602 +#: ../UpdateManager/UpdateManager.py:588 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:605 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:623 ../UpdateManager/UpdateManager.py:647 +#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 #, python-format msgid "Download size: %s" msgstr "下載大小:%s" -#: ../UpdateManager/UpdateManager.py:632 -msgid "Your system is up-to-date" -msgstr "系統已經在最新狀態" - -#: ../UpdateManager/UpdateManager.py:643 +#: ../UpdateManager/UpdateManager.py:629 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "您可以安裝 %s 個更新" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:676 +#: ../UpdateManager/UpdateManager.py:662 msgid "Please wait, this can take some time." msgstr "請稍候,這可能需要一點時間。" -#: ../UpdateManager/UpdateManager.py:678 +#: ../UpdateManager/UpdateManager.py:664 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:830 +#: ../UpdateManager/UpdateManager.py:715 +#, fuzzy +msgid "Checking for updates" +msgstr "安裝更新套件(_I)" + +#: ../UpdateManager/UpdateManager.py:822 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新版本:%s (大小:%s)" -#: ../UpdateManager/UpdateManager.py:834 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:836 +#: ../UpdateManager/UpdateManager.py:828 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:846 +#: ../UpdateManager/UpdateManager.py:839 msgid "Your distribution is not supported anymore" msgstr "您正使用的發行版本已不再支援" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:840 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 " @@ -955,17 +962,17 @@ msgstr "" "您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " "http://www.ubuntu.com以取得更多升級資訊。" -#: ../UpdateManager/UpdateManager.py:866 +#: ../UpdateManager/UpdateManager.py:859 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:901 +#: ../UpdateManager/UpdateManager.py:894 msgid "Software index is broken" msgstr "軟體索引損壞" -#: ../UpdateManager/UpdateManager.py:902 +#: ../UpdateManager/UpdateManager.py:895 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 terminal to fix " @@ -986,88 +993,103 @@ msgstr "" "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。" #: ../data/glade/UpdateManager.glade.h:4 -msgid "" -"Examining your system\n" -"\n" -"Software updates correct errors, eliminate security vulnerabilities and " -"provide new features." +msgid "Keep your system up-to-date" +msgstr "將您的系統維持在最新狀態" + +#: ../data/glade/UpdateManager.glade.h:5 +#, fuzzy +msgid "Not all updates can be installed" msgstr "" -"正在檢測您的系統\n" +"掃描光碟時發生錯誤\n" "\n" -"軟體更新會更正錯誤,排除安全弱點,並提功新功能." +"%s" -#: ../data/glade/UpdateManager.glade.h:7 -msgid "Keep your system up-to-date" -msgstr "將您的系統維持在最新狀態" +#: ../data/glade/UpdateManager.glade.h:6 +#, fuzzy +msgid "Starting update manager" +msgstr "開始升級?" -#: ../data/glade/UpdateManager.glade.h:8 +#: ../data/glade/UpdateManager.glade.h:7 msgid "Cancel _Download" msgstr "取消下載(_D)" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "修改紀錄" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Chec_k" msgstr "檢查(_K)" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Check the software channels for new updates" msgstr "檢查軟體來源有沒有更新套件" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Description" msgstr "詳細說明" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "Release Notes" msgstr "發行說明" -#: ../data/glade/UpdateManager.glade.h:15 +#: ../data/glade/UpdateManager.glade.h:14 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 msgid "Show progress of single files" msgstr "顯示單一檔案的進度" -#: ../data/glade/UpdateManager.glade.h:16 +#: ../data/glade/UpdateManager.glade.h:18 msgid "Software Updates" msgstr "軟體更新" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:19 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "軟體更新會更正錯誤, 排除安全弱點, 並提功新功能." -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:20 msgid "U_pgrade" msgstr "升級(_P)" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:21 msgid "Upgrade to the latest version of Ubuntu" msgstr "升級到最新版本的 Ubuntu" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Check" msgstr "檢查(_C)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:23 +#, fuzzy +msgid "_Distribution Upgrade" +msgstr "繼續升級(_R)" + +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Hide this information in the future" msgstr "以後不要再顯示此訊息(_H)" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:25 msgid "_Install Updates" msgstr "安裝更新套件(_I)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" msgstr "修改紀錄" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1175,11 +1197,12 @@ msgid "_Install security updates without confirmation" msgstr "無須確認便安裝安全性更新(_I)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +#, fuzzy msgid "" -"The channel information is out-of-date\n" +"The information about available software is out-of-date\n" "\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" "\n" "You need a working internet connection to continue." msgstr "" @@ -1213,10 +1236,10 @@ msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy msgid "" -"Enter the complete APT line of the source that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line includes the type, location and components of a source, for " +"The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "請輸入您想加入的完整的 APT 來源列\n" @@ -1272,8 +1295,9 @@ msgid "Check for new distribution releases" msgstr "檢查有沒有新的發行版本" #: ../data/update-manager.schemas.in.h:3 +#, fuzzy msgid "" -"If automatic checking for updates is disabeld, you have to reload the " +"If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" @@ -1293,8 +1317,9 @@ msgid "Stores the size of the update-manager dialog" msgstr "儲存 update-manager 對話視窗的大小" #: ../data/update-manager.schemas.in.h:7 +#, fuzzy msgid "" -"Stores the state of the expander that contains the list of changs and the " +"Stores the state of the expander that contains the list of changes and the " "description" msgstr "儲存包含修改紀錄及描述的 expander 的狀態" @@ -1320,212 +1345,189 @@ msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 更新" #. CompDescription -#: ../data/channels/Ubuntu.info.in:15 +#: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "協力維護軟體 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:20 +#: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:23 +#: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "非自由軟體 (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:29 +#: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:71 +#: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 ‘Dapper Drake‘" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:75 +#: ../data/channels/Ubuntu.info.in:62 msgid "By Canonical supported Open Source software" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:78 +#: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "協力維護軟體 (Universe)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:79 +#: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "協力維護軟體 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:82 +#: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "非自由軟體 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:83 +#: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:86 +#: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非自由軟體 (Multiverse)" #. CompDescriptionLong -#: ../data/channels/Ubuntu.info.in:87 +#: ../data/channels/Ubuntu.info.in:71 msgid "By copyright or legal issues restricted software" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:92 +#: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 ‘Dapper Drake‘" #. Description -#: ../data/channels/Ubuntu.info.in:106 -#, fuzzy -msgid "Important security updates" -msgstr "Ubuntu 5.10 安全性更新" - -#. Description -#: ../data/channels/Ubuntu.info.in:113 -msgid "Recommended updates" -msgstr "" - -#. Description -#: ../data/channels/Ubuntu.info.in:120 -#, fuzzy -msgid "Proposed updates" -msgstr "安裝更新套件(_I)" - -#. Description -#: ../data/channels/Ubuntu.info.in:127 +#: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" #. Description -#: ../data/channels/Ubuntu.info.in:134 +#: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 ‘Breezy Badger’" -#. CompDescription -#: ../data/channels/Ubuntu.info.in:137 ../data/channels/Debian.info.in:51 -msgid "Officially supported" -msgstr "官方支援" - #. Description -#: ../data/channels/Ubuntu.info.in:151 +#: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 ‘Breezy Badger’" #. Description -#: ../data/channels/Ubuntu.info.in:165 +#: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:172 +#: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:179 +#: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 回移套件" #. Description -#: ../data/channels/Ubuntu.info.in:186 +#: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 ‘Breezy Badger’" #. Description -#: ../data/channels/Ubuntu.info.in:203 +#: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:207 -#, fuzzy -msgid "Oficially supported" +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" msgstr "官方支援" #. Description -#: ../data/channels/Ubuntu.info.in:217 +#: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:224 +#: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:231 +#: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 回移套件" #. Description -#: ../data/channels/Ubuntu.info.in:237 +#: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 ‘Breezy Badger’" #. CompDescription -#: ../data/channels/Ubuntu.info.in:246 +#: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟體 (Universe)" #. CompDescription -#: ../data/channels/Ubuntu.info.in:249 +#: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟體 (Multiverse)" #. Description -#: ../data/channels/Ubuntu.info.in:254 +#: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" #. CompDescription -#: ../data/channels/Ubuntu.info.in:258 +#: ../data/channels/Ubuntu.info.in:209 #, fuzzy -msgid "No longer oficially supported" +msgid "No longer officially supported" msgstr "有些軟體不再有官方支援" #. CompDescription -#: ../data/channels/Ubuntu.info.in:261 +#: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限制" #. Description -#: ../data/channels/Ubuntu.info.in:268 +#: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 安全性更新" #. Description -#: ../data/channels/Ubuntu.info.in:275 +#: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 更新" #. Description -#: ../data/channels/Ubuntu.info.in:282 +#: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 回移套件" @@ -1576,6 +1578,46 @@ msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" +#~ msgid "Some software no longer officially supported" +#~ msgstr "有些軟體不再有官方支援" + +#~ msgid "Could not find any upgrades" +#~ msgstr "無法找到任何升級" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "系統升級已經完成。" + +#, fuzzy +#~ msgid "" +#~ "Upgrading to Ubuntu 6.10" +#~ msgstr "" +#~ "升級至 Ubuntu 6.06 LTS" + +#, fuzzy +#~ msgid "Important security updates of Ubuntu" +#~ msgstr "Ubuntu 5.10 安全性更新" + +#, fuzzy +#~ msgid "Updates of Ubuntu" +#~ msgstr "升級到最新版本的 Ubuntu" + +#~ msgid "Cannot install all available updates" +#~ msgstr "無法安裝所有更新套件" + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "正在檢測您的系統\n" +#~ "\n" +#~ "軟體更新會更正錯誤,排除安全弱點,並提功新功能." + +#, fuzzy +#~ msgid "Oficially supported" +#~ msgstr "官方支援" + #~ msgid "" #~ "Some updates require the removal of further software. Use the function " #~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -- cgit v1.2.3 From 3f8b06652b6bce05452cbbd7a6b916562a9762f1 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 23 Sep 2006 09:55:29 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - fix in clear() * UpdateManager/UpdateManager.py: - fixes in the new DistUpgrader code --- DistUpgrade/DistUpgradeCache.py | 7 ++++++- DistUpgrade/DistUpgradeControler.py | 14 +++++++++----- UpdateManager/UpdateManager.py | 2 +- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 99f3b585..8427bb3d 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -68,7 +68,7 @@ class MyCache(apt.Cache): self.to_remove.append(pkg.name) def clear(self): - self.depcache.Init() + self._depcache.Init() def restore_snapshot(self): """ restore a snapshot """ @@ -318,3 +318,8 @@ class MyCache(apt.Cache): if foreign: foreign_pkgs.add(pkg.name) return foreign_pkgs + +if __name__ == "__main__": + import DistUpgradeConfigParser + c = MyCache(DistUpgradeConfigParser.DistUpgradeConfig(".")) + c.clear() diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index bcb54553..5217a990 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -107,11 +107,15 @@ class DistUpgradeControler(object): self._view.updateStatus(_("Reading cache")) self.cache = None - if self.options.withNetwork == None: + if not self.options or self.options.withNetwork == None: self.useNetwork = True else: self.useNetwork = self.options.withNetwork - self.aptcdrom = AptCdrom(distUpgradeView, options.cdromPath) + if options: + cdrompath = options.cdromPath + else: + cdrompath = None + self.aptcdrom = AptCdrom(distUpgradeView, cdrompath) # the configuration self.config = DistUpgradeConfig(datadir) @@ -143,7 +147,7 @@ class DistUpgradeControler(object): return False # FIXME: we may try to find out a bit more about the network # connection here and ask more inteligent questions - if self.aptcdrom and self.options.withNetwork == None: + if self.aptcdrom and self.options and self.options.withNetwork == None: res = self._view.askYesNoQuestion(_("Fetch data from the network for the upgrade?"), _("The upgrade can use the network to check " "the latest updates and to fetch packages that are not on the " @@ -422,7 +426,7 @@ class DistUpgradeControler(object): return res def doDistUpgrade(self): - if self.options.haveBackports: + if self.options and self.options.haveBackports: backportsdir = os.getcwd()+"/backports" apt_pkg.Config.Set("Dir::Bin::dpkg",backportsdir+"/usr/bin/dpkg"); currentRetry = 0 @@ -647,7 +651,7 @@ class DistUpgradeControler(object): if not self.prepare(): self.abort(1) - if self.options.haveBackports == False: + if selfoptions and self.options.haveBackports == False: # get backported packages (if needed) self.getRequiredBackports() diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 0d70b56c..a609ab5e 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -33,7 +33,7 @@ try: except: import fakegconf as gconf import gobject -from warnings import warn +import warnings warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) import apt import apt_pkg -- cgit v1.2.3 From 7047a71806f250371d4cef6947162aa44ed528b9 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 23 Sep 2006 10:02:12 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - typo --- DistUpgrade/DistUpgradeControler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 5217a990..f9c4c0dd 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -651,7 +651,7 @@ class DistUpgradeControler(object): if not self.prepare(): self.abort(1) - if selfoptions and self.options.haveBackports == False: + if self.options and self.options.haveBackports == False: # get backported packages (if needed) self.getRequiredBackports() -- cgit v1.2.3 From 4de7b5c16a98fcc5e6d9ff4d32ca289c44a5192b Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Sun, 24 Sep 2006 14:22:27 +0200 Subject: * place the cancel button into the changes textview --- UpdateManager/UpdateManager.py | 7 +++- data/glade/UpdateManager.glade | 90 +----------------------------------------- 2 files changed, 7 insertions(+), 90 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 7f62d0f0..f4c34ada 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -507,8 +507,11 @@ class UpdateManager(SimpleGladeApp): lock = thread.allocate_lock() lock.acquire() t=thread.start_new_thread(self.cache.get_changelog,(name,lock)) - changes_buffer.set_text(_("Downloading the list of changes...")) - button = self.button_cancel_dl_changelog + changes_buffer.set_text("%s\n" % _("Downloading list of changes...")) + iter = changes_buffer.get_iter_at_line(1) + anchor = changes_buffer.create_child_anchor(iter) + button = gtk.Button(stock="gtk-cancel") + self.textview_changes.add_child_at_anchor(button, anchor) button.show() id = button.connect("clicked", lambda w,lock: lock.release(), lock) diff --git a/data/glade/UpdateManager.glade b/data/glade/UpdateManager.glade index 2a4965fd..a11a5a43 100644 --- a/data/glade/UpdateManager.glade +++ b/data/glade/UpdateManager.glade @@ -468,7 +468,7 @@ True True - False + True 6 @@ -533,92 +533,6 @@ True - - - - True - GTK_BUTTONBOX_END - 0 - - - - True - True - GTK_RELIEF_NORMAL - True - - - - True - 0.5 - 0.5 - 0 - 0 - 0 - 0 - 0 - 0 - - - - True - False - 2 - - - - True - gtk-cancel - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - True - Cancel _Download - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - - - - - - 0 - False - False - - False @@ -1288,7 +1202,7 @@ True <b><big>You must check for updates manually</big></b> -Your system does not check for updates automatically. You can configure this behavior in "System" -> "Administration" -> "Software Properties". +Your system does not check for updates automatically. You can configure this behavior in <i>Software Sources</i> on the <i>Internet Updates</i> tab. False True GTK_JUSTIFY_LEFT -- cgit v1.2.3 From d8c288d928da41fae20947b7dd2064740c2593b3 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 25 Sep 2006 12:45:53 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - check for self.sources,self.aptcdrom before using it --- DistUpgrade/DistUpgradeControler.py | 6 ++++-- debian/changelog | 9 +++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index f9c4c0dd..e32c0c5f 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -551,8 +551,10 @@ class DistUpgradeControler(object): def abort(self): """ abort the upgrade, cleanup (as much as possible) """ - self.sources.restoreBackup(self.sources_backup_ext) - self.aptcdrom.restoreBackup(self.sources_backup_ext) + if hasattr(self, sources): + self.sources.restoreBackup(self.sources_backup_ext) + if hasattr(self, aptcdrom): + self.aptcdrom.restoreBackup(self.sources_backup_ext) # generate a new cache self._view.updateStatus(_("Restoring original system state")) self._view.abort() diff --git a/debian/changelog b/debian/changelog index 6631a01b..d817dea3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +update-manager (0.44.14) edgy; urgency=low + + * UpdateManager/UpdateManager.py: + - put the cancel button inside the text-area to avoid flickering + * DistUprade/DistUpgradeControler.py: + - check for self.sources, self.aptcdrom before using it (lp: #61852) + + -- + update-manager (0.44.13) edgy; urgency=low * UpdateManager/UpdateManager.py: -- cgit v1.2.3 From 536601667968e0ec4cae96a79541844674d8dff4 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 20:46:07 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - disable backports fetching --- DistUpgrade/Changelog | 4 ++++ DistUpgrade/DistUpgradeControler.py | 16 +++++++++------- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 54d194e6..35df1255 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,7 @@ +2006-09-26: + - comment out the getRequiredBackport code because we will + not use Breaks for the dapper->edgy upgrade yet + (see #54234 for the rationale) 2006-09-23: - support fetching backports of selected packages first and use them for the upgrade (needed to support Breaks) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index e32c0c5f..2a887029 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -622,14 +622,14 @@ class DistUpgradeControler(object): os.unlink(apt_pkg.Config.FindDir("Dir::Etc::sourceparts")+"/backport-source.list") apt_pkg.Config.Set("Dir::Cache::archives",cachedir) os.chdir(cwd) - return self.setupRequiredBackports(backportsdir) - - def setupRequiredBackports(self, backportsdir): - " setup the required backports in a evil way " # unpack it for deb in glob.glob(backportsdir+"/*.deb"): ret = os.system("dpkg-deb -x %s %s" % (deb, backportsdir)) # FIXME: do error checking + return self.setupRequiredBackports(backportsdir) + + def setupRequiredBackports(self, backportsdir): + " setup the required backports in a evil way " # setup some pathes to make sure the new stuff is used os.environ["LD_LIBRARY_PATH"] = backportsdir+"/usr/lib" os.environ["PYTHONPATH"] = backportsdir+"/usr/lib/python2.4/site-packages/" @@ -653,9 +653,11 @@ class DistUpgradeControler(object): if not self.prepare(): self.abort(1) - if self.options and self.options.haveBackports == False: - # get backported packages (if needed) - self.getRequiredBackports() + # mvo: commented out for now, see #54234, this needs to be + # refactored to use a arch=any tarball + #if self.options and self.options.haveBackports == False: + # # get backported packages (if needed) + # self.getRequiredBackports() # run a "apt-get update" now if not self.doUpdate(): -- cgit v1.2.3 From 9fb75fc0f0c1623542ea1c2a74edfe6d55b5db96 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 20:51:41 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - fix hasattr() usage --- DistUpgrade/Changelog | 1 + DistUpgrade/DistUpgradeControler.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 35df1255..c1de4192 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -2,6 +2,7 @@ - comment out the getRequiredBackport code because we will not use Breaks for the dapper->edgy upgrade yet (see #54234 for the rationale) + - bugfixes 2006-09-23: - support fetching backports of selected packages first and use them for the upgrade (needed to support Breaks) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 2a887029..56ec7f08 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -551,9 +551,9 @@ class DistUpgradeControler(object): def abort(self): """ abort the upgrade, cleanup (as much as possible) """ - if hasattr(self, sources): + if hasattr(self, "sources"): self.sources.restoreBackup(self.sources_backup_ext) - if hasattr(self, aptcdrom): + if hasattr(self, "aptcdrom"): self.aptcdrom.restoreBackup(self.sources_backup_ext) # generate a new cache self._view.updateStatus(_("Restoring original system state")) -- cgit v1.2.3 From 33d4eca6244d22aa02b8ce95e6c600f6747476d7 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 21:21:11 +0200 Subject: * utils/demoted.cfg: - updated for dapper->edgy * utils/demotions.py: - made the script more generic --- DistUpgrade/Changelog | 1 + utils/demoted.cfg | 373 ++++++-------------------------------------------- utils/demotions.py | 14 +- 3 files changed, 50 insertions(+), 338 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index c1de4192..757fd3f6 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -2,6 +2,7 @@ - comment out the getRequiredBackport code because we will not use Breaks for the dapper->edgy upgrade yet (see #54234 for the rationale) + - updated demotions.cfg for dapper->edgy - bugfixes 2006-09-23: - support fetching backports of selected packages first and diff --git a/utils/demoted.cfg b/utils/demoted.cfg index 111ed3d3..c619ea69 100644 --- a/utils/demoted.cfg +++ b/utils/demoted.cfg @@ -1,331 +1,42 @@ -# demoted packages in dapper -base-config -bazaar -bonobo -cfengine-doc -cpp-3.3-doc -cyrus21-admin -cyrus21-clients -cyrus21-common -cyrus21-dev -cyrus21-doc -cyrus21-imapd -cyrus21-murder -cyrus21-pop3d -dasher -drac-dev -gcj-4.0 -gconf -gdk-imlib1 -gij-4.0 -glade-common-2 -glife -gnome-bin -gnome-dev-doc -gnome-libs-data -gossip -gstreamer0.8-aa -gstreamer0.8-alsa -gstreamer0.8-artsd -gstreamer0.8-audiofile -gstreamer0.8-caca -gstreamer0.8-cdparanoia -gstreamer0.8-doc -gstreamer0.8-dv -gstreamer0.8-dvd -gstreamer0.8-esd -gstreamer0.8-festival -gstreamer0.8-flac -gstreamer0.8-gnomevfs -gstreamer0.8-gsm -gstreamer0.8-hermes -gstreamer0.8-jpeg -gstreamer0.8-mikmod -gstreamer0.8-misc -gstreamer0.8-musepack -gstreamer0.8-oss -gstreamer0.8-plugin-apps -gstreamer0.8-sdl -gstreamer0.8-sid -gstreamer0.8-speex -gstreamer0.8-theora -gstreamer0.8-tools -gstreamer0.8-vorbis -gstreamer0.8-x -gtkglarea5 -gtkglarea5-dev -hermes1 -hermes1-dev -ifrename -imlib-base -initrd-tools -ivman -jackd -jikes -kerberos4kth-dev -konserve -kuser -kwifimanager -laptop-mode -lib32gcj6 -liba52-0.7.4 -liba52-0.7.4-dev -libart-dev -libart2 -libaspell15c2 -libbonobo-dev -libbonobo2 -libcrimson-java -libcrimson-java-doc -libcyrus-imap-perl21 -libdb1-compat -libdirectfb-0.9-22 -libdirectfb-dev -libdts-dev -libefs-dev -libefs1 -libesd0 -libgcj6 -libgcj6-awt -libgcj6-dev -libgconf-cil -libgconf-dev -libgconf11 -libgd-dev -libgd-noxpm-dev -libgd-xpm-dev -libgd1-noxpm -libgd1-xpm -libgdchart-gd1-noxpm -libgdchart-gd1-noxpm-dev -libgdchart-gd1-xpm -libgdchart-gd1-xpm-dev -libgdk-pixbuf-dev -libgdk-pixbuf-gnome-dev -libgdk-pixbuf-gnome2 -libgdk-pixbuf2 -libggi-target-x -libggi2 -libggi2-dev -libgii0 -libgii0-dev -libgii0-target-x -libglade-cil -libglade-gnome0 -libglade-gnome0-dev -libglade0 -libglade0-dev -libglib-cil -libglide2 -libglide2-dev -libglide3 -libglide3-dev -libgnome-cil -libgnome-dev -libgnome32 -libgnomeprint-bin -libgnomeprint-data -libgnomeprint-dev -libgnomeprint15 -libgnomesupport0 -libgnomeui32 -libgnorba-dev -libgnorba27 -libgnorbagtk0 -libgnutls11 -libgnutls11-dev -libgstreamer-gconf0.8-0 -libgstreamer-gconf0.8-dev -libgstreamer-plugins0.8-0 -libgstreamer-plugins0.8-dev -libgstreamer0.8-0 -libgstreamer0.8-dev -libgtk-cil -libgtkxmhtml-dev -libgtkxmhtml1 -libkadm1-kerberos4kth -libkafs0-kerberos4kth -libkdb-1-kerberos4kth -libkpathsea-dev -libkpathsea3 -libkrb-1-kerberos4kth -libkthacl1-kerberos4kth -libloudmouth1-0 -libloudmouth1-dev -libmms-dev -libmms0 -libmpeg-dev -libmpeg-doc -libmpeg1 -libmpeg2-4 -libmpeg2-4-dev -libmpeg3-1 -libmpeg3-dev -libmysqlclient10 -libmysqlclient10-dev -libmysqlclient12 -libmysqlclient12-dev -libmysqlclient14 -libmysqlclient14-dev -libneon24 -libneon24-dev -libnetpbm9 -libnetpbm9-dev -liboaf-dev -liboaf0 -libopenal-dev -libopenal0 -libopenh323-dbg -libopenh323-dev -libopenh323-doc -liborbit-dev -liborbit0 -libosmesa6 -libosmesa6-dev -libotp0-kerberos4kth -libpixman1 -libpng3-dev -libpq3 -libpsiconv-dev -libpsiconv5 -libpth-dbg -libpth-dev -libpth2 -libreadline4 -libroken16-kerberos4kth -libsablot0 -libsablot0-dev -libsidplay1 -libsidplay1-dev -libsigc++-1.2-5c2 -libsigc++-1.2-dev -libsl0-kerberos4kth -libsnmp4.2 -libsnmp4.2-dev -libss0-kerberos4kth -libssl0.9.7 -libstdc++5-3.3-dbg -libstdc++5-3.3-doc -libswfdec0.3 -libswfdec0.3-dev -libwww-dev -libwww-ssl-dev -libwww-ssl0 -libxine1c2 -libxosd-dev -libxosd2 -libxp-java -libzvt-dev -libzvt2 -mozilla-browser -mozilla-dev -mozilla-locale-ca -mozilla-locale-cy -mozilla-locale-da -mozilla-locale-de-at -mozilla-locale-el -mozilla-locale-es-es -mozilla-locale-eu -mozilla-locale-fr -mozilla-locale-hu -mozilla-locale-it -mozilla-locale-ja -mozilla-locale-ko -mozilla-locale-lt -mozilla-locale-no-nb -mozilla-locale-pl -mozilla-locale-ptbr -mozilla-locale-sl -mozilla-locale-tr -mozilla-psm -mpack -multiseat -oaf -orbit -passivetex -plone -plone-site -postgresql -postgresql-7.4 -postgresql-8.0 -postgresql-client -postgresql-client-7.4 -postgresql-client-8.0 -postgresql-contrib -postgresql-contrib-7.4 -postgresql-contrib-8.0 -postgresql-dev -postgresql-doc -postgresql-doc-7.4 -postgresql-doc-8.0 -postgresql-plperl-7.4 -postgresql-plperl-8.0 -postgresql-plpython-7.4 -postgresql-plpython-8.0 -postgresql-pltcl-7.4 -postgresql-pltcl-8.0 -python-gdchart -python-gst -python-opengl -python-osd -python-sip4-qt3 -python2.3 -python2.3-dev -python2.3-imaging -python2.3-tk -python2.3-xml -python2.4-opengl -python2.4-osd -sane-utils -tspc -ubuntu-express -vim-gtk -xchat -xchat-common -xmltex -xserver-xorg-input-acecad -xserver-xorg-input-aiptek -xserver-xorg-input-calcomp -xserver-xorg-input-citron -xserver-xorg-input-digitaledge -xserver-xorg-input-dmc -xserver-xorg-input-dynapro -xserver-xorg-input-fpit -xserver-xorg-input-hyperpen -xserver-xorg-input-magellan -xserver-xorg-input-microtouch -xserver-xorg-input-mutouch -xserver-xorg-input-palmax -xserver-xorg-input-penmount -xserver-xorg-input-spaceorb -xserver-xorg-input-summa -xserver-xorg-input-tek4957 -xserver-xorg-input-void -zope-atcontenttypes -zope-atrbw -zope-btreefolder2 -zope-cmf1.5 -zope-cmfactionicons1.5 -zope-cmfcalendar1.5 -zope-cmfcore1.5 -zope-cmfdefault1.5 -zope-cmfdynamicviewfti -zope-cmfformcontroller -zope-cmfplone -zope-cmfquickinstallertool -zope-cmfsetup1.5 -zope-cmftopic1.5 -zope-cmfuid1.5 -zope-dcworkflow1.5 -zope-extendedpathindex -zope-groupuserfolder -zope-kupu -zope-linguaplone -zope-ploneerrorreporting -zope-plonelanguagetool -zope-plonetranslations -zope-pts -zope-resourceregistries -zope-securemailhost -zope2.8 -zope2.8-sandbox \ No newline at end of file +# demoted packages +blender +bluez-pcmcia-support +courier-authdaemon +courier-base +courier-doc +courier-imap +courier-imap-ssl +courier-pop +courier-pop-ssl +courier-ssl +ftgl-dev +lam4-dev +lam4c2 +libgd-gd2-noxpm-perl +libgmime2.1 +libgmime2.1-cil +libgnutls12 +libmpich1.0-dev +libmpich1.0c2 +libnetcdf++3 +libnetcdf3 +libpgtcl-dev +libpgtcl1.5 +libreiserfs0.3-0 +libreiserfs0.3-dbg +libreiserfs0.3-dev +libunicode-string-perl +libxaw6 +libxaw6-dbg +mono-classlib-2.0 +mpi-doc +mpich-bin +netcdfg-dev +python-netcdf +python-parted +python-pgsql +python-scientific-doc +sdf-doc +tcl8.0 +tcl8.0-dev +tk8.0 diff --git a/utils/demotions.py b/utils/demotions.py index 78f4f2e7..45a1397b 100755 --- a/utils/demotions.py +++ b/utils/demotions.py @@ -43,11 +43,11 @@ if __name__ == "__main__": except OSError: pass - breezy = Dist("breezy") - dapper = Dist("dapper") + old = Dist("dapper") + new = Dist("edgy") # go over the dists to find main pkgs - for dist in [breezy, dapper]: + for dist in [old, new]: for comp in ["main", "restricted", "universe", "multiverse"]: line = "deb http://archive.ubuntu.com/ubuntu %s %s\n" % (dist.name,comp) @@ -64,11 +64,11 @@ if __name__ == "__main__": map(lambda pkg: dist.pkgs_in_comp[comp].add(pkg.name), cache) # check what is no longer in main - no_longer_main = breezy.pkgs_in_comp["main"] - dapper.pkgs_in_comp["main"] - no_longer_main |= breezy.pkgs_in_comp["restricted"] - dapper.pkgs_in_comp["restricted"] + no_longer_main = old.pkgs_in_comp["main"] - new.pkgs_in_comp["main"] + no_longer_main |= old.pkgs_in_comp["restricted"] - new.pkgs_in_comp["restricted"] # check what moved to universe and what was removed (or renamed) - in_universe = lambda pkg: pkg in dapper.pkgs_in_comp["universe"] or pkg in dapper.pkgs_in_comp["multiverse"] + in_universe = lambda pkg: pkg in new.pkgs_in_comp["universe"] or pkg in new.pkgs_in_comp["multiverse"] # debug #not_in_universe = lambda pkg: not in_universe(pkg) @@ -82,5 +82,5 @@ if __name__ == "__main__": print "writing the demotion info to '%s'" % outfile # write it out out = open(outfile,"w") - out.write("# demoted packages in dapper\n") + out.write("# demoted packages\n") out.write("\n".join(demoted)) -- cgit v1.2.3 From b7c39558155861ae5807e35cc3b6ba932a207c36 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 21:50:03 +0200 Subject: * DistUpgrade/DistUpgrade.cfg: - new KeepInstalledPkgs keyword * DistUpgrade/DistUpgradeCache.py: - implemented keepInstaledRule() --- DistUpgrade/Changelog | 1 + DistUpgrade/DistUpgrade.cfg | 5 ++++- DistUpgrade/DistUpgradeCache.py | 25 +++++++++++++++++++++++++ DistUpgrade/README | 6 ++++++ 4 files changed, 36 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 757fd3f6..a7e39c88 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -3,6 +3,7 @@ not use Breaks for the dapper->edgy upgrade yet (see #54234 for the rationale) - updated demotions.cfg for dapper->edgy + - special case the packages affected by the Breaks changes - bugfixes 2006-09-23: - support fetching backports of selected packages first and diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index 60c3ca9f..b25def9a 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -11,6 +11,10 @@ PostUpgradePurge=xorg-common, libgl1-mesa Demotions=demoted.cfg RemoveEssentialOk=sysvinit RemovalBlacklistFile=removal_blacklist.cfg +# if those packages were installed, make sure to keep them installed +# we use this right now to emulate Breaks +KeepInstalledPkgs=gnumeric, gnumeric-gtk, hpijs +KeepInstalledSection=translations # information about the individual meta-pkgs [ubuntu-desktop] @@ -29,7 +33,6 @@ KeyDependencies=edubuntu-artwork, tuxpaint [xubuntu-desktop] KeyDependencies=xubuntu-artwork-usplash, xubuntu-default-settings, xfce4 - [Files] BackupExt=distUpgrade diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 8427bb3d..190a17b9 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -111,6 +111,28 @@ class MyCache(apt.Cache): if self.has_key(pkg): self._depcache.MarkDelete(self[pkg]._pkg,True) + def keepInstalledRule(self): + """ run after the dist-upgrade to ensure that certain + packages are kept installed """ + def keepInstalled(self, pkgname): + if (self.has_key(pkgname) + and self[pkgname].isInstalled + and self[pkgname].markedDelete): + self[pkgname].markInstall() + # first the global list + for pkgname in self.config.getlist("Distro","KeepInstalledPkgs"): + keepInstalled(self, pkgname) + # the the per-metapkg rules + for key in self.metapkgs: + if self.has_key(key) and (self[key].isInstalled or + self[key].markedInstall): + for pkgname in self.config.getlist(key,"KeepInstalledPkgs"): + keepInstalled(self, pkgname) + + + + + def postUpgradeRule(self): " run after the upgrade was done in the cache " for (rule, action) in [("Install", self.markInstall), @@ -149,6 +171,9 @@ class MyCache(apt.Cache): if not self._installMetaPkgs(view): raise SystemError, _("Can't upgrade required meta-packages") + # see if our KeepInstalled rules are honored + self.keepInstalledRule() + # and if we have some special rules self.postUpgradeRule() diff --git a/DistUpgrade/README b/DistUpgrade/README index c38a422f..b9d6c5d2 100644 --- a/DistUpgrade/README +++ b/DistUpgrade/README @@ -32,6 +32,12 @@ ForcedObsoletes: happens *after* the cache.commit()) RemoveEssentialOk: Those packages are ok to remove even though they are essential +KeepInstalledPkgs: + If the package was installed before, it should still be installed + after the upgrade +KeepInstalledSection: + Packages from this section that were installed should always be + installed afterwards as well (useful for eg translations) [$meta-pkg] KeyDependencies: -- cgit v1.2.3 From e4113f9d48f57c82a7b012a8784ca0b1e4a1d230 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 21:53:00 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - implemented "KeepInstalledSection" --- DistUpgrade/DistUpgradeCache.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 190a17b9..1d5fad53 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -119,6 +119,7 @@ class MyCache(apt.Cache): and self[pkgname].isInstalled and self[pkgname].markedDelete): self[pkgname].markInstall() + # first the global list for pkgname in self.config.getlist("Distro","KeepInstalledPkgs"): keepInstalled(self, pkgname) @@ -128,9 +129,19 @@ class MyCache(apt.Cache): self[key].markedInstall): for pkgname in self.config.getlist(key,"KeepInstalledPkgs"): keepInstalled(self, pkgname) - - - + # now the keepInstalledSection code + for section in self.config.getlist("Distro","KeepInstalledSection"): + for pkg in self: + if pkg.markedDelete and pkg.section == section: + keepInstalled(self, pkgname) + # the the per-metapkg rules + for key in self.metapkgs: + if self.has_key(key) and (self[key].isInstalled or + self[key].markedInstall): + for section in self.config.getlist(key,"KeepInstalledSection"): + for pkg in self: + if pkg.markedDelete and pkg.section == section: + keepInstalled(self, pkgname) def postUpgradeRule(self): -- cgit v1.2.3 From 8a6925c34753aa87dea38a5b12ea6f80d2d369e5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 22:01:05 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - added logging for the KeepInstaleld rules --- DistUpgrade/Changelog | 2 ++ DistUpgrade/DistUpgradeCache.py | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index a7e39c88..4e358b0c 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -4,6 +4,8 @@ (see #54234 for the rationale) - updated demotions.cfg for dapper->edgy - special case the packages affected by the Breaks changes + - make sure that no translations get lost during the upgrade + (thanks to mdz for pointing this out) - bugfixes 2006-09-23: - support fetching backports of selected packages first and diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 1d5fad53..00c0013b 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -114,26 +114,26 @@ class MyCache(apt.Cache): def keepInstalledRule(self): """ run after the dist-upgrade to ensure that certain packages are kept installed """ - def keepInstalled(self, pkgname): + def keepInstalled(self, pkgname, reason): if (self.has_key(pkgname) and self[pkgname].isInstalled and self[pkgname].markedDelete): - self[pkgname].markInstall() + self.markInstall(pkgname, reason) # first the global list for pkgname in self.config.getlist("Distro","KeepInstalledPkgs"): - keepInstalled(self, pkgname) + keepInstalled(self, pkgname, "Distro KeepInstalledPkgs rule") # the the per-metapkg rules for key in self.metapkgs: if self.has_key(key) and (self[key].isInstalled or self[key].markedInstall): for pkgname in self.config.getlist(key,"KeepInstalledPkgs"): - keepInstalled(self, pkgname) + keepInstalled(self, pkgname, "%s KeepInstalledPkgs rule" % key) # now the keepInstalledSection code for section in self.config.getlist("Distro","KeepInstalledSection"): for pkg in self: if pkg.markedDelete and pkg.section == section: - keepInstalled(self, pkgname) + keepInstalled(self, pkgname, "Distro KeepInstalledSection rule: %s" % section) # the the per-metapkg rules for key in self.metapkgs: if self.has_key(key) and (self[key].isInstalled or @@ -141,7 +141,7 @@ class MyCache(apt.Cache): for section in self.config.getlist(key,"KeepInstalledSection"): for pkg in self: if pkg.markedDelete and pkg.section == section: - keepInstalled(self, pkgname) + keepInstalled(self, pkgname, "%s KeepInstalledSection rule: %s" % (key, section)) def postUpgradeRule(self): -- cgit v1.2.3 From e709c67d58ddd99b11f8e6e466dca487a844a880 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 22:13:19 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - use the right packagename when doing the KeepInstalledSection --- DistUpgrade/DistUpgradeCache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 00c0013b..318c30cd 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -133,7 +133,7 @@ class MyCache(apt.Cache): for section in self.config.getlist("Distro","KeepInstalledSection"): for pkg in self: if pkg.markedDelete and pkg.section == section: - keepInstalled(self, pkgname, "Distro KeepInstalledSection rule: %s" % section) + keepInstalled(self, pkg.name, "Distro KeepInstalledSection rule: %s" % section) # the the per-metapkg rules for key in self.metapkgs: if self.has_key(key) and (self[key].isInstalled or @@ -141,7 +141,7 @@ class MyCache(apt.Cache): for section in self.config.getlist(key,"KeepInstalledSection"): for pkg in self: if pkg.markedDelete and pkg.section == section: - keepInstalled(self, pkgname, "%s KeepInstalledSection rule: %s" % (key, section)) + keepInstalled(self, pkg.name, "%s KeepInstalledSection rule: %s" % (key, section)) def postUpgradeRule(self): -- cgit v1.2.3 From 7e1ee3827be2a20fc4175315890be898123732fd Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 23:04:41 +0200 Subject: * UpdateManager/Common/aptsources.py: - bugfix in the enable_component() code --- UpdateManager/Common/aptsources.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/UpdateManager/Common/aptsources.py b/UpdateManager/Common/aptsources.py index 836b8fae..0d716231 100644 --- a/UpdateManager/Common/aptsources.py +++ b/UpdateManager/Common/aptsources.py @@ -619,6 +619,8 @@ class Distribution: # e.g. "dapper", "dapper-updates") comps_per_dist = {} for s in sources: + if s.type != "deb": + continue if not comps_per_dist.has_key(s.dist): comps_per_dist[s.dist] = set() map(comps_per_dist[s.dist].add, s.comps) @@ -631,10 +633,18 @@ class Distribution: for source in sources: add_component_only_once(source, comps_per_dist) + # now do the same for source dists if self.get_source_code == True: - for source in self.source_code_sources: - if comp not in source.comps: - add_component_only_once(source, comps_per_dist) + comps_per_dist = {} + for s in sources: + if s.type != "deb-src": + continue + if not comps_per_dist.has_key(s.dist): + comps_per_dist[s.dist] = set() + map(comps_per_dist[s.dist].add, s.comps) + for source in self.source_code_sources: + if comp not in source.comps: + add_component_only_once(source, comps_per_dist) def disable_component(self, sourceslist, comp): -- cgit v1.2.3 From a7d1b0dd42e27785636db09b94a8fed834edebab Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 23:34:28 +0200 Subject: * UpdateManager/Common/aptsources.py: - use self.source_code_sources when enabling a component * DistUpgrade/DistUpgradeControler.py: - make sure to enable restricted as well otherwise the kernel won't upgrade --- DistUpgrade/DistUpgradeControler.py | 5 +++++ UpdateManager/Common/aptsources.py | 2 +- debian/changelog | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 56ec7f08..ad4e5335 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -165,7 +165,12 @@ class DistUpgradeControler(object): # enable main (we always need this!) distro = Distribution() distro.get_sources(self.sources) + # we need both main + restricted for a real upgrade + # restricted is required for the kernel upgrade (otherwise + # it will just keep the kernel because linux-$arch depends on + # linux-restricted-modules from restricted) distro.enable_component(self.sources, "main") + distro.enable_component(self.sources, "restricted") # this must map, i.e. second in "from" must be the second in "to" # (but they can be different, so in theory we could exchange diff --git a/UpdateManager/Common/aptsources.py b/UpdateManager/Common/aptsources.py index 0d716231..06d83e01 100644 --- a/UpdateManager/Common/aptsources.py +++ b/UpdateManager/Common/aptsources.py @@ -636,7 +636,7 @@ class Distribution: # now do the same for source dists if self.get_source_code == True: comps_per_dist = {} - for s in sources: + for s in self.source_code_sources: if s.type != "deb-src": continue if not comps_per_dist.has_key(s.dist): diff --git a/debian/changelog b/debian/changelog index d817dea3..2f067c0e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,7 +5,7 @@ update-manager (0.44.14) edgy; urgency=low * DistUprade/DistUpgradeControler.py: - check for self.sources, self.aptcdrom before using it (lp: #61852) - -- + -- Michael Vogt Tue, 26 Sep 2006 23:17:27 +0200 update-manager (0.44.13) edgy; urgency=low -- cgit v1.2.3 From a1ec5a007953cdd84e0ac6a0ee24e4252b724ca8 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 26 Sep 2006 23:49:15 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - no need to enable restricted by default, things will still work without it and it may well be a conscious decision --- DistUpgrade/DistUpgradeControler.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index ad4e5335..0b822022 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -165,12 +165,8 @@ class DistUpgradeControler(object): # enable main (we always need this!) distro = Distribution() distro.get_sources(self.sources) - # we need both main + restricted for a real upgrade - # restricted is required for the kernel upgrade (otherwise - # it will just keep the kernel because linux-$arch depends on - # linux-restricted-modules from restricted) + # make sure that main is enabled distro.enable_component(self.sources, "main") - distro.enable_component(self.sources, "restricted") # this must map, i.e. second in "from" must be the second in "to" # (but they can be different, so in theory we could exchange -- cgit v1.2.3 From 958de6edfbf38390aa6ee613c9d1d1d70bd5fcb5 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Tue, 26 Sep 2006 23:55:21 +0200 Subject: * Enable the source code too for toggled components --- SoftwareProperties/SoftwareProperties.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py index 1c8a3425..14ddeefc 100644 --- a/SoftwareProperties/SoftwareProperties.py +++ b/SoftwareProperties/SoftwareProperties.py @@ -482,6 +482,9 @@ class SoftwareProperties(SimpleGladeApp): for source in self.distro.child_sources: if source.template == template: self.sourceslist.remove(source) + for source in self.distro.source_code_sources: + if source.template == template: + self.sourceslist.remove(source) else: self.distro.add_source(self.sourceslist, uri=template.base_uri, -- cgit v1.2.3 From 84593d761ff3e297753111923e621dfaf9c9ff77 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Wed, 27 Sep 2006 00:21:17 +0200 Subject: * move the humanize_size method to common.utils * make the strings in the download progress less cryptic for the translators - fix #62494 * Remove the "unkown speed" - just don't display any --- UpdateManager/Common/utils.py | 17 +++++++++++++++++ UpdateManager/GtkProgress.py | 13 ++++++++----- UpdateManager/UpdateManager.py | 23 +++-------------------- 3 files changed, 28 insertions(+), 25 deletions(-) diff --git a/UpdateManager/Common/utils.py b/UpdateManager/Common/utils.py index 099cbfed..95440e44 100644 --- a/UpdateManager/Common/utils.py +++ b/UpdateManager/Common/utils.py @@ -21,3 +21,20 @@ def error(parent, summary, message): res = d.run() d.destroy() return + +def humanize_size(self, bytes): + """ + Convert a given size in bytes to a nicer better readable unit + """ + if bytes == 0: + # TRANSLATORS: download size is 0 + return _("None") + elif bytes < 1024: + # TRANSLATORS: download size of very small updates + return _("1 KB") + elif bytes < 1024 * 1024: + # TRANSLATORS: download size of small updates, e.g. "250 KB" + return locale.format(_("%.0f KB"), bytes/1024) + else: + # TRANSLATORS: download size of updates, e.g. "2.3 MB" + return locale.format(_("%.1f MB"), bytes / 1024 / 1024) diff --git a/UpdateManager/GtkProgress.py b/UpdateManager/GtkProgress.py index 54f60384..cdc761fc 100644 --- a/UpdateManager/GtkProgress.py +++ b/UpdateManager/GtkProgress.py @@ -25,6 +25,7 @@ import gtk import apt import apt_pkg from gettext import gettext as _ +from common.utils import * # intervals of the start up progress # 3x caching and menu creation @@ -104,12 +105,14 @@ class GtkFetchProgress(apt.progress.FetchProgress): if currentItem > self.totalItems: currentItem = self.totalItems if self.currentCPS > 0: - statusText = (_("Downloading file %li of %li with %s/s" - % (currentItem, self.totalItems, - apt_pkg.SizeToStr(self.currentCPS)))) + statusText = (_("Downloading file %(current)li of %(total)li with " + "%(speed)s/s") % {"current" : currentItem, + "total" : self.totalItems, + "speed" : humanize_size(self.currentCPS)}) else: - statusText = (_("Downloading file %li of %li with unknown " - "speed") % (currentItem, self.totalItems)) + statusText = (_("Downloading file %(current)li of %(total)li") % \ + {"current" : currentItem, + "total" : self.totalItems }) self.progress.set_fraction(self.percent/100.0) self.status.set_markup("%s" % statusText) # TRANSLATORS: show the remaining time in a progress bar: diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 63d0eab9..2bb95b2f 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -576,23 +576,6 @@ class UpdateManager(SimpleGladeApp): self.treeview_update.queue_draw() self.setBusy(False) - def humanize_size(self, bytes): - """ - Convert a given size in bytes to a nicer better readable unit - """ - if bytes == 0: - # TRANSLATORS: download size is 0 - return _("None") - elif bytes < 1024: - # TRANSLATORS: download size of very small updates - return _("1 KB") - elif bytes < 1024 * 1024: - # TRANSLATORS: download size of small updates, e.g. "250 KB" - return locale.format(_("%.0f KB"), bytes/1024) - else: - # TRANSLATORS: download size of updates, e.g. "2.3 MB" - return locale.format(_("%.1f MB"), bytes / 1024 / 1024) - def setBusy(self, flag): """ Show a watch cursor if the app is busy for more than 0.3 sec. Furthermore provide a loop to handle user interface events """ @@ -610,7 +593,7 @@ class UpdateManager(SimpleGladeApp): self.dl_size = self.cache.requiredDownload # TRANSLATORS: b stands for Bytes self.label_downsize.set_markup(_("Download size: %s" % \ - self.humanize_size(self.dl_size))) + humanize_size(self.dl_size))) def update_count(self): """activate or disable widgets and show dialog texts correspoding to @@ -633,7 +616,7 @@ class UpdateManager(SimpleGladeApp): "You can install %s updates", num_updates) % \ num_updates + "" - text_download = _("Download size: %s") % self.humanize_size(self.dl_size) + text_download = _("Download size: %s") % humanize_size(self.dl_size) self.notebook_details.set_sensitive(True) self.treeview_update.set_sensitive(True) self.button_install.grab_default() @@ -828,7 +811,7 @@ class UpdateManager(SimpleGladeApp): else: contents += _("Version %s") % pkg.candidateVersion #TRANSLATORS: the b stands for Bytes - contents += " " + _("(Size: %s)") % self.humanize_size(pkg.packageSize) + contents += " " + _("(Size: %s)") % humanize_size(pkg.packageSize) contents += "" self.store.append([contents, pkg.name, pkg]) -- cgit v1.2.3 From cf3decd2e830b53569e8dd9c12c2469914eb9b21 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Wed, 27 Sep 2006 00:30:46 +0200 Subject: * Make some strings translatable - seems that gettext doesn't like being part of string addition. the other one was my fault and not the one of gettext. fix #62519 and #62458 * Fix the imports and calls of human_size --- UpdateManager/Common/utils.py | 3 ++- UpdateManager/GtkProgress.py | 2 +- UpdateManager/UpdateManager.py | 16 ++++++++-------- po/POTFILES.in | 1 + 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/UpdateManager/Common/utils.py b/UpdateManager/Common/utils.py index 95440e44..fa73b8bd 100644 --- a/UpdateManager/Common/utils.py +++ b/UpdateManager/Common/utils.py @@ -1,4 +1,5 @@ import gtk +from gettext import gettext as _ def str_to_bool(str): if str == "0" or str.upper() == "FALSE": @@ -22,7 +23,7 @@ def error(parent, summary, message): d.destroy() return -def humanize_size(self, bytes): +def humanize_size(bytes): """ Convert a given size in bytes to a nicer better readable unit """ diff --git a/UpdateManager/GtkProgress.py b/UpdateManager/GtkProgress.py index cdc761fc..cb635e87 100644 --- a/UpdateManager/GtkProgress.py +++ b/UpdateManager/GtkProgress.py @@ -25,7 +25,7 @@ import gtk import apt import apt_pkg from gettext import gettext as _ -from common.utils import * +from Common.utils import * # intervals of the start up progress # 3x caching and menu creation diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 2bb95b2f..02a89a40 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -592,8 +592,8 @@ class UpdateManager(SimpleGladeApp): self.button_install.set_sensitive(self.cache.installCount) self.dl_size = self.cache.requiredDownload # TRANSLATORS: b stands for Bytes - self.label_downsize.set_markup(_("Download size: %s" % \ - humanize_size(self.dl_size))) + self.label_downsize.set_markup(_("Download size: %s") % \ + humanize_size(self.dl_size)) def update_count(self): """activate or disable widgets and show dialog texts correspoding to @@ -601,7 +601,7 @@ class UpdateManager(SimpleGladeApp): self.refresh_updates_count() num_updates = self.cache.installCount if num_updates == 0: - text_header= ""+_("Your system is up-to-date")+"" + text_header= "%s" + text_header = "%s" % \ + (gettext.ngettext("You can install %s update", + "You can install %s updates", + num_updates) % \ + num_updates) text_download = _("Download size: %s") % humanize_size(self.dl_size) self.notebook_details.set_sensitive(True) self.treeview_update.set_sensitive(True) diff --git a/po/POTFILES.in b/po/POTFILES.in index b383e84c..64774c4e 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -12,6 +12,7 @@ UpdateManager/fakegconf.py UpdateManager/ReleaseNotesViewer.py UpdateManager/GtkProgress.py UpdateManager/UpdateManager.py +UpdateManager/Common/utils.py data/mime/apt.xml.in data/glade/UpdateManager.glade data/glade/SoftwareProperties.glade -- cgit v1.2.3 From 2c847b09b6e124bc30872ee537151c88de3bd65c Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Wed, 27 Sep 2006 00:52:26 +0200 Subject: * Fixed a missing import * Hopefully some strings can now be translated * Wording: Normal -> Distribution updates, to better separate them from the third party updates --- UpdateManager/Common/utils.py | 1 + UpdateManager/UpdateManager.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/UpdateManager/Common/utils.py b/UpdateManager/Common/utils.py index fa73b8bd..1fcd022f 100644 --- a/UpdateManager/Common/utils.py +++ b/UpdateManager/Common/utils.py @@ -1,5 +1,6 @@ import gtk from gettext import gettext as _ +import locale def str_to_bool(str): if str == "0" or str.upper() == "FALSE": diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 02a89a40..0219872c 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -237,7 +237,7 @@ class UpdateList: ("%s-updates" % dist, "Ubuntu", _("Recommended updates"), 9), ("%s-proposed" % dist, "Ubuntu", _("Proposed updates"), 8), ("%s-backports" % dist, "Ubuntu", _("Backports"), 7), - (dist, "Ubuntu", _("Normal updates"), 6)] + (dist, "Ubuntu", _("Distribution updates"), 6)] self.pkgs = {} self.matcher = {} @@ -803,16 +803,16 @@ class UpdateManager(SimpleGladeApp): for pkg in self.list.pkgs[origin]: name = xml.sax.saxutils.escape(pkg.name) summary = xml.sax.saxutils.escape(pkg.summary) - contents = "%s\n%s\n" % (name, summary) + contents = "%s\n%s" % (name, summary) if pkg.installedVersion != None: - contents += _("From version %s to %s") % \ - (pkg.installedVersion, - pkg.candidateVersion) + version = _("From version %(old_version)s to %(new_version)s") %\ + {"old_version" : pkg.installedVersion, + "new_version" : pkg.candidateVersion} else: - contents += _("Version %s") % pkg.candidateVersion + version = _("Version %s") % pkg.candidateVersion #TRANSLATORS: the b stands for Bytes - contents += " " + _("(Size: %s)") % humanize_size(pkg.packageSize) - contents += "" + size = _("(Size: %s)") % humanize_size(pkg.packageSize) + contents = "%s\n%s %s" % (contents, version, size) self.store.append([contents, pkg.name, pkg]) self.update_count() -- cgit v1.2.3 From b9dffe7bcfab1807249821bacb8b39e83d20d5eb Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Wed, 27 Sep 2006 01:01:51 +0200 Subject: * fixed some markups --- UpdateManager/UpdateManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 0219872c..04ad107c 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -601,7 +601,7 @@ class UpdateManager(SimpleGladeApp): self.refresh_updates_count() num_updates = self.cache.installCount if num_updates == 0: - text_header= "%s Date: Wed, 27 Sep 2006 11:15:29 +0200 Subject: * DistUpgrade/cdromupgrade: - fix missing "then" *cough* * DistUpgrade/ReleaseAnnouncement: - updated to mention the "beta" * DistUpgrade/Changelog: - updated --- DistUpgrade/Changelog | 2 + DistUpgrade/ReleaseAnnouncement | 2 +- DistUpgrade/cdromupgrade | 2 +- po/ar.po | 178 +++++++++++++++++++------------------- po/bg.po | 183 +++++++++++++++++++-------------------- po/bn.po | 182 +++++++++++++++++++-------------------- po/br.po | 178 +++++++++++++++++++------------------- po/ca.po | 183 +++++++++++++++++++-------------------- po/cs.po | 183 +++++++++++++++++++-------------------- po/da.po | 184 ++++++++++++++++++++-------------------- po/de.po | 183 +++++++++++++++++++-------------------- po/el.po | 183 +++++++++++++++++++-------------------- po/en_AU.po | 183 +++++++++++++++++++-------------------- po/en_CA.po | 178 +++++++++++++++++++------------------- po/en_GB.po | 178 +++++++++++++++++++------------------- po/es.po | 183 +++++++++++++++++++-------------------- po/fi.po | 183 +++++++++++++++++++-------------------- po/fr.po | 183 +++++++++++++++++++-------------------- po/fur.po | 178 +++++++++++++++++++------------------- po/gl.po | 178 +++++++++++++++++++------------------- po/he.po | 178 +++++++++++++++++++------------------- po/hi.po | 178 +++++++++++++++++++------------------- po/hr.po | 183 +++++++++++++++++++-------------------- po/hu.po | 183 +++++++++++++++++++-------------------- po/id.po | 183 +++++++++++++++++++-------------------- po/it.po | 183 +++++++++++++++++++-------------------- po/ja.po | 183 +++++++++++++++++++-------------------- po/ka.po | 181 ++++++++++++++++++++------------------- po/ko.po | 183 +++++++++++++++++++-------------------- po/ku.po | 181 ++++++++++++++++++++------------------- po/lt.po | 182 +++++++++++++++++++-------------------- po/mk.po | 178 +++++++++++++++++++------------------- po/ms.po | 178 +++++++++++++++++++------------------- po/nb.po | 183 +++++++++++++++++++-------------------- po/ne.po | 178 +++++++++++++++++++------------------- po/nl.po | 183 +++++++++++++++++++-------------------- po/no.po | 178 +++++++++++++++++++------------------- po/oc.po | 178 +++++++++++++++++++------------------- po/pa.po | 178 +++++++++++++++++++------------------- po/pl.po | 183 +++++++++++++++++++-------------------- po/pt.po | 183 +++++++++++++++++++-------------------- po/pt_BR.po | 183 +++++++++++++++++++-------------------- po/ro.po | 178 +++++++++++++++++++------------------- po/ru.po | 183 +++++++++++++++++++-------------------- po/rw.po | 178 +++++++++++++++++++------------------- po/sk.po | 183 +++++++++++++++++++-------------------- po/sr.po | 178 +++++++++++++++++++------------------- po/sv.po | 183 +++++++++++++++++++-------------------- po/th.po | 183 +++++++++++++++++++-------------------- po/tr.po | 178 +++++++++++++++++++------------------- po/uk.po | 181 ++++++++++++++++++++------------------- po/update-manager.pot | 178 +++++++++++++++++++------------------- po/ur.po | 178 +++++++++++++++++++------------------- po/urd.po | 178 +++++++++++++++++++------------------- po/vi.po | 178 +++++++++++++++++++------------------- po/xh.po | 178 +++++++++++++++++++------------------- po/zh_CN.po | 183 +++++++++++++++++++-------------------- po/zh_HK.po | 178 +++++++++++++++++++------------------- po/zh_TW.po | 183 +++++++++++++++++++-------------------- 59 files changed, 5028 insertions(+), 5099 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 4e358b0c..1bdc3080 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-09-27: + - embarrassing bug cdromupgrade.sh 2006-09-26: - comment out the getRequiredBackport code because we will not use Breaks for the dapper->edgy upgrade yet diff --git a/DistUpgrade/ReleaseAnnouncement b/DistUpgrade/ReleaseAnnouncement index 98eca455..6d9adb2c 100644 --- a/DistUpgrade/ReleaseAnnouncement +++ b/DistUpgrade/ReleaseAnnouncement @@ -1,7 +1,7 @@ Welcome to Ubuntu 6.10 'Edgy Eft' --------------------------------- -*WARNING: THIS IS A DEVELOPMENT SNAPSHOT* +*WARNING: THIS IS A BETA RELEASE* The Ubuntu team is proud to announce Ubuntu 6.10 'Edgy Eft'. diff --git a/DistUpgrade/cdromupgrade b/DistUpgrade/cdromupgrade index 9ed8cdea..4c9d0279 100755 --- a/DistUpgrade/cdromupgrade +++ b/DistUpgrade/cdromupgrade @@ -26,7 +26,7 @@ fi TMPDIR=$(mktemp -d distupgrade.XXXXXX) cd $TMPDIR tar xzf $fullpath/$CODENAME.tar.gz -if [ ! -x $TMPDIR/$CODENAME ]; +if [ ! -x $TMPDIR/$CODENAME ]; then echo "Could not find the upgrade application in the archive, exiting" exit 1 fi diff --git a/po/ar.po b/po/ar.po index dbd73c4a..e48a2e30 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Jadmadi \n" "Language-Team: Arabic \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "قراءة من الكاش" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "importing" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "مصدر الطرف الثالث غير مفعل" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "خطاء خلال التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "لا يوجد مساحة كافية على القرص الصلب" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -547,7 +547,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -829,46 +829,46 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -876,56 +876,56 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -937,7 +937,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -953,34 +953,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -988,49 +984,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/bg.po b/po/bg.po index 81077455..35c2eb6b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:40+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -163,20 +163,20 @@ msgstr "" "този софтуер. Моля, поправете ги със synaptic или apt-get преди да " "продължите!" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Не може да бъдат надградени изисквани мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -188,11 +188,11 @@ msgstr "" "това като грешка. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "да е временен проблем с мрежата. Може би бихте искали да опитате отново по-" "късно. Вижте по-долу списъка на неудоствоерените пакети." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "грешка! " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -253,11 +253,11 @@ msgstr "" msgid "Reading cache" msgstr "Четене на кеша" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -265,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Не е открит валиден огледален сървър" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +289,11 @@ msgstr "" "Ако изберете \"Не\", актуализирането ще бъде отменено." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -307,11 +307,11 @@ msgstr "" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Информацията от хранилището е невалидна" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -319,11 +319,11 @@ msgstr "" "Надграждане на информацията от хранилището доведе до невалиден файл. Моля, " "съобщете това като грешка!" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Забранени са източници от трети страни" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -334,11 +334,11 @@ msgstr "" "Можете да ги разрешите отново след надграждането чрез инструмента software-" "properties или чрез synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Грешка по време на надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +346,11 @@ msgstr "" "Възникна проблем при актуализацията. Това обикновено е накакъв проблем с " "мрежата. Моля, проверете мрежовата връзка и опитайте пак!" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Недостатъчно свободно място на диска" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Не можеше да бъдат инсталирани надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Надграждането сега ще бъде прекратено. Системата Ви може да е в " "неизползваемо състояние. Бе изпълнено възстановяване (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Не можеше да бъдат свалени надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Надграждането се прекратява. Моля, проверете Интернет връзката или " "инсталационния носител и опитайте отново! " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -404,23 +404,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Премахване на остарелите пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "П_рескачане на стъпката" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Премахване" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Грешка при прехвърляне" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -429,32 +429,32 @@ msgstr "" "информация! " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Рестартиране на системата" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Проверка на диспечера на пакети" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Актуализиране информацията от хранилището" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Invalid package information" msgstr "Невалидна информация за пакет" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -467,19 +467,19 @@ msgstr "" "бъде открит.\n" "Това показва сериозна грешка. Моля, съобщете за това!" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Запитване за потвърждение" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." @@ -614,7 +614,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" @@ -921,87 +921,88 @@ msgid "Version %s: \n" msgstr "Версия %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Сваляне на списъка с промени..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Проверка" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Размер за изтегляне: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Можете да инсталирате %s актуализация" msgstr[1] "Можете да инсталирате %s актуализации" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Моля, изчакайте! Това може да отнеме известно време." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Актуализацията е завършена" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Нова версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Версия %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуция вече не се поддържа" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1011,17 +1012,17 @@ msgstr "" "Надградете до по-късна версия на Ubuntu Linux. Вижте http://www.ubuntu.com " "за повече информация за надграждането!" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1032,11 +1033,12 @@ msgstr "" "get install -f\" в терминален прозорец, за да поправите този проблем!" #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Ще трябва ръчно да проверите за актуализации\n" "\n" @@ -1061,34 +1063,30 @@ msgid "Starting update manager" msgstr "Започване на надграждането?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Отмяна на _изтеглянето" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Провер_ка" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Проверка на софтуерните канали за нови актуализации" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Описание" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Бележки към изданието" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1096,15 +1094,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Показване напредъка на отделните файлове" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Актуализации на софтуера" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1112,37 +1110,37 @@ msgstr "" "Софтуерните актуализации поправят грешки, премахват уаизвими места в " "сигурността и предлагат нови възможности." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Надграждане" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Надграждане до последната версия на Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Проверка" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Поднови надграждането" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Скрий тази информация за в бъдеще" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Инсталиране на актуализациите" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1644,6 +1642,9 @@ msgstr "DFSG-съвместим софтуер с несвободни зави msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Отмяна на _изтеглянето" + #~ msgid "Could not find any upgrades" #~ msgstr "Не можеше да бъдат намерени надграждания" diff --git a/po/bn.po b/po/bn.po index fee1579c..105eaf69 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-26 12:09+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "দরকারী meta-packages আপগ্রেড করতে পারে নি" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,23 +178,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "'%s' ইন্সটল করা যাচ্ছে না" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -203,11 +203,11 @@ msgstr "" "রিপোর্ট করুন। " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -235,11 +235,11 @@ msgstr "" msgid "Reading cache" msgstr "ক্যাশ পড়া হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "কোন সঠিক মিরর পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -282,11 +282,11 @@ msgstr "" "'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " "হবে।" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "রিপোজিটরির তথ্য সঠিক নয়" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -294,22 +294,22 @@ msgstr "" "রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " "হিসাবে রিপোর্ট করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "তৃতীয় পার্টির উত্স নিষ্ক্রিয়" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "আপগ্রেড করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -317,11 +317,11 @@ msgstr "" "আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " "আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "ডিস্কে যথেস্ট ফাঁকা জায়গা নেই" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,11 +347,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -359,11 +359,11 @@ msgstr "" "আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " "করুন এবং আবার চেষ্টা করুন। " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -372,54 +372,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "এই ধাপটি এড়িয়ে যাও (_এ)" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "সরাও (_স)" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -429,19 +429,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "তথ্যের জন্য জিজ্ঞাসা" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" @@ -566,7 +566,7 @@ msgstr "তথ্য হারাতে না চাইলে সকল অ্ #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" @@ -859,104 +859,105 @@ msgid "Version %s: \n" msgstr "ভার্সন %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "পরিবর্তনের তালিকা ডাউনলোড করা হচ্ছ..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "পরীক্ষা করো (_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "ডাউনলোড এর আকার: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "আপনি %s আপডেট ইনস্টল করতে পারেন" msgstr[1] "আপনি %s আপডেট ইনস্টল করতে পারেন" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "অনুগ্রহ করে অপেক্ষা করুন, এটি কিছুটা সময় নিতে পারে।" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "আপডেট সম্পন্ন" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "নতুন ভার্সন: %s (আকার: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "ভার্সন %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "আপনার ডিস্ট্রিবিউশনটি আর সমর্থিত নয়" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -968,7 +969,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -989,34 +990,30 @@ msgid "Starting update manager" msgstr "আপগ্রেড শুরু করবো?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "ডাউনলোড বাতিল (_D)" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "পরিবর্তন" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "পরীক্ষা করো (_k)" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "নতুন আপডেট এর জন্য সফ্টওয়্যার চ্যানেল পরীক্ষা করো" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "বর্ননা" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "রিলিজ নোট" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1024,51 +1021,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "একটি ফাইলের অগ্রগতি দেখাও" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "সফ্টওয়্যার আপডেট" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "আপগ্রেড (_p)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "উবুন্টু এর সর্বশেষ ভার্সনে আপগ্রেড করো" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "পরীক্ষা করো (_C)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "পুনরায় আপগ্রেড শুরু (_R)" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "ভবিষ্যতে এই তথ্য আড়াল রাখো (_H)" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "পরিবর্তন" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1537,6 +1534,9 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Cancel _Download" +#~ msgstr "ডাউনলোড বাতিল (_D)" + #~ msgid "Some software no longer officially supported" #~ msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" diff --git a/po/br.po b/po/br.po index 8b9e8dd9..95cfc8b1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,34 +178,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,11 +232,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,42 +274,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +318,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,54 +358,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -415,19 +415,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -548,7 +548,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -830,102 +830,102 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -937,7 +937,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -953,34 +953,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -988,49 +984,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/ca.po b/po/ca.po index 1afba09e..7ca16052 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-29 21:18+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -163,21 +163,21 @@ msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb " "aquesta aplicació. Utilitzeu el Synaptic o apt-get abans de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "de l'error. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "amb la xarxa. Podeu provar-ho després. A continuació es mostra la llista amb " "els paquets no autenticats." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "No s'ha pogut instal·lar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +217,11 @@ msgstr "" "els error. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -255,11 +255,11 @@ msgstr "" msgid "Reading cache" msgstr "S'està llegint la memòria cau" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "No s'ha trobat una rèplica vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -284,11 +284,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -297,11 +297,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "La informació del dipòsit no és vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -309,11 +309,11 @@ msgstr "" "En actualitzar la informació del dipòsit s'ha produït un error. Informeu de " "l'error." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "S'han desactivat les fonts de tercers" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -324,11 +324,11 @@ msgstr "" "reactivar-los, després de l'actualització de programari, des de 'propietats " "del programari' o des del Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -336,11 +336,11 @@ msgstr "" "S'ha produït un error mentre s'actualizava el vostre sistema. Comproveu la " "vostra connexió de xarxa i torneu a intentar-ho." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +353,15 @@ msgstr "" "apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -373,11 +373,11 @@ msgstr "" "L'actualització s'ha cancel·lat. El vostre sistema ha pogut quedar " "inservible. S'ha executat una recuperació del sistema (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "No s'han pogut descarregar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +385,11 @@ msgstr "" "S'ha cancel·lat l'actualització. Comproveu la vostra connexió a Internet o " "el mitjà d'instal·lació i torneu-ho a provar. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -403,54 +403,54 @@ msgstr "" "\n" "Si no teniu activat 'universe' se us sugerirà que els desintal·leu. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Voleu esborrar els paquets obsolets?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Omet aquest pas" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "Esbo_rra" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "S'està actualitzant la informació del dipòsit" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "La informació del paquet no és valida" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -460,19 +460,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Actualitzant" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" @@ -601,7 +601,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" @@ -898,87 +898,88 @@ msgid "Version %s: \n" msgstr "Versió %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "S'està descarregant la llista de canvis..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Comprova" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Mida de la descàrrega: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podeu instal·lar %s actualització" msgstr[1] "Podeu instal·lar %s actualitzacions" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Espereu, això pot tardar una estona." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "S'ha completat l'actualització" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "S'estan comprovant les actualitzacions..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versió nova: %s (Mida: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versió %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "La vostra distribució ja no es mantindrà més" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -988,17 +989,17 @@ msgstr "" "sistema a la darrera versió d'Ubuntu. Vegeu http://www.ubuntu.com per a més " "informació." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1009,11 +1010,12 @@ msgstr "" "install -f\" en un terminal." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Heu de comprovar les actualizacions manualment\n" "\n" @@ -1039,34 +1041,30 @@ msgid "Starting update manager" msgstr "Voleu iniciar l'actualització?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Cancel·la la _descàrrega" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Canvis" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Compro_va" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Comprova els canals de programari per a actualitzacions noves" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Descripció" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Notes de la versió" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1074,15 +1072,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Mostra el progrés per als fitxers individuals" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Actualitzacions de programari" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1090,37 +1088,37 @@ msgstr "" "Les actualitzacions de programari corregeixen errors, eliminen problemes de " "seguretat i proporcionen prestacions noves." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Actualitza" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Actualitza a la darrera versió d'Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Comprova" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Reprén l'actualització" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_En el futur oculta aquesta informació" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Instal·la les actualitzacions" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Canvis" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1613,6 +1611,9 @@ msgstr "Programari compatible DFSG amb dependències no lliures" msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Cancel·la la _descàrrega" + #~ msgid "Some software no longer officially supported" #~ msgstr "Algun programari ja no es mantindrà oficialment" diff --git a/po/cs.po b/po/cs.po index 5db4bad5..1573653f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-25 18:52+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" @@ -159,20 +159,20 @@ msgstr "" "Váš systém obsahuje poškozené balíky, které nemohou být tímto programem " "opraveny. Před pokračováním oje prosím pravte použitím synaptic nebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Nemohu aktualizovat požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Základní balík by musel být odstraněn" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -184,11 +184,11 @@ msgstr "" "chybu. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Chyba při ověření některých balíků" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "problémem v síti. Možná to budete chtít zkusit později. Níže je uveden " "seznam neověřených balíků." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Nemohu nainstalovat '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,11 +211,11 @@ msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -248,11 +248,11 @@ msgstr "" msgid "Reading cache" msgstr "Probíhá čtení cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Nenalezeno správné zrcadlo" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -277,11 +277,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Vytvořit standardní zdroje?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -290,11 +290,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Neplatná informace zdroje" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -302,22 +302,22 @@ msgstr "" "Upgrade informací o úložišti vrátil neplatný soubor. Prosím oznamte to jako " "chybu." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Zdroje třetích stran vypnuté" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Chyba během aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -325,11 +325,11 @@ msgstr "" "Nastala chyba během aktualizace. Toto je obvykle způsobeno chybou síťového " "připojení. Prosím zkontrolujte své připojení a zkuste to znovu." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Nedostatek volného místa na disku" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -338,15 +338,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Nelze nainstalovat aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -359,11 +359,11 @@ msgstr "" "stavu. Zkuste ho prosím opravit pomocí 'sudo apt-get install -f' nebo " "Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Nelze stáhnout aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -371,11 +371,11 @@ msgstr "" "Aktualizace byla předčasně ukončena. Prosím zkontrolujte si připojení k " "internetu nebo instalační médium a zkuste to znovu. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -384,23 +384,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Odebrat zastaralé balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Přeskočit tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Odebrat" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Chyba při zaznamenávání" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -409,31 +409,31 @@ msgstr "" "prohléhněte níže uvedenou zprávu. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Kontroluje se manažer balíků" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Aktualizují se informace o úložišti" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -443,19 +443,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Požaduje se potvrzení" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Probíhá upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Vyhledáván zastaralý software" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Upgrade systému je dokončen." @@ -588,7 +588,7 @@ msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" @@ -892,47 +892,48 @@ msgid "Version %s: \n" msgstr "Verze %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Stahuji seznam změn ..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Zkontrolovat" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Stahovaná velikost: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -940,40 +941,40 @@ msgstr[0] "Můžete instalovat %s aktualizaci" msgstr[1] "Můžete instalovat %s aktualizace" msgstr[2] "Můžete instalovat %s aktualizací" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Prosím čekejte, může to nějakou dobu trvat." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Aktualizace je dokončena" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Zkontrolovat dostupné aktualizace" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nová verze: %s (Velikost: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Verze %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Vaše distribude už není podporovaná" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -983,17 +984,17 @@ msgstr "" "Přejděte na další verzi Ubuntu Linuxu. Pro více informací o přechodu na " "vyšší verzi se podívejte na http://www.ubuntu.com." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1001,11 +1002,12 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Musíte zkontrolovat aktualizace manuálně\n" "\n" @@ -1030,34 +1032,30 @@ msgid "Starting update manager" msgstr "Spustit upgrade?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Přerušit _stahování" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Změny" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Z_kontrolovat" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Zkontrolovat dostupnost nových aktualizací v distribučních kanálech" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Popis" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Poznámky k vydáni" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1065,15 +1063,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Zobrazit průběh stahování jednotlivých souborů" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Aktualizace softwaru" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1081,37 +1079,37 @@ msgstr "" "Aktualizace softwaru opravuje chyby, eliminuje bezpečnostní zranitelnosti a " "poskytují nové vlastnosti." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "U_pgrade" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Upgradovat na poslední verzi Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Zkontrolovat" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Pokračovat v upgradu" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Nezobrazovat příště tyto informace" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "Na_instalovat Aktualizace" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Změny" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1605,6 +1603,9 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "Žádný DFSG kompatibilní Software" +#~ msgid "Cancel _Download" +#~ msgstr "Přerušit _stahování" + #~ msgid "Could not find any upgrades" #~ msgstr "Žádné upgrady nebyly nalezeny." diff --git a/po/da.po b/po/da.po index 4c4bcea1..6daada0e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -159,22 +159,22 @@ msgstr "" "Dit system indeholder ødelagte pakker som ikke kan repareres med dette " "program. Reparer dem venligst med synaptic eller apt-get før du fortsætter." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke opgradere de krævede meta-pakker" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 #, fuzzy msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vigtig pakke" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 #, fuzzy msgid "Could not calculate the upgrade" msgstr "Kunne ikke udregne opgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "Rapportér venligst dette som en fejl. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "Det anbefales du prøver igen senere. Se længere nede for en liste over " "pakker som ikke kunne godkendes." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,12 +214,12 @@ msgstr "" "som en fejl. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 #, fuzzy msgid "Can't guess meta-package" msgstr "Kan ikke gætte meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -253,11 +253,11 @@ msgstr "" msgid "Reading cache" msgstr "Læser cache-mellemlager" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -265,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -282,11 +282,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,11 +295,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Arkivinformation ugyldig." -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -307,22 +307,22 @@ msgstr "" "Opgradering af arkivet resulterede i en ødelagt fil. raporter venligst dette " "som en fejl." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Trediepartskilder er fravalgt" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Fejl under opdatering" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -330,11 +330,11 @@ msgstr "" "En fejl forekom under opdateringen. Dette skyldes som regel et " "netværksproblem, tjek venligst din netværksforbindelse og prøv igen." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Der er ikke nok fri diskplads" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -346,15 +346,15 @@ msgstr "" "køre 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -366,11 +366,11 @@ msgstr "" "Upgraderingen afbrydes nu. Dit system kan forekomme ustabilt. En oprydning " "blev foretaget (dpkg --configura -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -378,11 +378,11 @@ msgstr "" "Opgraderingen afbryder nu. Tjek venligst din internetforbindelse eller dit " "installationsmedie og prøv igen. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -397,25 +397,25 @@ msgstr "" "Hvis du ikke har slået 'universe' til, vil fjernelsen af disse pakker blive " "foreslået i det næste trin. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 #, fuzzy msgid "_Skip This Step" msgstr "_Spring dette trin over" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 #, fuzzy msgid "Error during commit" msgstr "Fejl under udførsel" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -424,31 +424,31 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Genstarter oprindelig systemtilstand" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -458,19 +458,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Opgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" @@ -600,7 +600,7 @@ msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" @@ -908,87 +908,88 @@ msgid "Version %s: \n" msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Henter listen med ændringer..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Tjek" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Overføringsstørelse: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s opdatering" msgstr[1] "Du kan installere %s opdateringer" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Vent venligst, dette kan tage et stykke tid." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Opdatering udført" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_Installer Opdateringer" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny version: %s (Size: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Din distribution understøtes ikke længere" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -998,17 +999,17 @@ msgstr "" "opdateringer. Opgrader til en senere version af Ubuntu Linux. Se http://www." "ubuntu.com (engalsk) for mere informaiton om opgradering." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Software indexet er i stykker" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1024,7 +1025,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Du må undersøge for opdateringer manuelt\n" "\n" @@ -1050,38 +1051,33 @@ msgid "Starting update manager" msgstr "Start opgraderinegn?" #: ../data/glade/UpdateManager.glade.h:7 -#, fuzzy -msgid "Cancel _Download" -msgstr "Afbryd _Hentning" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Ændringer" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 #, fuzzy msgid "Chec_k" msgstr "_Tjek" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 #, fuzzy msgid "Check the software channels for new updates" msgstr "Undersøg softwarekanalerne for nye opdateringer" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Beskrivelse" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 #, fuzzy msgid "Release Notes" msgstr "Udgivelsesnoter" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1089,15 +1085,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Vis fremgang for enkelte filer" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Opdateringer" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1105,37 +1101,37 @@ msgstr "" "Softwareopdateringer retter fejl, lukker sikkerhedshuller og gør nye " "funktioner tilgængelige." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Opgrader" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Opgrader til seneste version af Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Tjek" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Genoptag opgradering" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Skjul denne information for fremtiden" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Installer Opdateringer" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Ændringer" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1637,6 +1633,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Cancel _Download" +#~ msgstr "Afbryd _Hentning" + #~ msgid "Some software no longer officially supported" #~ msgstr "Noget software er ikke længere officielt understøttet" diff --git a/po/de.po b/po/de.po index d4200608..aec66084 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-27 10:58+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -166,20 +166,20 @@ msgstr "" "werden können. Bitte reparieren Sie diese mit Synaptic oder apt-get, bevor " "Sie fortfahren." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -191,11 +191,11 @@ msgstr "" "erstellen Sie hierfür einen Fehlerbericht. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -206,12 +206,12 @@ msgstr "" "später noch einmal. Die unten stehenden Pakete konnten nicht auf ihre " "Echtheit hin bestätigt werden:" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "›%s‹ kann nicht installiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -220,11 +220,11 @@ msgstr "" "Sie hierfür einen Fehlerbericht. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -258,11 +258,11 @@ msgstr "" msgid "Reading cache" msgstr "Zwischenspeicher wird ausgelesen" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +270,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Kein gültiger Mirror gefunden" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +294,11 @@ msgstr "" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Standardquellen generieren?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +312,11 @@ msgstr "" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Ungültige Kanalinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +324,11 @@ msgstr "" "Die Aktualisierung der Quellen-Information ergab eine ungültige Datei. Bitte " "erstellen Sie einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Quellen von Drittanbietern deaktiviert" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -339,11 +339,11 @@ msgstr "" "Sie können diese nach dem Upgrade mit dem 'software-properties'-Werkzeug " "oder mit Synaptic reaktivieren." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Fehler während der Aktualisierung" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -352,11 +352,11 @@ msgstr "" "Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre " "Netzwerkverbindung und versuchen Sie es noch einmal." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Unzureichender freier Festplattenspeicher" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -368,15 +368,15 @@ msgstr "" "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -389,11 +389,11 @@ msgstr "" "unbenutzbaren Zustand befinden. Eine Wiederherstellung wurde durchgeführt " "(dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -402,11 +402,11 @@ msgstr "" "Internet-Verbindung oder Ihr Installationsmedium und versuchen Sie es noch " "einmal. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -421,23 +421,23 @@ msgstr "" "Wenn sie 'universe' nicht aktiviert haben, werden diese Pakete im nächsten " "Schritt zum Entfernen vorgeschlagen. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "Ü_berspringen" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Entfernen" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Fehler beim Anwenden" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -446,31 +446,31 @@ msgstr "" "Nachricht für nähere Informationen. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Aktualisiere Quellen-Information" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -484,19 +484,19 @@ msgstr "" "Dies deutet auf einen gravierenden Fehler hin, bitte erstellen Sie hierfür " "einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Nach Bestätigung fragen" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Aktualisiere" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Nach veralteter Software wird gesucht" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." @@ -631,7 +631,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" @@ -945,87 +945,88 @@ msgid "Version %s: \n" msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Liste mit Änderungen wird heruntergeladen..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Prüfen" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Download-Größe: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sie können %s Aktualisierung installieren" msgstr[1] "Sie können %s Aktualisierungen installieren" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Bitte warten Sie, dieser Vorgang kann etwas Zeit in Anspruch nehmen." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Aktualisierung ist abgeschlossen" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Nach verfügbaren Aktualisierungen suchen" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Neue Version: %s (Größe: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Ihre Distribution wird nicht länger unterstützt" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1036,17 +1037,17 @@ msgstr "" "System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." "de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1057,11 +1058,12 @@ msgstr "" "get install -f« im Terminal aus, um dieses Problem zu beheben." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Sie müssen manuell auf Aktualisierungen prüfen\n" "\n" @@ -1087,34 +1089,30 @@ msgid "Starting update manager" msgstr "Mit der Aktualisierung beginnen?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "_Herunterladen abbrechen" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Änderungen" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Prüfen" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Software-Kanäle auf Aktualisierungen prüfen" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Beschreibung" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Freigabemitteilung" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1122,15 +1120,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Fortschritt der einzelnen Dateien anzeigen" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Software-Aktualisierungen" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1138,37 +1136,37 @@ msgstr "" "Software-Aktualisierungen beheben Fehler, schließen Sicherheitslücken und " "stellen neue Funktionen bereit." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Aktualisieren" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Aus die neueste Version von Ubuntu aktualisieren" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Prüfen" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Aktualisierung fortsetzen" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "Diese Information in Zukunft _nicht mehr anzeigen" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "Aktualisierungen _installieren" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Änderungen" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1671,6 +1669,9 @@ msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" +#~ msgid "Cancel _Download" +#~ msgstr "_Herunterladen abbrechen" + #~ msgid "Some software no longer officially supported" #~ msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" diff --git a/po/el.po b/po/el.po index 959500fb..3a807b4d 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-25 15:39+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -161,20 +161,20 @@ msgstr "" "διορθωθούν με αυτό το λογισμικό. Παρακαλώ διορθώστε τα μέσω synaptic ή apt-" "get για να συνεχίσετε." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετα-πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "σε ένα πρόβλημα δικτύου. Προσπαθήστε αργότερα. Δείτε παρακάτω τη λίστα των " "μη πιστοποιημένων πακέτων." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Αδυναμία εγκατάστασης '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "ως σφάλμα. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -252,11 +252,11 @@ msgstr "" msgid "Reading cache" msgstr "Ανάγνωση λανθάνουσας μνήμης" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Δεν βρέθηκε έγκυρη εναλλακτική τοποθεσία αρχείων" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +289,11 @@ msgstr "" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -307,11 +307,11 @@ msgstr "" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Μη έγκυρες πληροφορίες repository" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -319,11 +319,11 @@ msgstr "" "Η αναβάθμιση των πληροφοριών repository είχε σαν αποτέλεσμα ένα άκυρο " "αρχείο. Παρακαλώ αναφέρετε το ως σφάλμα." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Απενεργοποιήθηκαν πηγές τρίτων" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -334,11 +334,11 @@ msgstr "" "Μπορείτε να τις ενεργοποιήσετε μετά την αναβάθμιση με το εργαλείο 'software-" "properties' ή με το synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Σφάλμα κατά την ενημέρωση" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +346,11 @@ msgstr "" "Δημιουργήθηκε ένα πρόβλημα κατά την αναβάθμιση. Αυτό συνήθως σημαίνει " "πρόβλημα δικτύου. Ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε ξανά." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +362,15 @@ msgstr "" "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -382,11 +382,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Το σύστημα σας μπορεί να γίνει ασταθές. " "Εκτελείται μια διεργασία ανάκτησης (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +394,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -413,23 +413,23 @@ msgstr "" "Αν δεν έχετε ενεργοποιημένο το 'universe' , θα γίνει πρόταση για απομάκρυνση " "αυτών των πακέτων στο επόμενο βήμα. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "Παράκα_μψη αυτου του βήματος" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Απομάκρυνση" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,31 +438,31 @@ msgstr "" "παρακάτω μήνυμα για περισσότερες πληροφορίες. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών repository" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +475,19 @@ msgstr "" "απαραίτητο πακέτο '%s'.\n" " Αυτό σημαίνει ότι πρόκειται για σημαντικό σφάλμα, παρακαλώ αναφέρετε το." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Ερώτηση για επιβεβαίωση" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." @@ -622,7 +622,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" @@ -930,87 +930,88 @@ msgid "Version %s: \n" msgstr "Έκδοση%s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Λήψη της λίστας των αλλαγών..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "Έλε_γχος" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Μέγεθος λήψης: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Μπορείτε να εγκαταστήσετε %s ενημέρωση" msgstr[1] "Μπορείτε να εγκαταστήσετε %s ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Παρακαλώ περιμένετε, αυτό μπορεί να διαρκέσει λίγο χρόνο." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Η ενημέρωση ολοκληρώθηκε" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Έλεγχος για διαθέσιμες ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Νέα έκδοση: %s (Μέγεθος: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Έκδοση%s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Η διανομή σας δεν υποστηρίζεται πια" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1021,17 +1022,17 @@ msgstr "" "Ubuntu Linux. Δείτε το http://www.ubuntu.com για περισσότερες πληροφορίες " "για την αναβάθμιση." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1042,11 +1043,12 @@ msgstr "" "install -f\" σε ένα τερματικό για να διορθώσετε το πρόβλημα πρώτα." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Θα πρέπει να κάνετε έλεγχο για ενημερώσεις χειροκίνητα\n" "\n" @@ -1072,34 +1074,30 @@ msgid "Starting update manager" msgstr "Έναρξη της αναβάθμισης;" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Ακύρωση _λήψης αρχείων" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Αλλαγές" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Ελε_γχος" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Έλεγχος των καναλιών λογισμικού για ενημερώσεις" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Περιγραφή" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Σημειώσεις έκδοσης" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1107,15 +1105,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Εμφάνιση προόδου μοναδικών αρχείων" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Αναβαθμίσεις λογισμικού" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1123,37 +1121,37 @@ msgstr "" "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " "να παρέχουν νέες λειτουργίες." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "Ανα_βάθμιση" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Αναβάθμιση στη τελευταία έκδοση του Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "Έλε_γχος" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Συνέχεια αναβάθμισης" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "Απόκρυ_ψη αυτής της πληροφορίας στο μέλλον" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "Ε_γκατάσταση ενημερώσεων" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Αλλαγές" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1649,6 +1647,9 @@ msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Ακύρωση _λήψης αρχείων" + #~ msgid "Some software no longer officially supported" #~ msgstr "Μερικά πακέτα λογισμικού δεν υποστηρίζονται πια επίσημα" diff --git a/po/en_AU.po b/po/en_AU.po index 54dd3f08..b38dcc80 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-26 21:06+0000\n" "Last-Translator: David Symons \n" "Language-Team: English (Australia) \n" @@ -159,20 +159,20 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -184,11 +184,11 @@ msgstr "" "this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "Reading cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "No valid mirror found" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +286,11 @@ msgstr "" "If you select 'no' the update will cancel." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Generate default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +303,11 @@ msgstr "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Repository information invalid" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,11 +315,11 @@ msgstr "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Third party sources disabled" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -330,11 +330,11 @@ msgstr "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +342,11 @@ msgstr "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -358,15 +358,15 @@ msgstr "" "'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -378,11 +378,11 @@ msgstr "" "The upgrade aborts now. Your system can be in an unusable state. A recovery " "was run (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +390,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -409,23 +409,23 @@ msgstr "" "If you don't have 'universe' enabled these packages will be suggested for " "removal in the next step. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,31 +434,31 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +471,19 @@ msgstr "" "not be found anymore.\n" "This indicates a serious error, please report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "System upgrade is complete." @@ -615,7 +615,7 @@ msgstr "To prevent data loss close all open applications and documents." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" @@ -919,87 +919,88 @@ msgid "Version %s: \n" msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Downloading the list of changes..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Check" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Download size: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "You can install %s update" msgstr[1] "You can install %s updates" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Please wait, this can take some time." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Update is complete" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_Install Updates" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "New version: %s (Size: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Your distribution is not supported anymore" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1009,17 +1010,17 @@ msgstr "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1030,11 +1031,12 @@ msgstr "" "this issue at first." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "You must check for updates manually\n" "\n" @@ -1060,34 +1062,30 @@ msgid "Starting update manager" msgstr "Start the upgrade?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Cancel _Download" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Chec_k" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Check the software channels for new updates" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Description" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Release Notes" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1095,15 +1093,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Show progress of single files" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Software Updates" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1111,37 +1109,37 @@ msgstr "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "U_pgrade" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Upgrade to the latest version of Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Check" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Resume Upgrade" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Hide this information in the future" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Install Updates" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1639,6 +1637,9 @@ msgstr "DFSG-compatible Software with Non-Free Dependencies" msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" +#~ msgid "Cancel _Download" +#~ msgstr "Cancel _Download" + #~ msgid "Some software no longer officially supported" #~ msgstr "Some software no longer officially supported" diff --git a/po/en_CA.po b/po/en_CA.po index b7a59cf9..960ba35b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -181,23 +181,23 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -237,11 +237,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +266,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,55 +364,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,20 +422,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -557,7 +557,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" @@ -856,104 +856,104 @@ msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Cancel downloading the ChangeLog" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -965,7 +965,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -981,34 +981,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Description" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1016,53 +1012,53 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Software Updates" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 #, fuzzy msgid "U_pgrade" msgstr "Upgrade finished" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "Upgrade finished" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "_Install" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index 71e7ac0c..79e4a5fc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Abigail Brady \n" "Language-Team: \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,23 +180,23 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -205,11 +205,11 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -236,11 +236,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -248,11 +248,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -265,11 +265,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -278,43 +278,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +323,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,21 +340,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -363,55 +363,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -421,21 +421,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 #, fuzzy msgid "Asking for confirmation" msgstr "Checking system configuration" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -557,7 +557,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" @@ -855,104 +855,104 @@ msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Downloading Changes" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Installing updates..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -964,7 +964,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -980,34 +980,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Description" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1015,51 +1011,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Software Updates" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "Installing updates..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/es.po b/po/es.po index 4f3ea147..192a3272 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-26 09:38+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -167,20 +167,20 @@ msgstr "" "software. Por favor, arréglelos primero usando Synaptic o apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "No se han podido actualizar los meta-paquetes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -192,11 +192,11 @@ msgstr "" "actualización. Por favor, informe de ésto como un fallo. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -206,12 +206,12 @@ msgstr "" "problema transitorio en la red. Pruebe de nuevo más tarde. Vea abajo una " "lista de los paquetes no autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "No se ha podido instalar «%s»" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -220,11 +220,11 @@ msgstr "" "como un fallo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -258,11 +258,11 @@ msgstr "" msgid "Reading cache" msgstr "Leyendo caché" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +270,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "No se ha encontrado un servidor espejo válido" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -295,11 +295,11 @@ msgstr "" "Si selecciona «No» se cancelará la actualización." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -313,11 +313,11 @@ msgstr "" "¿Deben añadirse entradas predeterminadas para «%s»? Si selecciona «No» se " "cancelará la actualización." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Información de repositorio no válida" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -325,11 +325,11 @@ msgstr "" "La actualización de la información del repositorio generó un archivo " "incorrecto. Por favor, informe de ésto como un error." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Orígenes de terceros desactivados" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -340,11 +340,11 @@ msgstr "" "volver a activarlas tras la actualización con la herramienta «Propiedades " "del software», o con Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Error durante la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -353,11 +353,11 @@ msgstr "" "tipo de problema en la red, por lo que le recomendamos que compruebe su " "conexión de red y vuelva a intentarlo." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "No hay espacio suficiente en el disco" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -369,15 +369,15 @@ msgstr "" "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -390,11 +390,11 @@ msgstr "" "estado inutilizable. Se está llevando a cabo una recuperación (dpkg --" "configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -402,11 +402,11 @@ msgstr "" "La actualización se interrumpirá ahora. Por favor, compruebe su conexión a " "Internet (o su soporte de instalación) y vuelva a intentarlo. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -421,23 +421,23 @@ msgstr "" "Si no tiene activado el «universe», se le sugerirá que desinstale estos " "paquetes en el siguiente paso. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Quitar" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Error durante la confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -446,31 +446,31 @@ msgstr "" "inferior para más información. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Comprobando gestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Información de paquete no válida" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -483,19 +483,19 @@ msgstr "" "posible encontrar el paquete esencial «%s».\n" "Esto indica un problema serio; por favor, informe de esto como un fallo." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." @@ -630,7 +630,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" @@ -943,87 +943,88 @@ msgid "Version %s: \n" msgstr "Versión %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Descargando la lista de cambios..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Comprobar" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Tamaño de descarga: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Puede instalar %s actualización" msgstr[1] "Puede instalar %s actualizaciones" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Por favor, espere; esto puede tardar un poco." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "La actualización se ha completado" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Comprobar las actualizaciones disponibles" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nueva versión: %s (Tamaño: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versión %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Su distribución ya no está soportada" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1033,17 +1034,17 @@ msgstr "" "críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" "www.ubuntu.com para más información sobre la actualización." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "El índice de software está dañado" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1054,11 +1055,12 @@ msgstr "" "terminal, para corregir este problema primero." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Debe comprobar las actualizaciones manualmente\n" "\n" @@ -1084,34 +1086,30 @@ msgid "Starting update manager" msgstr "¿Comenzar la actualización?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Cancelar _descarga" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Cambios" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Comprobar" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Comprobar si hay nuevas actualizaciones en los canales de software" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Descripción" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Notas de publicación" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1119,15 +1117,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Mostrar el progreso de cada archivo individual" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Actualizaciones de software" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1135,37 +1133,37 @@ msgstr "" "Las actualizaciones de software corrigen errores, eliminan fallos de " "seguridad y proporcionan nuevas funcionalidades." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "A_ctualizar" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Actualizar a la última versión de Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Comprobar" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Continuar actualización" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Ocultar esta información en el futuro" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Instalar actualizaciones" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Cambios" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1666,6 +1664,9 @@ msgstr "Software compatible con la DFSG con dependencias no libres" msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Cancelar _descarga" + #~ msgid "Some software no longer officially supported" #~ msgstr "Algunos programas ya no están soportados oficialmente" diff --git a/po/fi.po b/po/fi.po index 8f7740c6..a8d69c76 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-25 18:26+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -162,20 +162,20 @@ msgstr "" "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get-komentoa ennen " "jatkamista." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Ei voida päivittää tarvittavia metapaketteja" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Ei voitu tehdä tarvittavia päivitykseen liittyviä tarkistuksia" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -187,11 +187,11 @@ msgstr "" "korjata. Ilmoita tästä virheraportilla. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Joitain paketteja todennettaessa tapahtui virhe" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -201,12 +201,12 @@ msgstr "" "Voit yrittää myöhemmin uudelleen. Alla on luettelo todentamattomista " "paketeista." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Ei voitu asentaa pakettia \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "Pyydettyä pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -252,11 +252,11 @@ msgstr "" msgid "Reading cache" msgstr "Luetaan kätköä" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Ei löytynyt sopivaa palvelinta" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +289,11 @@ msgstr "" "Jos valitset \"Ei\", päivitys keskeytyy." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Luo ja ota käyttöön oletusohjelmalähteet?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +306,11 @@ msgstr "" "Otetaanko käyttöön \"%s\":n oletuslähteet? Jos valitset \"Ei\", päivitys " "keskeytyy." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Virhe ohjelmavarastotiedoissa" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,11 +318,11 @@ msgstr "" "Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Ilmoita " "tästä virheraportilla." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Kolmannen osapuolet ohjelmalähteet poissa käytöstä" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -333,11 +333,11 @@ msgstr "" "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen \"ohjelma-" "asetukset\"-työkalulla tai Synaptic-ohjelmalla." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Virhe päivitettäessä" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +345,11 @@ msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -361,15 +361,15 @@ msgstr "" "komentoa 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Ei voitu asentaa päivityksiä" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -381,11 +381,11 @@ msgstr "" "Päivitys keskeytyy. Järjestelmäsi voi olla käyttökelvottomassa tilassa. " "Korjaustoimenpiteet suoritettiin (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +393,11 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -412,23 +412,23 @@ msgstr "" "Jos sinulla ei ole 'universe'-ohjelmakanavaa otettuna käyttöön, nämä paketit " "suositellaan poistettaviksi seuraavassa kohdassa. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Poista vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Virhe suoritettaesa" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -437,31 +437,31 @@ msgstr "" "lisätietoja. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -474,19 +474,19 @@ msgstr "" "enää löydetty.\n" "Tämä merkitsee vakavaa virhettä, ilmoita tästä virheraportilla." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Etsitään vanhetuneita ohjelmia" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." @@ -616,7 +616,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" @@ -922,88 +922,89 @@ msgid "Version %s: \n" msgstr "Versio: %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Noudetaan muutosluetteloa..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Tarkista" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 #, fuzzy msgid "None" msgstr "Ei-vapaa" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "%s täytyy noutaa" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Voit asentaa %s päivityksen" msgstr[1] "Voit asentaa %s päivitystä" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Odota, tämä voi kestää jonkun aikaa." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Päivitys on valmis" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Tarkista saatavilla olevat päivitykset" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Uusi versio: %s (koko: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versio: %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Jakeluasi ei enää tueta" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1013,17 +1014,17 @@ msgstr "" "Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja " "päivittämisestä osoitteesta http://www.ubuntu.com/" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1034,11 +1035,12 @@ msgstr "" "päätteessä." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Sinun täytyy tarkistaa päivitykset itse\n" "Sinun järjestelmäsi ei tutki päivityksiä automaattisesti. Voit muuttaa näitä " @@ -1063,34 +1065,30 @@ msgid "Starting update manager" msgstr "Aloita päivitys?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Peruuta _nouto" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Muutokset" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Tarkista" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Tarkista onko ohjelmakanavissa uusia päivityksiä" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Kuvaus" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Julkaisutiedot" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1098,15 +1096,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Näytä edistyminen yksittäisten tiedostojen osalta" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Ohjelmapäivitykset" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1114,37 +1112,37 @@ msgstr "" "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " "ominaisuuksia." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Päivitä" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Päivitä Ubuntun viimeisimpään versioon" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Tarkista" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Jatka päivitystä" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "P_iilota tämä tieto jatkossa" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Asenna päivitykset" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Muutokset" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1643,6 +1641,9 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" +#~ msgid "Cancel _Download" +#~ msgstr "Peruuta _nouto" + #~ msgid "Some software no longer officially supported" #~ msgstr "Jotkin ohjelmat eivät ole enää virallisesti tuettuja" diff --git a/po/fr.po b/po/fr.po index eae025fe..fc3bc23f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-26 21:09+0000\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" @@ -165,20 +165,20 @@ msgstr "" "ce logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou d'apt-get " "avant de continuer." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Les meta-paquets désirés n'ont pu être mis à jour" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Un paquet essentiel devrait être enlevé" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -190,11 +190,11 @@ msgstr "" "rapporter ce bogue. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -204,12 +204,12 @@ msgstr "" "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." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installer « %s »" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "rapporter ce bogue. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -256,11 +256,11 @@ msgstr "" msgid "Reading cache" msgstr "Lecture du cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +268,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Aucun mirroir valide n'a pu être trouvé" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -293,11 +293,11 @@ msgstr "" "Sinon, la mise à jour sera annulée." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -311,11 +311,11 @@ msgstr "" "Les entrées par défaut pour « %s » doivent-elles être ajoutées ? Si vous " "sélectionnez « Non », la mise à jour sera annulée." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Informations sur le dépôt invalides" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -323,11 +323,11 @@ msgstr "" "La mise à jour des informations du dépôt a créé un fichier invalide. Merci " "de rapporter ce bogue." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Sources provenant de tiers désactivées" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -338,11 +338,11 @@ msgstr "" "désactivées. Vous pouvez les réactiver après la mise à jour avec l'outil « " "Gestionnaire de canaux logiciels » ou avec Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Erreur lors de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +351,11 @@ msgstr "" "un problème de réseau. Veuillez vérifier votre connexion au réseau et " "réessayer." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Il n'y a pas assez d'espace libre sur le disque" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -368,15 +368,15 @@ msgstr "" "get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Les mises à jour n'ont pu être installées" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -388,11 +388,11 @@ msgstr "" "Abandon de la mise à jour. Votre système est peut-être inutilisable. Une " "recupération a été lancée (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Les mises à jour n'ont pu être téléchargées" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +400,11 @@ msgstr "" "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou " "votre médium d'installation puis réessayez. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -419,23 +419,23 @@ msgstr "" "Si vous n'avez pas activé le dépot 'universe', la suppression de ces paquets " "vous sera suggérée lors de la prochaine étape. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes ?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Passer cette étape" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Supprimer" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Erreur pendant la soumission" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,31 +444,31 @@ msgstr "" "ci-dessous pour plus d'informations. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts en cours" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Information sur les paquet invalides" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -482,19 +482,19 @@ msgstr "" "Ceci est indique qu'une erreur important s'est produite, veuillez rapporter " "ce bogue." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Demande de confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Mise à jour en cours" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." @@ -629,7 +629,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Votre système est à jour" @@ -941,87 +941,88 @@ msgid "Version %s: \n" msgstr "Version %s : \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Téléchargement de la liste des nouveautés…" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Vérifier" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Taille du téléchargement : %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format 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" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Veuillez patienter, cela peut prendre du temps." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "La mise à jour est terminée" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Rechercher les mises à jour disponibles" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nouvelle version : %s (taille : %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s : \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Votre distribution n'est plus supportée" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1031,17 +1032,17 @@ msgstr "" "devez passer à une version plus récente d'Ubuntu Linux. Rendez-vous sur " "http://www.ubuntu.com pour de plus amples informations à ce sujet." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1052,11 +1053,12 @@ msgstr "" "apt-get install -f » dans un terminal pour réparer ce problème." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Vous devez vérifier manuellement la disponibilité de mises à jour\n" @@ -1083,34 +1085,30 @@ msgid "Starting update manager" msgstr "Démarrer la mise à jour ?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "_Annuler le téléchargement" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Changements" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Vérifier" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Vérifier les canaux logiciels pour de nouvelles mises à jour" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Description" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Notes de publication" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1118,15 +1116,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Afficher l'avancement des fichiers individuels" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Mises à jour des logiciels" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1134,37 +1132,37 @@ msgstr "" "Les mises à jour de logiciels peuvent corriger des erreurs, éliminer des " "problèmes de sécurité et apporter de nouvelles fonctionalités." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "Mettre à _jour" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Mettre à jour vers la version la plus récente d'Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Vérifier" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Reprendre la mise à jour" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Masquer ces informations à l'avenir" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Installer les mises à jour" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Changements" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1670,6 +1668,9 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" +#~ 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" diff --git a/po/fur.po b/po/fur.po index 20068c18..2e2e4f43 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-30 14:37+0000\n" "Last-Translator: marcuz \n" "Language-Team: Friulian \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -544,7 +544,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -826,102 +826,102 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -933,7 +933,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -949,34 +949,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -984,49 +980,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/gl.po b/po/gl.po index 6eb5c6e7..29b5780d 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:42+0000\n" "Last-Translator: Ignacio Casal Quinteiro \n" "Language-Team: Galego\n" @@ -160,20 +160,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,23 +185,23 @@ msgstr "" "erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -211,11 +211,11 @@ msgstr "" "erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -242,11 +242,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -254,11 +254,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -271,11 +271,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,43 +284,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "Erro ao quitar a clave" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +329,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,21 +346,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -369,55 +369,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "Xa hai outro xestor de paquetes en execución" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -427,20 +427,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "Actualización rematada" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -562,7 +562,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado!" @@ -861,104 +861,104 @@ msgstr "Versión %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Descargando cambios" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Instalando actualizacións..." msgstr[1] "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versión %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "A súa distribución xa non está soportada" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -970,7 +970,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -986,34 +986,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Cambios" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Descrición" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1021,51 +1017,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Actualizacións de software" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "Instalando actualizacións..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Cambios" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/he.po b/po/he.po index 14d8a45e..a6f5c58e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-30 11:15+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -164,20 +164,20 @@ msgstr "" "במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " "באמצעות synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,34 +189,34 @@ msgstr "" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "לא ניתן להתקין את \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -246,11 +246,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -258,11 +258,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -275,11 +275,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -288,32 +288,32 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "שגיאה במהלך העדכון" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -321,11 +321,11 @@ msgstr "" "הייתה בעיה בתהליך העידכון. בדרך כלל זוהי בעיית רשת, אנא בדקו את חיבור הרשת " "שלכם ונסו שנית." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "אין מספיק שטח בדיסק הקשיח" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -334,15 +334,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -351,22 +351,22 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. אנא בדקו את החיבור לאינטרנט או את מדיית ההתקנה ונסו שנית. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -375,55 +375,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_דלג על השלב" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_הסר" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Restoring original system state" msgstr "מאתחל את המערכת" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,19 +435,19 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "משדרג" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." @@ -571,7 +571,7 @@ msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת!" @@ -866,105 +866,105 @@ msgstr "גרסה %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "מוריד שינוייים" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "מתקין עדכונים..." msgstr[1] "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 #, fuzzy msgid "Update is complete" msgstr "ההורדה הושלמה" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "גרסה %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "ההפצה שלך כבר לא נתמכת, סליחה." -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -976,7 +976,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -1000,34 +1000,30 @@ msgstr "" "%s" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "שינויים" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "תיאור" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1035,52 +1031,52 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "עדכוני תוכנה" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_המשך בשידרוג" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "מתקין עדכונים..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "שינויים" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/hi.po b/po/hi.po index 7f13d7fd..46ab03e4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Hindi \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -544,7 +544,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -826,102 +826,102 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -933,7 +933,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -949,34 +949,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -984,49 +980,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/hr.po b/po/hr.po index bfd689eb..2bd1b2f4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-24 20:54+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -160,20 +160,20 @@ msgstr "" "Vaš sistem sadrži pokvarene pakete koji nisu mogli biti popravljeni sa ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Ne mogu nadograditi potrebne meta-pakete" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "prijavite ovo kao grešku. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "problem sa mrežom i trebali biste kasnije pokušati ponovo. Pogledajte popis " "neidentificiranih paketa." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Ne mogu instalirati '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "grešku. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "Čitam spremnik" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Nisam našao ispravan zrcalni poslužitelj" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +286,11 @@ msgstr "" "Ako odaberete 'ne' nadogradnja će se prekinuti." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +303,11 @@ msgstr "" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Podaci repozitorija neispravni" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,11 +315,11 @@ msgstr "" "Nadogradnja podataka repozitorija je rezultirala neispravnom datotekom. " "Molim, prijavite ovo kao bug." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -330,11 +330,11 @@ msgstr "" "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Greška prilikom nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +342,11 @@ msgstr "" "Pojavio se problem prilikom nadogradnje. Obično se radi o mrežnom problemu, " "pa vas molim da provjerite vašu mrežu i pokušate ponovo." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -358,15 +358,15 @@ msgstr "" "koristeći 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -378,11 +378,11 @@ msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Obnavljanje je pokrenuto (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +390,11 @@ msgstr "" "Nadogradnja se prekida. Molim provjerite vašu internet vezu ili " "instalacijski medij i pokušajte ponovo. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -409,23 +409,23 @@ msgstr "" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Preskoči ovaj korak" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Ukloni" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Greška prilikom čina" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,31 +434,31 @@ msgstr "" "više informacija. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Neispravni podaci paketa" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +471,19 @@ msgstr "" "naći.\n" "Ovo upućuje na ozbiljnu grešku, molim prijavite ovo kao bug." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Pitam za potvrdu" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Nadograđujem" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." @@ -619,7 +619,7 @@ msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" @@ -928,47 +928,48 @@ msgid "Version %s: \n" msgstr "Verzija %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Preuzimam popis promjena..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "Pro_vjeri" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Veličina preuzimanja: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -976,40 +977,40 @@ msgstr[0] "Možete instalirati %s nadogradnju" msgstr[1] "Možete instalirati %s nadogradnje" msgstr[2] "Možete instalirati %s nadogradnji" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Molim pričekajte, ovo može potrajati." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Nadogradnja je gotova" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_Instaliraj nadogradnje" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nova verzija: %s (Veličina: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Verzija %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Vaša distibucija više nije podržana" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1019,17 +1020,17 @@ msgstr "" "na noviju verziju Ubuntu Linuxa. Pogledajte na http://www.ubuntu.com za više " "detalja o nadogradnji." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Popis programa je oštećen" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1040,11 +1041,12 @@ msgstr "" "terminal za ispravljanje ovog problema." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Morate ručno provjeriti postojanje nadogradnji\n" "\n" @@ -1069,34 +1071,30 @@ msgid "Starting update manager" msgstr "Pokrenuti nadogradnju?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Prekini _preuzimanje" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Promjene" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "P_rovjeri" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Provjeri repozitorije za nove nadogradnje" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Opis" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Bilješke izdanja" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1104,15 +1102,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Prikaži napredak pojedinih datoteka" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Nadogradnje programa" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1120,37 +1118,37 @@ msgstr "" "Nadogradnje programa popravljaju greške, uklanjaju sigurnosne propuste i " "donose nove mogućnosti." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "Na_dogradnja" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Nadogradi na zadnju verziju Ubuntua" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "Pro_vjeri" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Nastavi nadogradnju" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "Ubuduće _sakrij ovu informaciju" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Instaliraj nadogradnje" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Promjene" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1644,6 +1642,9 @@ msgstr "DFSG-kompatibilni programi sa neslobodnim ovisnostima" msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" +#~ msgid "Cancel _Download" +#~ msgstr "Prekini _preuzimanje" + #~ msgid "Some software no longer officially supported" #~ msgstr "Neki paketi više nisu službeno podržani" diff --git a/po/hu.po b/po/hu.po index 7667e36b..80f7f2cc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-28 21:22+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -160,20 +160,20 @@ msgstr "" "javíthatóak. Kérem, először javítsa ki őket a synaptic vagy az apt-get " "segítségével." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "A szükséges meta-csomagok nem frissíthetőek" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "jelentse ezt hibaként. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -199,23 +199,23 @@ msgstr "" "hálózati probléma okozza, ezért érdemes később újra megpróbálni. Az alábbi " "lista a hitelesíthetetlen csomagokat tartalmazza." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "'%s' nem telepíthető" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -249,11 +249,11 @@ msgstr "" msgid "Reading cache" msgstr "Gyorsítótár beolvasása" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -261,11 +261,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "nem található érvényes tükör" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +286,11 @@ msgstr "" "A \"Nem\" kiválasztása megszakítja a frissítést." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +304,11 @@ msgstr "" "Kíván alapértelmezett bejegyzéseket adni a következőhöz: %s? Ha a Nem " "gombott választja, a frissítés félbeszakad." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Érvénytelen csomagtároló információ" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +316,11 @@ msgstr "" "A csomagtároló információ frissítése hibás fájlt eredményezett. Kérem, " "jelentse ezt hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "A külső források letiltva" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -331,11 +331,11 @@ msgstr "" "a frissítés után a Szoftvertulajdonságok eszközzel, vagy a Synaptic " "csomagkezelővel." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Hiba történt a frissítés közben" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. " "Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Nincs elég szabad hely a merevlemezen" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "fájljait a \"sudo apt-get clean\" parancs kiadásával." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " "állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy " "a telepítő médiát és próbálja újra. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,23 +410,23 @@ msgstr "" "Ha nincs engedélyezve a \"universe\" tároló, akkor ezek a csomagok a " "következő lépésben ki lesznek jelölve eltávolításra. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "Ezen lé_pés kihagyása" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Eltávolítás" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,31 +435,31 @@ msgstr "" "információkat tartalmaz a hibára vonatkozóan. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Csomagtároló információ frissítése" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -472,19 +472,19 @@ msgstr "" "található többé.\n" "Ez egy komoly problémát jelez, jelentse hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Megerősítés kérése" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Frissítés folyamatban" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." @@ -617,7 +617,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" @@ -923,86 +923,87 @@ msgid "Version %s: \n" msgstr "%s verzió: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Módosítások listájának letöltése..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Ellenőrzés" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Letöltés mérete: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s frissítést telepíthet" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Kis türelmet, ez eltarthat egy ideig." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "A frissítés befejeződött" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_Telepítés" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Új verzió: %s (Méret: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "%s verzió: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "A terjesztés már nem támogatott" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1012,17 +1013,17 @@ msgstr "" "Frissítsen az Ubuntu Linux egy újabb változatára. A frissítéssel kapcsolatos " "információkat az http://www.ubuntu.com weboldalon talál." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "A szoftverindex sérült" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1033,11 +1034,12 @@ msgstr "" "terminálban a probléma megoldása érdekében." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Önnek kézzel kell megkeresnie a rendelkezésre álló frissítéseket\n" @@ -1064,34 +1066,30 @@ msgid "Starting update manager" msgstr "Megkezdi a frissítést?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Letöltés _megszakítása" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Módosítások" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Ellenőrzés" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Frissítések keresése a szoftvercsatornákon" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Leírás" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Kiadási megjegyzések" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1099,15 +1097,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Egyes fájlok állapotának mutatása" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Szoftverfrissítések" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1115,37 +1113,37 @@ msgstr "" "A szoftverfrissítések kijavítják a programhibákat, biztonsági " "sebezhetőségeket és új szolgáltatásokat biztosítanak." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Frissítés" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Frissítés az Ubuntu legújabb változatára" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Ellenőrzés" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "Frissítés _folytatása" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_A jövőben ne mutassa ezt az információt" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Telepítés" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Módosítások" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1640,6 +1638,9 @@ msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" +#~ msgid "Cancel _Download" +#~ msgstr "Letöltés _megszakítása" + #~ msgid "Some software no longer officially supported" #~ msgstr "Néhány szoftver már nincs hivatalosan támogatva" diff --git a/po/id.po b/po/id.po index de7b1d5a..01f13cbe 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-28 18:46+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -160,20 +160,20 @@ msgstr "" "perangkat lunak ini. Silakan perbaiki terlebih dahulu dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan hal ini." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "mungkin karena masalah pada jaringan. Anda dapat mencobanya beberapa saat " "lagi. Lihat senarai dari paket yang belum terbukti keabsahnya dibawah ini." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat menginstal '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "ini sebagai bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -251,11 +251,11 @@ msgstr "" msgid "Reading cache" msgstr "Membaca cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +263,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Tidak menemukan mirror yang valid" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +287,11 @@ msgstr "" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Membuat sumber baku?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +304,11 @@ msgstr "" "Haruskah entri baku untuk '%s' ditambahkan? Jika anda pilih 'No' " "pemutakhiran akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Informasi gudang tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +316,11 @@ msgstr "" "Meng-upgrade informasi gudang berakhir di dalam berkas yang tidak benar. " "Silakan laporkan ini sebagai bug." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Sumber dari pihak ketiga dilumpukan" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -331,11 +331,11 @@ msgstr "" "dapat mengaktifkan kembali setelah upgrade dengan alat 'software-properties' " "atau dengan synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Kesalahan pada waktu pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "Terjadi masalah pada waktu pemutakhiran. Ini biasanya karena masalah " "jaringan, silakan periksa koneksi jaringan anda dan ulangi." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Kapasitas cakram tidak mencukupi" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Sistem anda dapat menjadi tidak dapat " "digunakan. Perbaikan sedang berjalan (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Silakan periksa koneksi internet anda atau " "media instalasi dan coba lagi nanti. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,23 +410,23 @@ msgstr "" "Jika anda tidak mengaktifkan komponen 'universe' paket ini akan diajurkan " "untuk penghapusan dalam langkah selanjutnya. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Lewati Langkah Ini" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Hapus" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,31 +435,31 @@ msgstr "" "bawah untuk informasi lebih lanjut. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Memeriksa manajer paket" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Informasi paket tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -473,19 +473,19 @@ msgstr "" "Ini mengindikasikan adanya kesalahan serius, silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Menanyakan konfigurasi" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Meng-upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." @@ -615,7 +615,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" @@ -919,86 +919,87 @@ msgid "Version %s: \n" msgstr "Versi %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Mengunduh senarai dari perubahan..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Periksa" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Ukuran unduh: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Anda dapat instal %s pemutakhiran" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Silakan tunggu, hal ini membutuhkan beberapa waktu." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Pemutakhiran selesai" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versi baru: %s (Ukuran: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versi %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Distribusi anda tidak disokong lagi" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1008,17 +1009,17 @@ msgstr "" "lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." "ubuntu.com untuk informasi lebih lanjut." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1029,11 +1030,12 @@ msgstr "" "install -f\" dalam terminal untuk memperbaiki persoalan ini." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Anda harus memeriksa pemutakhiran secara manual\n" "\n" @@ -1059,34 +1061,30 @@ msgid "Starting update manager" msgstr "Mulai upgrade?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Batalkan _Unduh" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Perubahan" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Peri_ksa" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Periksa kanal perangkal lunak untuk pemutakhiran terbaru" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Deskripsi" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Catatan Luncuran" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1094,15 +1092,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Tampilkan kemajuan dari berkas tunggal" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Perangkat Lunak Mutakhir" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1110,37 +1108,37 @@ msgstr "" "Perangkat lunak nutakhir memperbaiki kesalahan, menyingkirkan kelemahan " "keamanan dan menyediakan fitur baru." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "U_pgrade" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Upgrade ke versi Ubuntu terakhir" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Periksa" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Lanjutkan Upgrade" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Sembunyikan informasi ini di masa depan" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Instal Update" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Perubahan" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1635,6 +1633,9 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Batalkan _Unduh" + #~ msgid "Some software no longer officially supported" #~ msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" diff --git a/po/it.po b/po/it.po index 73c6a132..8c425535 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-24 14:01+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -166,20 +166,20 @@ msgstr "" "con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" "\" per risolvere il probelma." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Impossibile aggiornare i meta-pacchetti richiesti" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -191,11 +191,11 @@ msgstr "" "dell'aggiornamento. Notificare questo evento come bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -205,12 +205,12 @@ msgstr "" "un problema di rete passeggero, riprovare più tardi. Segue una lista di " "pacchetti non autenticati." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Impossibile installare \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -219,11 +219,11 @@ msgstr "" "evento come bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -257,11 +257,11 @@ msgstr "" msgid "Reading cache" msgstr "Lettura della cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -269,11 +269,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Non è stato trovato alcun mirror valido" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +294,11 @@ msgstr "" "Scegliendo di no, l'aggiornamento verrà annullato." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +312,11 @@ msgstr "" "Aggiungere le voci predefinite per «%s»? Selezionando «No», l'aggiornamento " "verrà annullato." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Informazioni sul repository non valide" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +324,11 @@ msgstr "" "L'aggiornamento delle informazioni sul repository ha generato un file non " "valido. Notificare questo evento come bug." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Sorgenti di terze parti disabilitate" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -339,11 +339,11 @@ msgstr "" "list». È possibilie abilitarle di nuovo dopo l'aggiornamento con lo " "strumento «software-properties» o con synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Errore durante l'aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +351,11 @@ msgstr "" "Si è verificato un problema durante l'aggiornamento. Solitamente si tratta " "di problemi di rete, controllare la connessione di rete e riprovare." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Spazio libero su disco insufficiente" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -367,15 +367,15 @@ msgstr "" "usando \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Impossibile installare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -388,11 +388,11 @@ msgstr "" "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" "a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +400,11 @@ msgstr "" "Interruzione immediata dell'aggiornamento. Controllare la connessione a " "internet o il supporto di installazione e riprovare. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -420,23 +420,23 @@ msgstr "" "Se non è abilitato il repository «universe», verrà suggerita la rimozione di " "questi pacchetti al prossimo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Salta questo passo" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Rimuovi" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Errore durante il commit" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -445,31 +445,31 @@ msgstr "" "seguente per maggiori informazioni. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Ripristino stato originale del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Controllo gestore dei pacchetti" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Aggiornamento delle informazione sui repository" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -482,19 +482,19 @@ msgstr "" "trovare il pacchetto essenziale «%s».\n" "Ciò indica un errore grave, segnalare questo evento come un bug." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Richiesta di conferma" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." @@ -629,7 +629,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Il sistema è aggiornato!" @@ -938,87 +938,88 @@ msgid "Version %s: \n" msgstr "Versione %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Scaricamento dell'elenco dei cambiamenti..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Verifica" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Dati da scaricare: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "È possibile installare %s aggiornamento" msgstr[1] "È possibile installare %s aggiornamenti" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Attendere, l'operazione potrebbere richiedere del tempo." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Aggiornamento completato" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Verifica degli aggiornamenti..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nuova versione: %s (Dimensione: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versione %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "La distribuzione in uso non è più supportata" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1028,17 +1029,17 @@ msgstr "" "versione più aggiornata di Ubuntu Linux. Per maggiori informazioni " "consultare http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "L'indice dei programmi è rovinato" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1049,11 +1050,12 @@ msgstr "" "in un terminale per risolvere il problema." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "È necessario controllare gli aggiornamenti manualmente\n" "\n" @@ -1079,34 +1081,30 @@ msgid "Starting update manager" msgstr "Avviare l'aggiornamento?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Annulla _scaricamento" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Cambiamenti" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Verifica" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Verifica la presenza di nuovi aggiornamenti nei canali software" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Descrizione" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Note di rilascio" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1114,15 +1112,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Mostra l'avanzamento dei singoli file" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Aggiornamenti software" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1130,37 +1128,37 @@ msgstr "" "Gli aggiornamenti software correggono errori, eliminano vulnerabilità di " "sicurezza ed aggiungono nuove funzionalità." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "A_ggiorna" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Aggiorna all'ultima versione di Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Verifica" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Riprendi aggiornamento" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Non mostrare più queste informazioni" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "I_nstalla aggiornamenti" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Cambiamenti" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1662,6 +1660,9 @@ msgstr "Software compatibile con le DFSG con dipendenze non libere" msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Annulla _scaricamento" + #~ msgid "Some software no longer officially supported" #~ msgstr "Software non più supportato ufficialmente" diff --git a/po/ja.po b/po/ja.po index 0a21dcc4..2c8109c8 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-24 07:06+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -162,20 +162,20 @@ msgstr "" "システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" "す。 Synaptic や apt-get を使って最初に修正してください。" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "要求されたメタパッケージがアップグレードできません" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgid "" msgstr "算定中に解決できない問題がおきました。バグとして報告してください。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" "ジが表示されます。" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "'%s' がインストールできません" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "要求されたパッケージのインストールができません。バグとして報告してください。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "キャッシュを読み込み中" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "正しいミラーが見つかりません" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -285,11 +285,11 @@ msgstr "" "キャンセルします。" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -302,11 +302,11 @@ msgstr "" "'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" "キャンセルします。" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "リポジトリ情報が無効です" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -314,11 +314,11 @@ msgstr "" "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" "告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "公式ではないソースが無効になりました" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -329,11 +329,11 @@ msgstr "" "アップグレード後に 'ソフトウェアのプロパティ' ツールか Synaptic を使用してく" "ださい。" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "アップデート中にエラー発生" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +341,11 @@ msgstr "" "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" "ネットワーク接続をチェックし、再びアップデートしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "ディスクの空き領域が足りません" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +357,15 @@ msgstr "" "た一時パッケージを削除してください。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +377,11 @@ msgstr "" "アップグレードを中断しました。システムが使用できない状態になっている可能性が" "あります。ただいま修正を実行中です (dpkg --configure -a)。" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "アップグレードをダウンロードできません" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +389,11 @@ msgstr "" "アップグレードを中断しました。インターネット接続またはインストールメディア" "(CD-ROMなど)をチェックし。再試行してください。 " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -408,23 +408,23 @@ msgstr "" "'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" "提案します。 " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "不要なパッケージを削除しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "このステップをスキップ(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "削除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "コミット中にエラー" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,31 +433,31 @@ msgstr "" "ください。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "システムを元に戻し中" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "パッケージマネージャをチェック中" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "リポジトリ情報をアップデート" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "無効なパッケージ情報" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -469,19 +469,19 @@ msgstr "" "パッケージ情報のアップデートのあと、重要パッケージ '%s' が見つかりません。\n" "このメッセージは深刻なエラーです。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "確認する" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "アップグレード中" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索する" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" @@ -610,7 +610,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" @@ -912,86 +912,87 @@ msgid "Version %s: \n" msgstr "バージョン %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "変更点を取得中..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "チェック(_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "ダウンロードサイズ: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 個のアップデートがインストールされます" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "しばらくお待ちください。少々時間がかかります。" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "アップデートが完了しました" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "インストールできるアップデートをチェック" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新しいバージョン: %s (サイズ: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "バージョン %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "このディストリビューションはすでにサポート対象外です" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1001,17 +1002,17 @@ msgstr "" "Ubuntu Linux にアップグレードしてください。\r\n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1022,11 +1023,12 @@ msgstr "" "install -f\" コマンドをターミナルで実行してください。" #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "アップデートの情報を手動でチェックしてください\n" "\n" @@ -1052,34 +1054,30 @@ msgid "Starting update manager" msgstr "アップグレードを開始しますか?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "ダウンロードをキャンセル(_D)" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "変更点" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "再チェック(_K)" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "新しいアップデートの調査のためにソフトウェアチャンネルをチェックします" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "説明" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "リリースノート" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1087,15 +1085,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "個々のファイルの進捗を表示" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "ソフトウェアのアップデート" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1103,37 +1101,37 @@ msgstr "" "ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能" "を提供します。" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "アップグレード(_P)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Ubuntu の最新バージョンにアップグレード" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "チェック(_C)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "アップグレードを再開する(_R)" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "今後この情報を隠す(_H)" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "アップデートをインストール(_I)" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "変更点" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1629,6 +1627,9 @@ msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" +#~ msgid "Cancel _Download" +#~ msgstr "ダウンロードをキャンセル(_D)" + #~ msgid "Some software no longer officially supported" #~ msgstr "いくつかのソフトウェアはもう公式にサポートされません" diff --git a/po/ka.po b/po/ka.po index 152b2305..2384bc56 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:19+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -164,22 +164,22 @@ msgstr "" "პროგრამით. ჯერ გამართეთ გაფუჭებული პაკეტები synaptic ან apt-get პროგრამით და " "შემდეგ გააგრძელეთ." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "საჭჳრო მეტა-პაკეტების განახლება ვერ მოხერხდა" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 #, fuzzy msgid "A essential package would have to be removed" msgstr "A არსებითი -სკენ" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 #, fuzzy msgid "Could not calculate the upgrade" msgstr "არა" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -191,11 +191,11 @@ msgstr "" "ხარვეზი. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -205,23 +205,23 @@ msgstr "" "ბრაკი. იქნებ მოგვიანბით კიდევ ერთხელ სცადოთ. ქვევით იხილეთ არა-" "ავთენთიფიცერული პაკეტების სია." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "'%s' ვერ დაყენდა" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ გამოვიცანით" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -252,11 +252,11 @@ msgstr "" msgid "Reading cache" msgstr "მიმდინარეობს ქეშის წაკითხვა" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "არავითარი გამოსადეგი სერვერის ანარეკლი" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,12 +281,12 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 #, fuzzy msgid "Generate default sources?" msgstr "გენერაცია ნაგულისხმევი?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,11 +295,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "რეპოზიტორიების ინფორმაცია არასწორეა" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -307,12 +307,12 @@ msgstr "" "რეპოზიტორიების განახლების შედეგად დაზიანდა ფაილი. შეატყობინეთ ეს როგორხ " "ხარვეზი." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 #, fuzzy msgid "Third party sources disabled" msgstr "გამორთული" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -320,11 +320,11 @@ msgid "" "synaptic." msgstr "-ში სია გამორთული თქვენ პარამეტრები ან." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "განახლებისას მოხდა შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -332,11 +332,11 @@ msgstr "" "განახლებისას მოხდა შეცდომა. ეს როგროც წესი არის კავშირის პრობლემა, შეამოწმეთ " "თქვენი კავშირი და ცადეთ კიდევ ერთხელ." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "დისკზე არ არის საკმარისი თავისუფალი ადგილი" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,16 +345,16 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 #, fuzzy msgid "Could not install the upgrades" msgstr "არა" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -364,23 +364,23 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "ახლა -ში A a." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 #, fuzzy msgid "Could not download the upgrades" msgstr "არა" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "ახლა ან და " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -390,24 +390,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "არა და ახლა n t ჩართული -თვის -ში ნაბიჯი " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "წავშალო მოძველებული პაკეტები?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "ნაბიჯის გა_მოტოვება" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_წაშლა" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 #, fuzzy msgid "Error during commit" msgstr "შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 #, fuzzy msgid "" "Some problem occured during the clean-up. Please see the below message for " @@ -415,31 +415,31 @@ msgid "" msgstr "-თვის ინფორმაცია " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "ვამოწმებ პროგრამულ მენეჯერს" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "რეპოზტორიის ინფორმაციის განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "გაფუჭებული პაკეტის შესახებ ინფორმაცია" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -449,21 +449,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 #, fuzzy msgid "Asking for confirmation" msgstr "-თვის" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "მიმდინარეობს განახლებების ჩაყენება" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, fuzzy msgid "Searching for obsolete software" msgstr "ვეძებ -თვის" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, fuzzy msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." @@ -588,7 +588,7 @@ msgstr "ვის დახურვა ყველა გახსნა დ #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" @@ -896,86 +896,86 @@ msgstr "ვერსია %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "მიმდინარეობს ჩამოქაჩვა სია ის." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "შ_ემოწმება" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "ჩამოსატვირთის ზომა: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "თქვენ შეგიძლიათ %s განახლების ჩადგმა" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "განახლება გასრულებულია" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "ახალი ვერსია: %s (ზომა: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "ვერსია %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 #, fuzzy msgid "" "You will not get any further security fixes or critical updates. Upgrade to " @@ -985,17 +985,17 @@ msgstr "" "თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი " "იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 #, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " @@ -1010,7 +1010,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" " თქვენ -თვის n არა -თვის თქვენ -ში სისტემა ადმინისტრაცია " "პროგრამა პარამეტრები." @@ -1034,35 +1034,31 @@ msgid "Starting update manager" msgstr " გაშვება" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "ჩამოტვირთვის _გაუქმება" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "ცვლილებები" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "შე_მოწმება" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 #, fuzzy msgid "Check the software channels for new updates" msgstr "შემოწმება -თვის ახალი" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "აღწერილობა" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "ვერსიის მონაცემები" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1070,54 +1066,54 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 #, fuzzy msgid "Show progress of single files" msgstr "ჩვენება მიმდინარეობა ის ცალი" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "პროგრამული განახლებები" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 #, fuzzy msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "პროგრამა სწორეა და ახალი." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 #, fuzzy msgid "Upgrade to the latest version of Ubuntu" msgstr "განახლება -სკენ ვერსია ის" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "შ_ემოწმება" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "განახლება _გაგრძელება" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_დამალე მომავალში მოცემული ინფორმაცია" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "განახლებების _დაყენება" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "ცვლილებები" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1611,6 +1607,9 @@ msgstr "პროგრამა თავისუფალი დამოკ msgid "Non-DFSG-compatible Software" msgstr "პროგრამა" +#~ msgid "Cancel _Download" +#~ msgstr "ჩამოტვირთვის _გაუქმება" + #, fuzzy #~ msgid "Some software no longer officially supported" #~ msgstr "არა" diff --git a/po/ko.po b/po/ko.po index 440714d0..1152fb5e 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-28 15:14+0000\n" "Last-Translator: darehanl \n" "Language-Team: Korean \n" @@ -158,20 +158,20 @@ msgstr "" "이 소프트웨어로 수정할 수 없는 망가진 꾸러미가 있습니다. 진행 전에 먼저 시냅" "틱이나 apt-get을 사용하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "요청된 메타 꾸러미를 업그레이드 할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "필수 꾸러미를 지워야만 합니다." #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -183,11 +183,11 @@ msgstr "" "버그를 보고하여 주십시오. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "꾸러미 인증 오류" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -196,23 +196,23 @@ msgstr "" "인증하는데 실패한 꾸러미가 있습니다. 일시적인 네트워크 문제일 수 있으니 나중" "에 다시 시도하십시오. 인증에 실패한 꾸러미의 목록은 다음과 같습니다." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "'%s'을(를) 설치할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "요청된 꾸러미를 설치할 수 없습니다. 버그로 보고하여 주십시오. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "메타 꾸러미를 추측할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -245,11 +245,11 @@ msgstr "" msgid "Reading cache" msgstr "캐시를 읽는 중" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -257,11 +257,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "적합한 미러 서버를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,11 +281,11 @@ msgstr "" "'아니오'를 고르면 업데이트가 취소됩니다." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -298,11 +298,11 @@ msgstr "" "'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 고르면 업데이트가 취소됩" "니다." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "저장소 정보가 올바르지 않습니다" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -310,11 +310,11 @@ msgstr "" "저장소 정보를 업그레이드하는 것이 잘못된 파일로 만들어졌습니다. 버그를 보고하" "여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "써드 파티 소스는 이용할 수 없습니다" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -325,11 +325,11 @@ msgstr "" "properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" "니다." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "업데이트 중 오류" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -337,11 +337,11 @@ msgstr "" "업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" "니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "디스크 여유 공간이 충분하지 않습니다." -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +353,15 @@ msgstr "" "에 사용했던 임시 꾸러미들을 삭제하시기 바랍니다." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -373,11 +373,11 @@ msgstr "" "업그레이드가 중지되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " "(dpkg --configure -a)를 실행하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "업그레이드 파일을 다운로드 할 수 없습니다." -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +385,11 @@ msgstr "" "업그레이드가 중지되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" "하십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -404,23 +404,23 @@ msgstr "" "'Universe' 저장소를 활성화하지 않았다면 다음 단계에서 이 꾸러미들을 삭제할 " "수 있습니다. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "못쓰게 된 꾸러미를 삭제하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "이 단계 건너뛰기(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "삭제(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "커밋 도중 오류 발생" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -429,31 +429,31 @@ msgstr "" "보를 얻으실 수 있습니다. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "시스템을 원상태로 복구하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "꾸러미 관리자 확인 중" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "저장소 정보 업데이트 중" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "잘못된 꾸러미 정보" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -466,19 +466,19 @@ msgstr "" "다.\n" "심각한 오류입니다. 버그를 보고하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "확인을 요청하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "업그레이드 하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "못 쓰게 된 소프트웨어를 검색하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "시스템 업그레이드가 끝났습니다." @@ -604,7 +604,7 @@ msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문 #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." @@ -907,86 +907,87 @@ msgid "Version %s: \n" msgstr "버전 %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "바뀐 목록을 다운로드 하는 중..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "점검(_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "다운로드 크기: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 개의 업데이트를 설치할 수 있습니다." -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "잠시만 기다리십시오. 이 작업은 약간의 시간이 걸립니다." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "업데이트가 끝났습니다." -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "업데이트를 설치(_I)" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "새 버전: %s (크기: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "버전 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "더 이상 지원되지 않는 배포판입니다." -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -996,17 +997,17 @@ msgstr "" "그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" "서 보실 수 있습니다." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'를 이용할 수 있습니다" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1016,11 +1017,12 @@ msgstr "" "\"sudo apt-get install -f\"를 실행하여 이 문제를 먼저 해결하십시오." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "수동으로 업데이트를 확인해야 합니다.\n" "\n" @@ -1045,34 +1047,30 @@ msgid "Starting update manager" msgstr "업그레이드를 시작하시겠습니까?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "다운로드 취소(_D)" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "변경 사항" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "점검(_k)" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "새로운 업데이트를 위해 소프트웨어 채널을 확인합니다." -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "설명" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "릴리즈 정보" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1080,15 +1078,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "각 파일의 진행 상황 표시" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "소프트웨어 업데이트" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1096,37 +1094,37 @@ msgstr "" "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" "합니다." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "업그레이드(_p)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "우분투 최신 버젼으로 업그레이드 합니다." -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "점검(_C)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "업그레이드 계속(_R)" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "앞으로 이 정보 숨김(_H)" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "업데이트를 설치(_I)" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "변경 사항" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1615,6 +1613,9 @@ msgstr "DFSG 호환이지만 자유소프트웨어가 아닌 의존성이 있는 msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 안되는 소프트웨어" +#~ msgid "Cancel _Download" +#~ msgstr "다운로드 취소(_D)" + #~ msgid "Some software no longer officially supported" #~ msgstr "더 이상 공식적으로 지원하지 않는 소프트웨어가 있습니다." diff --git a/po/ku.po b/po/ku.po index 188b00b4..4d7c2631 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Nikarî '%s' saz bike" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Jê bibe" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Tê bilindkirin" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." @@ -545,7 +545,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" @@ -827,102 +827,102 @@ msgid "Version %s: \n" msgstr "Guhertoya %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Mezinahiya daxistinê: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Tu dikarî %s rojanekirinê saz bikî" msgstr[1] "Tu dikarî %s rojanekirinan saz bikî" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Rojanekirin temam bû" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Guhertoya %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -934,7 +934,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -951,34 +951,30 @@ msgid "Starting update manager" msgstr "Dest bi bilindkirinê were kirin?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Daxistinê _betal bike" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Guhartin" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Daxuyanî" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -986,50 +982,50 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Guhartin" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1488,6 +1484,9 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Cancel _Download" +#~ msgstr "Daxistinê _betal bike" + #~ msgid "Your system has already been upgraded." #~ msgstr "Sîstema xwe berê hat bilindkirin." diff --git a/po/lt.po b/po/lt.po index df8552d5..0aca5ce7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-28 20:07+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -160,20 +160,20 @@ msgstr "" "programa. Prieš tęsdami pirmiausia sutaisykite juos naudodamiesi „synaptic“ " "arba „apt-get“." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Negalima atnaujinti reikiamų metapaketų" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "tai kaip klaidą. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "Nepavyko patvirtinti kelių paketų autentiškumo. Tai gali būti laikina tinklo " "problema. Galite bandyti vėliau. Žemiau yra nepatvirtintų paketų sąrašas." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Negalima įdiegti „%s“" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,12 +211,12 @@ msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 #, fuzzy msgid "Can't guess meta-package" msgstr "Negalima nuspėti meta paketo" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "Nuskaitoma talpykla" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,12 +262,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 #, fuzzy msgid "No valid mirror found" msgstr "Nerasta tinkamo įrašo" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -280,11 +280,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Ar sukurti numatytųjų šaltinių sąrašą?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -293,11 +293,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Saugyklų informacija netinkama" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -305,11 +305,11 @@ msgstr "" "Saugyklos informacijos atnaujinimo rezultatas buvo sugadinta byla. " "Praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Trečiųjų šalių šaltiniai išjungti" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -320,11 +320,11 @@ msgstr "" "Juos galėsite vėl įjungti, kai baigsite atnaujinimą su „programų savybių“ " "įrankiu arba „Synaptic“ paketų tvarkykle." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Klaida atnaujinant" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -332,11 +332,11 @@ msgstr "" "Atnaujinant iškilo problema. Tai greičiausiai kokia nors tinklo problema, " "todėl iš naujo patikrinkite tinklo jungtis ir bandykite dar." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Diske nepakanka laisvos vietos" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +365,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. " "Dabar bus vykdomas atkūrimas (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +377,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo " "laikmeną ir bandykite dar. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -396,23 +396,23 @@ msgstr "" "Jei nesate įjungę „universe“ skyriaus, šie paketai bus siūlomi pašalinimui " "kitame žingsnyje. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Praleisti šį žingsnį" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "P_ašalinti" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,31 +421,31 @@ msgstr "" "pranešime. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Perkraunama sistema" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Tikrinama paketų valdyklė" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Netinkama paketo informacija" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -458,19 +458,19 @@ msgstr "" "paketo „%s“.\n" "Tai labai rimta problema, praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Klausiama patvirtinimo" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Atnaujinama" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." @@ -607,7 +607,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" @@ -913,47 +913,48 @@ msgid "Version %s: \n" msgstr "Versija %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Atsiunčiamas pakeitimų sąrašas..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Patikrinti" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -961,40 +962,40 @@ msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[1] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[2] "Rodyti ir įdiegti galimus atnaujinimus" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Palaukite, tai gali užtrukti." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Atnaujinimas užbaigtas" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nauja versija: %s (Dydis: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versija %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Jūsų distribucija daugiau nebepalaikoma" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1004,17 +1005,17 @@ msgstr "" "Atnaujinkite į naujausią „Ubuntu Linux“ versiją. Daugiau informacijos apie " "atnaujinimą rasite http://www.ubuntu.com ." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1030,7 +1031,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Jūs turite patikrinti dėl atnaujinimų rankiniu būdu\n" "\n" @@ -1055,34 +1056,30 @@ msgid "Starting update manager" msgstr "Pradėti atnaujinimą?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Atšaukti _atsiuntimą" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Pakeitimai" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Ti_krinti" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Patikrinti programų kanalus dėl atnaujinimų" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Aprašymas" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Leidimo aprašymas" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1090,15 +1087,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Rodyti pavienių failų progresą" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Programinės įrangos atnaujinimai" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 #, fuzzy msgid "" "Software updates correct errors, eliminate security vulnerabilities and " @@ -1107,37 +1104,37 @@ msgstr "" "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " "spragas bei suteikti naujas funkcijas." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "At_naujinti" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Atnaujinti iki naujausios Ubuntu versijos" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Patikrinti" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Tęsti atnaujinimą" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Nerodyti šios informacijos ateityje" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "Į_diegti atnaujinimus" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Pakeitimai" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1633,6 +1630,9 @@ msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" +#~ msgid "Cancel _Download" +#~ msgstr "Atšaukti _atsiuntimą" + #~ msgid "Some software no longer officially supported" #~ msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" diff --git a/po/mk.po b/po/mk.po index 1b14fb90..63ca4336 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -159,20 +159,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -184,23 +184,23 @@ msgstr "" "како бубачка. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -210,11 +210,11 @@ msgstr "" "како бубачка. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -241,11 +241,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -253,11 +253,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -270,12 +270,12 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 #, fuzzy msgid "Generate default sources?" msgstr "Врати ги стандардните клучеви" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,43 +284,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "Грешка при отстранување на клучот" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +329,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,21 +346,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -369,55 +369,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "Веќе работи друг менаџер за пакети" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -427,20 +427,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "Надградбата е завршена" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -565,7 +565,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" @@ -864,46 +864,46 @@ msgstr "Верзија %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, fuzzy, python-format msgid "Download size: %s" msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -911,58 +911,58 @@ msgstr[0] "Инсталирам надградби..." msgstr[1] "Инсталирам надградби..." msgstr[2] "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Проверувам за надградби..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Верзија %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуција повеќе не е поддржана" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -974,7 +974,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -990,34 +990,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Опис" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1025,51 +1021,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Надградба на софтвер" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "Инсталирам надградби..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/ms.po b/po/ms.po index 5e7b0e8d..81a4d520 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-30 13:49+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -161,20 +161,20 @@ msgstr "" "menggunakan sofwer ini. Sila baiki dahulu menggunakan synaptic atau apt-get " "sebelum meneruskan." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,23 +186,23 @@ msgstr "" "penaikkan. Sila laporkan ini sebagai ralat pepijat. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat memasang '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,11 +211,11 @@ msgstr "" "pepijat. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -248,11 +248,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -277,11 +277,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -290,21 +290,21 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Sumber ketiga tidak diaktifkan." -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -316,11 +316,11 @@ msgstr "" "selepas penaikkan taraf menggunakan alatan 'software-properties' ataupun " "'synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Ralat semasa pengemaskinian." -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -329,11 +329,11 @@ msgstr "" "yang berkaitan dengan masaalah rangkaian, sila periksa dan cuba lagi " "sambungan rangkaian anda." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Muatak cakera keras tidak mencukupi." -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgstr "" "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Tidak dapat memasang pakej-pakej penaikkan taraf." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +365,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sistem anda mungkin tidak stabil. " "Sistem 'recovery' telah dijalankan (dpkg --configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +377,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sila semak sambungan 'internet' atau " "media pemasangan anda dan cuba lagi. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -395,54 +395,54 @@ msgstr "" "Jika anda tidak megaktifkan 'universe', pakej-pakej ini akan dicadangkan " "untuk dikeluarkan di peringkat selanjutnya. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Keluarkan pakej-pakej yang sudah luput?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -452,19 +452,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -585,7 +585,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -868,102 +868,102 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -975,7 +975,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -999,34 +999,30 @@ msgstr "" "%s" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1034,49 +1030,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/nb.po b/po/nb.po index 9f3a41e2..385b046c 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-29 13:06+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -162,20 +162,20 @@ msgstr "" "av dette programmet. Vennligst rett opp i dette ved å bruke Synaptic eller " "apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke oppgradere nødvendige meta-pakker" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -187,11 +187,11 @@ msgstr "" "rapporter dette som en feil. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -201,12 +201,12 @@ msgstr "" "nettverksproblem, så du bør prøve igjen senere. Se under for listen over " "pakker som ikke kunne autentiseres." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -252,11 +252,11 @@ msgstr "" msgid "Reading cache" msgstr "Leser mellomlager" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Fant ikke noe gyldig speil" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +288,11 @@ msgstr "" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +306,11 @@ msgstr "" "Skal standard linjer for '%s' legges til? Hvis du velger 'Nei' vil " "oppdateringen avbrytes." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Ugyldig informasjon om arkiv" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,11 +318,11 @@ msgstr "" "Oppgradering av kanalinformasjon resulterte i en ugyldig fil. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Tredjepartskilder er deaktivert" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -333,11 +333,11 @@ msgstr "" "aktivere dem etter oppgraderingen ved hjelp av verktøyet 'Egenskaper for " "programvare' eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +346,11 @@ msgstr "" "problem med nettverkstilkoblingen. Vennligst sjekk nettverkstilkoblingen din " "og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Ikke nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +362,15 @@ msgstr "" "bruke 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Kunne ikke installere oppgraderingene" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -382,11 +382,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon " "ble forsøkt kjørt (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Kunne ikke laste ned alle oppgraderingene." -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +394,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Vennligst sjekk internet-tilkoblingen eller " "installasjonsmediet og prøv på nytt. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -413,23 +413,23 @@ msgstr "" "Hvis du ikke har 'universe' aktivert vil disse pakkene bli foreslått fjernet " "i neste steg. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Ønsker du å fjerne utdaterte pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Hopp over dette punktet" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Feil ved commit" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,31 +438,31 @@ msgstr "" "informasjon. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +475,19 @@ msgstr "" "pakken '%s'.\n" "Dette indikerer en alvorlig feil, vennligst rapportér denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Spør om bekreftelse" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Oppgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" @@ -619,7 +619,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" @@ -927,87 +927,88 @@ msgid "Version %s: \n" msgstr "Versjon %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Laster ned listen med endringer..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "Sjekk" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Nedlastingsstørrelse: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s oppdatering" msgstr[1] "Du kan installere %s oppdateringer" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Vennligst vent, dette kan ta litt tid." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Oppdateringen er fullført" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Sjekker for tilgjengelige oppdateringer" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny versjon: %s (Størrelse: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1017,17 +1018,17 @@ msgstr "" "oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." "ubuntu.com for mer informasjon om oppgradering." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1038,11 +1039,12 @@ msgstr "" "install -f\" i en terminal for å løse denne situasjonen." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Du må sjekke for oppdateringer manuelt\n" "\n" @@ -1067,34 +1069,30 @@ msgid "Starting update manager" msgstr "Vil du starte oppgraderingen?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Avbryt ne_dlasting" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Sjek_k" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Sjekk programvarekanalene for nye oppdateringer" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Beskrivelse" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Utgivelsesinformasjon" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1102,15 +1100,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Vis fremdrift for enkeltfiler" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Programvareoppdateringer" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1118,37 +1116,37 @@ msgstr "" "Programvareoppdateringer fikser feil, fjerner sikkerhetshull og tilbyr ny " "funksjonalitet." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "O_ppgrader" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Oppgrader til siste versjon av Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "Sjekk" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Gjenoppta oppgradering" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "Skjul denne informasjonen i fremtiden" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Installerer oppdateringer" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1647,6 +1645,9 @@ msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" +#~ msgid "Cancel _Download" +#~ msgstr "Avbryt ne_dlasting" + #~ msgid "Some software no longer officially supported" #~ msgstr "Noe programvare er ikke lenger offisielt støttet" diff --git a/po/ne.po b/po/ne.po index 16549c06..ac11acd6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,23 +180,23 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -204,11 +204,11 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -235,11 +235,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,43 +277,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -322,15 +322,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -362,55 +362,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -420,20 +420,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "स्तरवृद्धि समाप्त" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -555,7 +555,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" @@ -850,104 +850,104 @@ msgstr "संस्करण %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, fuzzy, python-format msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" msgstr[1] "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "संस्करण %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "तपाईंको वितरण समर्थित छैन" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -959,7 +959,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -975,34 +975,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "परिवर्तनहरु" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "बर्णन" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1010,51 +1006,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "सफ्टवेयर अद्यावधिकहरु" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "परिवर्तनहरु" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/nl.po b/po/nl.po index 7906b6d5..0e2b724b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-24 01:32+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -162,20 +162,20 @@ msgstr "" "met deze software. Repareer deze eerst met synaptic of apt-get voordat u " "verder gaat." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Kan de vereiste meta-pakketten niet upgraden." -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -187,11 +187,11 @@ msgstr "" "Gelieve dit als fout te rapporteren. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "proberen. Hieronder vindt u een lijst met pakketten waarvan de echtheid niet " "vastgesteld is." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Kan '%s' niet installeren" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "fout te rapporteren. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -255,11 +255,11 @@ msgstr "" msgid "Reading cache" msgstr "Tijdelijke opslag inlezen" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Geen geldige mirror-server gevonden" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -292,11 +292,11 @@ msgstr "" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -310,11 +310,11 @@ msgstr "" "Moeten de standaardregels voor '%s' worden toegevoegd? Wanneer u 'Nee' " "kiest, zal de update worden geannuleerd." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "De informatie over de pakketbronnen is ongeldig" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -322,11 +322,11 @@ msgstr "" "Het upgraden van de informatie over de pakketbronnen heeft het bestand " "ongeldig gemaakt. Rapporteer dit als een fout." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Pakketbronnen van derden uitgeschakeld" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -337,11 +337,11 @@ msgstr "" "kunt ze na de upgrade weer inschakelen via het menu Systeem -> Beheer -> " "Software-eigenschappen of met het programma Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Fout tijdens het updaten" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +349,11 @@ msgstr "" "Tijdens het updaten is er iets misgegaan. Dit komt meestal door " "netwerkproblemen. Controleer uw netwerkverbinding en probeer opnieuw." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Niet genoeg vrije schijfruimte" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +365,15 @@ msgstr "" "vorige installaties via 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,11 +386,11 @@ msgstr "" "onbruikbare toestand. Er is een hersteloperatie uitgevoerd (dpkg --configure " "-a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Kon de upgrades niet downloaden" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +398,11 @@ msgstr "" "De upgrade wordt nu afgebroken. Controleer uw internetverbinding of het " "installatiemedium en probeer opnieuw. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -417,23 +417,23 @@ msgstr "" "Indien 'universe' niet geactiveerd is zal bij de volgende stap gevraagd " "worden om deze pakketten te verwijderen. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Overbodige pakketten verwijderen?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Deze stap overslaan" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Verwijderen" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Fout bij het toepassen" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,31 +442,31 @@ msgstr "" "voor meer informatie. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -479,19 +479,19 @@ msgstr "" "meer gevonden worden.\n" "Dit is een ernstige fout, die gerapporteerd moet worden." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Vragen om bevestiging" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Bezig met upgraden" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Zoeken naar overbodige software" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." @@ -626,7 +626,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" @@ -935,87 +935,88 @@ msgid "Version %s: \n" msgstr "Versie %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Het overzicht van de wijzigingen wordt gedownload..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Controleren" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Downloadgrootte: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "U kunt %s update installeren" msgstr[1] "U kunt %s updates installeren" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Een ogenblik geduld, dit kan even duren." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "De update is voltooid" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nieuwe versie: %s (Grootte: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versie %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Uw distributie wordt niet langer ondersteund" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1025,17 +1026,17 @@ msgstr "" "upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." "com voor meer informatie over upgraden." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Software-index is beschadigd" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1046,11 +1047,12 @@ msgstr "" "install -f\" in een terminalvenster om eerst dit probleem te verhelpen." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "U moet zelf controleren of er updates zijn\n" "\n" @@ -1075,34 +1077,30 @@ msgid "Starting update manager" msgstr "Upgrade starten?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Download _annuleren" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Wijzigingen" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Controleren" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Controleer de softwarekanalen op nieuwe updates" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Omschrijving" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Versie-informatie" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1110,15 +1108,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Voortgang tonen van individuele pakketten" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Software-updates" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1126,37 +1124,37 @@ msgstr "" "Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " "nieuwe mogelijkheden." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "U_pgraden" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Upgrade naar de nieuwste versie van Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Controleren" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Upgrade hervatten" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Deze informatie in het vervolg niet meer tonen" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "Up_dates installeren" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Wijzigingen" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1652,6 +1650,9 @@ msgstr "Software compatibel met DFSG, maar met niet-vrije afhankelijkheden" msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Download _annuleren" + #~ msgid "Some software no longer officially supported" #~ msgstr "Bepaalde software wordt niet meer officieel ondersteund" diff --git a/po/no.po b/po/no.po index 0ce223e5..1710e655 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -181,23 +181,23 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -237,11 +237,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +266,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "Feil under fjerning av nøkkel" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,55 +364,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "En annen pakkehåndterer kjører" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,21 +422,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 #, fuzzy msgid "Asking for confirmation" msgstr "Undersøker systemkonfigurasjon" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "Oppgradering fullført" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -558,7 +558,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" @@ -855,104 +855,104 @@ msgstr "Versjon %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, fuzzy, python-format msgid "Download size: %s" msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installerer oppdateringer..." msgstr[1] "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -964,7 +964,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -980,34 +980,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Beskrivelse" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1015,51 +1011,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Programvareoppdateringer" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "Installerer oppdateringer..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/oc.po b/po/oc.po index f9e0acb8..82b1e6da 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-29 08:11+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -159,20 +159,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -181,34 +181,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Impossible installar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -235,11 +235,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,42 +277,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Error al moment de metre a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Pas pro d'espaci liure" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +321,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Impossible installar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,21 +338,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Impossible descargar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -361,54 +361,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Suprimir" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -418,19 +418,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Mesa a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." @@ -551,7 +551,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -836,104 +836,104 @@ msgid "Version %s: \n" msgstr "Version %s : \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Verificar" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Talha de la descarga : %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podètz installar %s mesa a jorn" msgstr[1] "Podètz installar %s mesas a jorn" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Mesas a jorn per internet" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s : \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -945,7 +945,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -969,34 +969,30 @@ msgstr "" "%s" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Cambis" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Verificar" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Descripcion" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1004,50 +1000,50 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Cambis" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/pa.po b/po/pa.po index 9d50e996..7a4b7a28 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-04-28 23:31+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -154,20 +154,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -176,34 +176,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -230,11 +230,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -242,11 +242,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -259,11 +259,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -272,42 +272,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,54 +356,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,20 +413,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -547,7 +547,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -837,103 +837,103 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." msgstr[1] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -945,7 +945,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -961,34 +961,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -996,53 +992,53 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 #, fuzzy msgid "Software Updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 #, fuzzy msgid "U_pgrade" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/pl.po b/po/pl.po index d1f49bbb..d4ac294e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:59+0000\n" "Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" @@ -161,20 +161,20 @@ msgstr "" "kontynuowaniem należy je naprawić używając Synaptic Menedżer Pakietów lub " "apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Nie można zaktualizować wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "zgłosić to jako błąd. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -200,23 +200,23 @@ msgstr "" "sieci. Można spróbować ponownie później. Poniżej znajduje się lista " "nieuwierzytelnionych pakietów." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Nie można zainstalować \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -248,11 +248,11 @@ msgstr "" msgid "Reading cache" msgstr "Odczytywanie bufora podręcznego" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Nie odnaleziono poprawnego serwera lustrzanego" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -284,11 +284,11 @@ msgstr "" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -302,11 +302,11 @@ msgstr "" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Błędne informacje o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -314,11 +314,11 @@ msgstr "" "W wyniku aktualizacji informacji o repozytoriach powstał błędny plik. Proszę " "zgłosić ten błąd." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Źródła stron niezależnych zostały wyłączone" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -329,11 +329,11 @@ msgstr "" "włączyć po aktualizacji używając narzędzia \"Właściwości oprogramowania\" " "lub za pomocą Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Błąd podczas aktualizacji" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +341,11 @@ msgstr "" "Wystąpił problem podczas aktualizacji. Zazwyczaj wynika on z problemów z " "siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Zbyt mało miejsca na dysku" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +357,15 @@ msgstr "" "\"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -378,11 +378,11 @@ msgstr "" "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" "configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +390,11 @@ msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz " "dysk instalacyjny i spróbować ponownie. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -409,23 +409,23 @@ msgstr "" "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " "zasugerowane ich usunięcie. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Usunąć niepotrzebne pakiety?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Pomiń ten krok" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Usuń" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,31 +434,31 @@ msgstr "" "poniższych wiadomościach. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +471,19 @@ msgstr "" "być odnaleziony.\n" "To wskazuje na poważny problem, proszę zgłosić ten błąd." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Pytanie o potwierdzenie" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Aktualizacja w toku" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." @@ -619,7 +619,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" @@ -925,47 +925,48 @@ msgid "Version %s: \n" msgstr "Wersja %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Pobieranie informacji o zmianach..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "Sp_rawdź" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Rozmiar do pobrania: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -973,40 +974,40 @@ msgstr[0] "Ilość dostępnych aktualizacji: %s" msgstr[1] "Ilość dostępnych aktualizacji: %s" msgstr[2] "Ilość dostępnych aktualizacji: %s" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Proszę czekać, to może chwilę potrwać." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Aktualizacja została ukończona." -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Sprawdź dostępne aktualizacje" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nowa wersja: %s (Rozmiar: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Wersja %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Twoja dystrybucja nie jest już wspierana" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1016,17 +1017,17 @@ msgstr "" "krytycznych aktualizacji. Zaktualizuj do nowszej wersji Ubuntu Linux. " "Odwiedź http://www.ubuntu.com po więcej informacji." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1037,11 +1038,12 @@ msgstr "" "get install -f\" w terminalu, aby naprawić ten problem." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" "\n" @@ -1067,34 +1069,30 @@ msgid "Starting update manager" msgstr "Rozpocząć aktualizację?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "_Przerwij pobieranie" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Zmiany" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Sp_rawdź" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Sprawdź kanały oprogramowania w poszukiwaniu nowych aktualizacji" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Opis" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Informacje o wydaniu" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1102,15 +1100,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Pokaż postęp pobierania poszczególnych plików" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Aktualizacje oprogramowania" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1118,37 +1116,37 @@ msgstr "" "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " "bezpieczeństwa i dostarczyć nowe funkcje." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Aktualizuj" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Zaktualizuj do najnowszej wersji Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "Sp_rawdź" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Wznów aktualizację" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Ukryj tę informację w przyszłości" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Instaluj aktualizacje" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Zmiany" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1646,6 +1644,9 @@ msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." +#~ msgid "Cancel _Download" +#~ msgstr "_Przerwij pobieranie" + #~ msgid "Some software no longer officially supported" #~ msgstr "Niektóre programy nie są już oficjalnie wspierane" diff --git a/po/pt.po b/po/pt.po index dc4e9a6a..46d36d9f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-24 10:17+0000\n" "Last-Translator: Joao Carvalhinho \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -160,20 +160,20 @@ msgstr "" "este software. Por favor corrija-os usando o synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível actualizar os meta-pacotes necessários" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "reporte este erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "rede transitório. Pode tentar novamente mais tarde. Verifique abaixo uma " "lista de pacotes não autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Impossível de instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "A ler a cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrada" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +287,11 @@ msgstr "" "Se escolher \"não\" a actualização irá ser cancelada." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -305,11 +305,11 @@ msgstr "" "Deverão ser adicionadas entradas para '%s'? Se seleccionar 'Não' a " "actualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,11 +317,11 @@ msgstr "" "A actualização da informação de repositório resultou num ficheiro inválido. " "Por favor reporte este erro." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Fontes de terceiros desactivadas" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -332,11 +332,11 @@ msgstr "" "reactivá-las depois da actualização com a ferramenta 'propriedades-software' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Erro durante a actualização" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +345,11 @@ msgstr "" "tipo de problema na rede, por favor verifique a sua ligação à rede e volte a " "tentar." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Não existe espaço livre em disco suficiente" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -361,15 +361,15 @@ msgstr "" "usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Impossível de instalar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -381,11 +381,11 @@ msgstr "" "A actualização abortará agora. O seu sistema poderá estar num estado " "inutilizável. Foi efectuada uma recuperação (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Impossível de descarregar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +393,11 @@ msgstr "" "A actualização abortará agora. Por favor verifique a sua ligação à internet " "ou media de instalação e volte a tentar. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -412,23 +412,23 @@ msgstr "" "Se não tem o repositório 'universe' activo será sugerida a remoção destes " "pacotes no próximo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Saltar Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Erro ao submeter" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -437,32 +437,32 @@ msgstr "" "abaixo para mais informação. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "A Actualizar informação de repositórios" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Informação de pacotes inválida" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +475,19 @@ msgstr "" "pacote essencial '%s'.\n" "Isto indica um erro sério, por favor reporte este problema." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "A pedir confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "A actualizar" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." @@ -621,7 +621,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" @@ -927,87 +927,88 @@ msgid "Version %s: \n" msgstr "Versão %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "A descarregar lista de alterações..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Verificar" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Pode instalar %s actualização" msgstr[1] "Pode instalar %s actualizações" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Por favor aguarde, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "A actualização está completa" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Verificar por actualizações disponíveis" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nova versão: %s (Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versão %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "A sua distribuição já não é suportada" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1017,17 +1018,17 @@ msgstr "" "versão mais recente do Ubuntu Linux. Veja http://www.ubuntu.com para mais " "informação em como actualizar." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "O índice de software está quebrado" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1038,11 +1039,12 @@ msgstr "" "consola para corrigir este problema em primeiro lugar." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Tem de verificar por actualizações manualmente\n" "\n" @@ -1068,34 +1070,30 @@ msgid "Starting update manager" msgstr "Iniciar a actualização?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Cancelar _Descarregamento" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Alterações" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "Verific_ar" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Verificar os repositórios de software por novas actualizações" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Descrição" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Notas de lançamento" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1103,15 +1101,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Mostrar progresso de ficheiros individuais" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Actualizações de Software" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1119,37 +1117,37 @@ msgstr "" "Actualizações de software podem corrigir erros, eliminar problemas de " "segurança, e fornecer novas funcionalidades." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "A_ctualização" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Actualize para a última versão do Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Verificar" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Retomar Actualização?" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Ocultar esta informação no futuro" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Instalar Actualizações" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Alterações" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1646,6 +1644,9 @@ msgstr "Software compatível-DFSG com Dependências Não-Livres" msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Cancelar _Descarregamento" + #~ msgid "Some software no longer officially supported" #~ msgstr "Algum software já não é suportado oficialmente" diff --git a/po/pt_BR.po b/po/pt_BR.po index 2a927beb..e58bc03e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-26 22:31+0000\n" "Last-Translator: KurtKraut \n" "Language-Team: Ubuntu-BR \n" @@ -164,20 +164,20 @@ msgstr "" "programa. Por favor, arrume-os primeiro usando o Synaptic ou apt-get antes " "de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível atualizar os meta-pacotes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Não foi possível calcular a atualização" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "favor reporte isto como um erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "de rede. Você pode tentar de novo depois. Veja abaixo uma lista dos pacotes " "não-autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Não foi possível instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +217,11 @@ msgstr "" "um erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Não foi possível adivinhar o meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -255,11 +255,11 @@ msgstr "" msgid "Reading cache" msgstr "Lendo cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrado" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +291,11 @@ msgstr "" "Se você selecionar 'não' a atualização será cancelada." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Gerar sources padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,11 +309,11 @@ msgstr "" "Entradas padrões para '%s' devem ser adicionadas? Se você escolher 'Não' a " "atualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -321,11 +321,11 @@ msgstr "" "Atualizando a informações de repositórios resultou em um arquivo inválido. " "Por favor reporte isso como um erro." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Fontes de terceiros desabilitadas" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -336,11 +336,11 @@ msgstr "" "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " "programa' ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Erro durante a atualização" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +349,11 @@ msgstr "" "problemas de rede, por favor verifique a sua conexão de rede e tente " "novamente." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Não há espaço suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +365,15 @@ msgstr "" "instalações anteriores usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -385,11 +385,11 @@ msgstr "" "A atualização será abortada agora. Seu sistema pode estar em um estado " "instável. Uma recuperação é executada (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Não foi possível obter as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -397,11 +397,11 @@ msgstr "" "A atualização será abortada agora. Por favor verifique sua conexão à " "Internet ou mídia de instalação e tente de novo. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -416,23 +416,23 @@ msgstr "" "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " "sugeridos à remoção no próximo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Pular Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -441,32 +441,32 @@ msgstr "" "abaixo para maiores informações. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Reiniciando o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Verificando o Gerenciador de Pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Atualizando informação do repositório" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Invalid package information" msgstr "Informação do pacote inválida" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -479,19 +479,19 @@ msgstr "" "não pôde mais ser encontrado.\n" "Isto indica um sério erro, por favor reporte isso como um erro." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Pedindi por confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Atualizando" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "A Atualização do Sistema está completa." @@ -622,7 +622,7 @@ msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" @@ -932,87 +932,88 @@ msgid "Version %s: \n" msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Obtendo a lista de alterações" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Verificar" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Você pode instalar %s atualização" msgstr[1] "Você pode instalar %s atualizações" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Por favor, espere, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Atualização completa" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Procurar updates disponíveis" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "New version: %s (Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Sua distribuição não é mais suportada" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1022,17 +1023,17 @@ msgstr "" "falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. " "Veja http://www.ubuntu-br.org" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "A índex de software está quebrado" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1043,11 +1044,12 @@ msgstr "" "em um terminal para resolver esse problema primeiro." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Você deve verificar as atualizações manualmente\n" "\n" @@ -1073,34 +1075,30 @@ msgid "Starting update manager" msgstr "Iniciar a Atualização?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Cancelar _Download" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Mudanças" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Verificar" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Verificar os canais de software por novas atualizações" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Descrição" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Notas de Versão" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1108,15 +1106,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Exibir progresso de arquivos únicos" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Atualizações de Programas" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1124,38 +1122,38 @@ msgstr "" "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " "segurança, e prover novas funcionalidades para você." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 #, fuzzy msgid "U_pgrade" msgstr "At_ualizar" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Atualizar para a última versão do Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Verificar" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "Continua_r Atualização" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Ocultar esta informação no futuro" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Instalar Atualizações" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Mudanças" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1655,6 +1653,9 @@ msgstr "Programa compatível com a DFSG mas com dependências não-livres" msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "Cancelar _Download" + #~ msgid "Some software no longer officially supported" #~ msgstr "Alguns softwares não são mais oficialmente suportado." diff --git a/po/ro.po b/po/ro.po index 32441a57..6deb2735 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-24 17:39+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -168,20 +168,20 @@ msgstr "" "program. Înainte de a continua vă rugăm să le remediaţi utilizând synaptic " "sau apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -190,24 +190,24 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 #, fuzzy msgid "Error authenticating some packages" msgstr "Eroare la autentificarea unor pachete." -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Nu pot instala '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -217,11 +217,11 @@ msgstr "" "(eroare). " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -253,11 +253,11 @@ msgstr "" msgid "Reading cache" msgstr "Citire cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -265,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -282,11 +282,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,42 +295,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Eroare în timpul actualizării" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Spaţiu liber insuficient" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -339,15 +339,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Nu s-au putut instalat upgrade-urile" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -356,21 +356,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Nu pot descărca actualizările" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -379,55 +379,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "Şter_ge" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Restoring original system state" msgstr "Se reface starea iniţială a sistemului" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -437,19 +437,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Se actualizează" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" @@ -570,7 +570,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" @@ -864,46 +864,46 @@ msgstr "Versiunea %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Se descarcă listă schimbărilor..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -911,58 +911,58 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_Instalează actualizarile" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Versiunea nouă: %s (Mărime: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Versiunea %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Distribuţia dvs. nu mai este suportată" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -974,7 +974,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -998,34 +998,30 @@ msgstr "" "%s" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Modificări" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Descriere" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1033,53 +1029,53 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Actualizări software" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 #, fuzzy msgid "U_pgrade" msgstr "_Actualizează" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Continuă Actualizarea" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "_Instalează actualizarile" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Modificări" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/ru.po b/po/ru.po index 4b799c1e..07dbd13d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-25 19:23+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -161,20 +161,20 @@ msgstr "" "данной программой. Пожалуйста, исправьте их, используя synaptic или apt-get, " "прежде чем продолжить." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Невозможно обновить требуемые мета-пакеты" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "кратковременная проблема с сетью и стоит попробовать позже. Ниже приведен " "список пакетов, не прошедших проверку." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Невозможно установить '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "ошибке. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -251,11 +251,11 @@ msgstr "" msgid "Reading cache" msgstr "Чтение кэша" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +263,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Не найдено действующее зеркало" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +287,11 @@ msgstr "" "Ответ 'Нет' отменит обновление." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +304,11 @@ msgstr "" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Информация о репозитории неверна" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +316,11 @@ msgstr "" "В результате обновления информации о репозиториях образовался неверный файл. " "Пожалуйста отправьте отчет об ошибке." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Источники третьих сторон отключены" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -331,11 +331,11 @@ msgstr "" "обновления вы можете снова включить их с помощью утилиты 'software-" "properties' или synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Ошибка при обновлении" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "При обновлении возникла проблема. Обычно это бывает вызвано проблемами в " "сети, проверьте сетевые подключения и повторите попытку." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Недостаточно свободного места на диске" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "предыдущих установок с помощью команды 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Невозможно установить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Обновление прервано. Система, возможно, находится в неработоспособном " "состоянии. Запущено восстановление системы (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Невозможно загрузить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Обновление прервано. Проверьте соединение с Интернет или установочный диск и " "попробуйте снова. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,23 +410,23 @@ msgstr "" "Если у вас не подключен репозиторий 'universe', на следующем шаге вам " "предложат удалить эти пакеты. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Пропустить этот шаг" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Удалить" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Ошибка при фиксировании" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,31 +435,31 @@ msgstr "" "ниже. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Обновление информации о репозитории" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Неверная информация о пакете" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -472,19 +472,19 @@ msgstr "" "найден.\n" "Это говорит о серьезной проблеме, пожалуйста отправьте отчет об ошибке." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Запрос подтверждения" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Обновление" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Обновление системы завершено." @@ -619,7 +619,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" @@ -924,47 +924,48 @@ msgid "Version %s: \n" msgstr "Версия %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Загрузка списка изменений..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "Проверить" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Размер загружаемых данных: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -972,40 +973,40 @@ msgstr[0] "Вы можете установить %s обновление" msgstr[1] "Вы можете установить %s обновления" msgstr[2] "Вы можете установить %s обновлений" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Пожалуйста подождите, это может занять некоторое время." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Обновление завершено" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Установить обновления" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Новая версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Версия %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Ваша версия Ubuntu больше не поддерживается" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1015,17 +1016,17 @@ msgstr "" "обновления. Обновите систему до более поздней версии Ubuntu Linux. Для " "получения информации об обновлении посетите http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Индекс программ поврежден" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1036,11 +1037,12 @@ msgstr "" "apt-get install -f\"." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Вы должны проверить обновления вручную\n" "\n" @@ -1065,34 +1067,30 @@ msgid "Starting update manager" msgstr "Начать обновление?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Отменить _загрузку" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Изменения" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Проверить" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Проверить каналы приложений на наличие обновлений" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Описание" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Сведения о релизе" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1100,15 +1098,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Показывать прогресс для отдельных файлов" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Обновления программ" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1116,37 +1114,37 @@ msgstr "" "Обновления программ исправляют ошибки, уязвимости и добавляют новые " "возможности." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "Обновить" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Обновить систему до последней версии Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "Проверить" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Продолжить обновление" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "Не показывать эту информацию в дальнейшем" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "Установить обновления" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Изменения" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1640,6 +1638,9 @@ msgstr "DFSG-совместимое ПО с зависимостями от не msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" +#~ msgid "Cancel _Download" +#~ msgstr "Отменить _загрузку" + #~ msgid "Some software no longer officially supported" #~ msgstr "Некоторые программы больше не поддерживаются официально" diff --git a/po/rw.po b/po/rw.po index eecc39d9..e643590d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:44+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -165,20 +165,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -188,23 +188,23 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -212,11 +212,11 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -243,11 +243,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -255,11 +255,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -272,11 +272,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -285,43 +285,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "i Urufunguzo" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -370,55 +370,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "Muyobozi ni" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -428,20 +428,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "Byarangiye" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -560,7 +560,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" @@ -856,103 +856,103 @@ msgstr "Verisiyo \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Iyimura... i" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Verisiyo \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ikwirakwiza... ni Oya" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -964,7 +964,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -980,34 +980,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Amahinduka" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Isobanuramiterere" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1015,53 +1011,53 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Ibihuzagihe bya porogaramumudasobwa" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 #, fuzzy msgid "U_pgrade" msgstr "Byarangiye" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "Byarangiye" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "Kwinjiza porogaramu" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Amahinduka" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/sk.po b/po/sk.po index 9d6153c3..7d854094 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-24 17:32+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -160,20 +160,20 @@ msgstr "" "Váš systém obsahuje poškodené balíky, ktoré nemôžu byť týmto programom " "opravené. Pred pokračovaním ich opravte programom synaptic alebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Nemôžem aktualizovať požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "ako chybu. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -199,23 +199,23 @@ msgstr "" "problémom v sieti. Môžete to opäť skúsiť neskôr. Nižšie je uvedený zoznam " "neoverených balíčkov." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Nemôžem inštalovať '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -248,11 +248,11 @@ msgstr "" msgid "Reading cache" msgstr "Čítam vyrovnávaciu pamäť cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Nebol nájdený vhodný server" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -284,11 +284,11 @@ msgstr "" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -302,11 +302,11 @@ msgstr "" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Neplatná informácia o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -314,11 +314,11 @@ msgstr "" "Aktualizácia informácií o zdrojoch softvéru skončila neplatným súborom. " "Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Zdroje tretích strán sú zakázané" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -329,11 +329,11 @@ msgstr "" "Môžete ich povoliť po upgrade pomocou nástroja 'vlastnosti-softwaru' alebo " "pomocou synapticu." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Chyba počas aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +341,11 @@ msgstr "" "Počas aktualizácie sa objavil problém, ktorý je zvyčajne spôsobený chybou " "sieťového pripojenia, preto skontrolujte vaše pripojenie a skúste znova." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Nedostatok voľného miesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +357,15 @@ msgstr "" "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +377,11 @@ msgstr "" "Aktualizácia teraz skončí. Váš systém môže byť v nepoužiteľnom stave, preto " "bol spustený príkaz na zotavenie sa z tohto stavu (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť požadované balíky" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +389,11 @@ msgstr "" "Aktualizácia bola neočakávane prerušená. Skontrolujte svoje internetové " "pripojenie alebo inštalačné médiá a skúste znova. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -408,23 +408,23 @@ msgstr "" "Pokiaľ nemáte zapnutý komunitou spravovaný zdroj softvéru 'universe', budú " "tieto balíky v ďalšom kroku navrhnuté na odstránenie. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Preskočiť tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Odstrániť" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,31 +433,31 @@ msgstr "" "uvedené správy. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Kontrola správcu balíkov" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Aktualizácia informácií o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -470,19 +470,19 @@ msgstr "" "s'.\n" "To znamená závažný problém. Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Požaduje sa potvrdenie" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Prebieha aktualizácia" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." @@ -617,7 +617,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" @@ -922,47 +922,48 @@ msgid "Version %s: \n" msgstr "Verzia %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Získava sa zoznam zmien..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Skontrolovať" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Veľkosť na stiahnutie: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -970,40 +971,40 @@ msgstr[0] "Môžete nainštalovať %s aktualizáciu" msgstr[1] "Môžete nainštalovať %s aktualizácie" msgstr[2] "Môžete nainštalovať %s aktualizácií" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Čakajte prosím, toto môže chvíľu trvať." -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Aktualizácia je dokončená" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Kontrolujem aktualizácie..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Nová verzia: %s (veľkosť: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Verzia %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Vaša distribúcia už nie je podporovaná" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1014,17 +1015,17 @@ msgstr "" "Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." "com.\"" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Index softvéru je poškodený" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1035,11 +1036,12 @@ msgstr "" "spustite 'sudo apt-get install -f' v termáli." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Musíte kontrolovať aktualizácie·manuálne\n" "\n" @@ -1065,34 +1067,30 @@ msgid "Starting update manager" msgstr "Spustiť aktualizáciu?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "_Zrušiť sťahovanie" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Zmeny" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Skontrolovať" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Skontrolovať, či zdroje softvéru neobsahujú nové aktualizácie" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Popis" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Poznámky k vydaniu" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1100,15 +1098,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Zobraziť priebeh jednotlivých súborov" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Aktualizácie softvéru" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1116,37 +1114,37 @@ msgstr "" "Softvérové aktualizácie opravujú chyby, odstraňujú bezpečnostné " "zraniteľnosti alebo poskytujú nové vlastnosti." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Aktualizovať" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Aktualizovať na najnovšiu verziu Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Skontrolovať" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_Pokračovať v aktualizácii" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Túto správu už viac nezobrazovať" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "Nainštalovať _aktualizácie" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Zmeny" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1647,6 +1645,9 @@ msgstr "Softvér kompatibilný s DFSG bez závislostí na neslobodnom softvére" msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" +#~ msgid "Cancel _Download" +#~ msgstr "_Zrušiť sťahovanie" + #~ msgid "Some software no longer officially supported" #~ msgstr "Niektoré programy už nie sú viac oficiálne podporované" diff --git a/po/sr.po b/po/sr.po index 420a0fa4..5545e7b8 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-27 12:27+0000\n" "Last-Translator: Dejan Milosavljevic \n" "Language-Team: Serbian \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -229,11 +229,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,54 +355,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,19 +412,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -548,7 +548,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -830,46 +830,46 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -877,56 +877,56 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -938,7 +938,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -954,34 +954,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -989,49 +985,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/sv.po b/po/sv.po index a1bac353..b37ec06b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:18+0000\n" "Last-Translator: Robin Sonefors \n" "Language-Team: Swedish \n" @@ -164,20 +164,20 @@ msgstr "" "programmet. Reparera dem först med synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Kan inte uppdatera obligatoriska meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppdateringen" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "vänlig rapportera detta som en bugg. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista " "med icke autentisierade paket." -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Kan inte installera \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +217,11 @@ msgstr "" "rapportera detta som en bugg. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -255,11 +255,11 @@ msgstr "" msgid "Reading cache" msgstr "Läser cache" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Hittade ingen giltig serverspegel" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +291,11 @@ msgstr "" "Om du väljer \"nej\" kommer uppdateringen avbrytas." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "Lägg till standardförråd?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +308,11 @@ msgstr "" "Ska standardposter för \"%s\" läggas till? Om du väljer \"Nej\" kommer " "uppdateringen avbrytas." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Information om förråd ogiltig" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,11 +320,11 @@ msgstr "" "Uppdatering av förrådsinformationen orsakade en ogiltig fil. Var vänlig " "rapportera detta som en bugg." -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Tredjepartskällor inaktiverade" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -335,11 +335,11 @@ msgstr "" "aktivera dem efter uppgraderingen med verktyget \"software-properties\" " "eller med synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Fel vid uppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -348,11 +348,11 @@ msgstr "" "av nätverksproblem, var god kontrollera din nätverksanslutning och försök " "igen." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Inte tillräckligt med ledigt diskutrymme" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +364,15 @@ msgstr "" "använda 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppdateringen?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -384,11 +384,11 @@ msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " "En återställning kördes (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Det gick inte ladda ner uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +396,11 @@ msgstr "" "Uppdateringen avbryts nu. Var god kontrollera din internetanslutning eller " "ditt installationsmedia och försök igen. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -413,23 +413,23 @@ msgstr "" "gemenskapsunderhållna ('universe').Om du inte har 'universe' aktiverat " "kommer dessa paket föreslås för borttagning i nästa steg. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_Hoppa över det här steget" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Ta bort" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "Fel inträffade vid utförandet" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,31 +438,31 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "Återställer systemstatus" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Ogiltig paketinformation" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +475,19 @@ msgstr "" "nödvändiga paketet \"%s\" längre.\n" "Det här tyder på ett alvarligt fel, var god och rapportera detto som en bugg." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Ber om bekräftelse" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Uppgraderar" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Söker efter föråldrad mjukvara" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." @@ -618,7 +618,7 @@ msgstr "Stäng alla öppna program och dokument för att undvika dataförlust." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" @@ -931,90 +931,91 @@ msgid "Version %s: \n" msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "Hämtar lista med ändringar..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 #, fuzzy msgid "_Uncheck All" msgstr "_Uppdatera alla" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "_Kontrollera" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 #, fuzzy msgid "None" msgstr "en" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 #, fuzzy msgid "1 KB" msgstr "%d kB" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, fuzzy, python-format msgid "%.0f KB" msgstr "%.2f MB" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, fuzzy, python-format msgid "%.1f MB" msgstr "%.2f MB" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "Nerladdningsstorlek: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installera %s uppdatering" msgstr[1] "Du kan installera %s uppdateringar" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "Var god vänta, det här kan ta lite tid" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "Uppdateringen är färdig" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Kontrollera efter tillgängliga uppdateringar" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "Ny version: %s (Storlek: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s:" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, fuzzy, python-format msgid "(Size: %s)" msgstr "Storlek:" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "Din distribution stöds inte längre" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -1024,17 +1025,17 @@ msgstr "" "till en senare version av Ubuntu Linux. Se http://www.ubuntu.com för mer " "information om att uppgradera." -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "Indexet för program är trasigt" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -1045,11 +1046,12 @@ msgstr "" "terminal för att rätta till det här problemet först." #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "Du måste titta efter uppdateringar manuellt\n" "\n" @@ -1075,34 +1077,30 @@ msgid "Starting update manager" msgstr "Starta uppgraderingen?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Avbryt _nedladdningen" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Ändringar" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "_Kontrollera" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "Kontrollera programvarukanalerna efter nya uppdateringar" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Beskrivning" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "Versionsinformation" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1110,15 +1108,15 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "Visa förlopp för enstaka filer" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Programvaruuppdateringar" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." @@ -1126,37 +1124,37 @@ msgstr "" "Mjukvaruuppdateringar fixar fel, eliminerar säkerhetsproblem och ger dig nya " "funktioner." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_Uppdateringar" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "Uppdatera till senaste versionen av Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Kontrollera" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "Distribution:" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_Dölj denna information i framtiden" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_Installera uppdateringar" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Ändringar" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "updates" msgstr "Uppdateringar" @@ -1658,6 +1656,9 @@ msgstr "DFSG-kompatibel programvara med icke-fria beroenden" msgid "Non-DFSG-compatible Software" msgstr "Inte DFSG-kompatibel programvara" +#~ msgid "Cancel _Download" +#~ msgstr "Avbryt _nedladdningen" + #~ msgid "Some software no longer officially supported" #~ msgstr "Viss programvara har inte längre officiellt stöd" diff --git a/po/th.po b/po/th.po index 1d7c9bae..6fdad89c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-24 16:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -157,20 +157,20 @@ msgstr "" "ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " "หรือ apt-get ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "ไม่สามารถปรับปรุง meta แพกเกจที่ต้องการได้" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,11 +180,11 @@ msgid "" msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -193,23 +193,23 @@ msgstr "" "ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " "คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "ไม่สามารถติดตั้ง '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -242,11 +242,11 @@ msgstr "" msgid "Reading cache" msgstr "กำลังอ่านจากที่เก็บชั่วคราว" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -254,11 +254,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "ไม่เจอเซิรฟ์เวอร์เสริม(mirror)" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -277,11 +277,11 @@ msgstr "" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "สร้าง default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -293,21 +293,21 @@ msgstr "" "\n" "ควรเพิ่มรายการสำหรับ '%s' หรือไม่?ถ้าคุณเลือก 'No' การปรับปรุงจะถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บข้อมูลใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "แหล่งอื่นๆใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -318,11 +318,11 @@ msgstr "" "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรม synaptic" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "เกิดข้อผิดพลาดขณะปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -330,11 +330,11 @@ msgstr "" "มีปัญหาเกิดขึ้นขณะทำการปรับปรุง โดยปกติแล้วจะเป็นปัญหาด้านเครือข่าย " "กรุณาตรวจสอบการสื่อสารในเครือข่ายของคุณแล้วลองใหม่อีกที" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "ไม่มีพื้นที่ว่างในดิสก์เพียงพอ" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgstr "" "เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +365,11 @@ msgstr "" "การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" "configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +377,11 @@ msgstr "" "การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " "mediaและลองอีกครั้ง " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -395,55 +395,55 @@ msgstr "" "\\n\n" "ถ้าคุณไม่ได้เลือกใช้แหล่งข้อมูล 'universe' แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "_ข้ามขั้นตอนนี้" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "เ_อาออก" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Restoring original system state" msgstr "เริ่มระบบใหม่อีกครั้ง" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -455,19 +455,19 @@ msgstr "" "หลังจากการปรับปรุงข้อมูลของแพจเกจ แพจเกจที่จำเป็น '%s'ได้หายไป\n" "นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานว่าเป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "_ถามการยืนยันจากคุณก่อน" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "กำลังปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" @@ -593,7 +593,7 @@ msgstr "เพื่อป้องกันข้อมูลสูญหาย #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" @@ -886,86 +886,87 @@ msgid "Version %s: \n" msgstr "รุ่น %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "กำลังดาวน์โหลดรายการของการเปลี่ยนแปลง..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "เ_ลือก" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "ขนาดดาวน์โหลด: %s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "คุณสามารถติดตั้ง %s รายการปรับปรุง" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "กรุณารอสักครู่ นี่อาจจะใช้เวลาสักหน่อย" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "ปรับปรุงเสร็จสิ้นแล้ว" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "_ติดตั้งปรัยปรุง" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "รุ่นใหม่: %s (ขนาด: %s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "รุ่น %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "ชุดเผยแพร่(distribution)ของคุณไม่มีบริการสนับสนุนแล้ว" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -975,17 +976,17 @@ msgstr "" "ปรับปรุงขึ้นไปรุ่นถัดไปของอูบันตูลีนุกซ์ กรุณาอ่าน http://www.ubuntu.com " "สำหรับรายละเอียดเพิ่มเติมในการปรับปรุงรุ่น" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -995,11 +996,12 @@ msgstr "" "คำสั่ง \"sudo apt-get install -f\" ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "คุณต้องตรวจหารายการปรับปรุงด้วยตนเอง\n" "\n" @@ -1024,34 +1026,30 @@ msgid "Starting update manager" msgstr "เริ่มการปรับปรุงหรือไม่?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "ยกเลิก_ดาวน์โหลด" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "เปลี่ยนแปลง" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "ต_รวจ" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "ตรวจช่องซอฟแวร์สำหรับรายการปรับปรุงใหม่" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "คำบรรยาย" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "บันทึกรายการปรับปรุง" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1059,51 +1057,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "แสดงการคืบหน้าของแต่ละไฟล์" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "ซอฟต์แวร์ปรับปรุง" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "_ปรับปรุง" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "ปรับปรุงให้เป็นรุ่นล่าสุดของอูบันตู" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "เ_ลือก" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "_ซ่อนข้อมูลนี้ในคราวหน้า" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "_ติดตั้งปรัยปรุง" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "เปลี่ยนแปลง" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1591,6 +1589,9 @@ msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอ msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" +#~ msgid "Cancel _Download" +#~ msgstr "ยกเลิก_ดาวน์โหลด" + #~ msgid "Some software no longer officially supported" #~ msgstr "ซอฟแวร์บางตัวไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" diff --git a/po/tr.po b/po/tr.po index 422f1414..f4587c10 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Özgur KIRCALI \n" "Language-Team: Turkish \n" @@ -158,20 +158,20 @@ msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları synaptic veya apt-get kullanarak düzeltin." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -180,34 +180,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "'%s' yüklenemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -239,11 +239,11 @@ msgstr "" msgid "Reading cache" msgstr "Önbellek okunuyor" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -251,11 +251,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "Geçerli yansı bulunamadı" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -268,11 +268,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -285,32 +285,32 @@ msgstr "" "'%s' için varsayılan girişler eklensin mi? Eğer 'Hayır'ı seçerseniz, " "güncelleştirme iptal edilecektir." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "Üçüncü parti kaynaklar devredışı bırakıldı" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "Güncelleştirme sırasında hata" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -318,11 +318,11 @@ msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı kontrol edin ve yeniden deneyin." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -331,15 +331,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -348,11 +348,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -360,11 +360,11 @@ msgstr "" "Yükseltme şimdi iptal edilecek. Lütfen internet bağlantınızı veya kurulum " "ortamınızı kontrol edin ve yeniden deneyin. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -373,54 +373,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "Bu Adımı _Atla" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "_Kaldır" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,19 +430,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "Yükseltiliyor" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." @@ -561,7 +561,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -847,101 +847,101 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -953,7 +953,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -974,34 +974,30 @@ msgid "Starting update manager" msgstr "Yükseltme başlatılsın mı?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1009,49 +1005,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/uk.po b/po/uk.po index cf7c4fa6..ef1f27c8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Serhey Kusyumoff \n" "Language-Team: Ukrainian \n" @@ -157,20 +157,20 @@ msgstr "" "Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " "цією програмою. Скористайтесь перш програмами synaptic чи apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "Не можливо поновити необхідні meta-пакунки" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "Це призведе довидалення базового пакунку системи" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,23 +180,23 @@ msgid "" msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "Не можливо встановити '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -204,11 +204,11 @@ msgid "" msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -238,11 +238,11 @@ msgstr "" msgid "Reading cache" msgstr "Зчитування кешу" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -250,12 +250,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 #, fuzzy msgid "No valid mirror found" msgstr "Не знайдено" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -268,11 +268,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -281,43 +281,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "Помилка в даних про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "Помилка підчас поновлення" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "Недостатньо місця на диску" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -326,15 +326,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати апгрейд системи?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "Неможливо провести апргрейд системи" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -347,11 +347,11 @@ msgstr "" "Виконайте команду 'sudo apt-get install -f', або скористайдесь програмою " "Synaptic для налаштування системи." -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "Неможливо завантажити пакунки для апргрейду системи" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -359,11 +359,11 @@ msgstr "" "Апргрейд системи щойно перервано. Будь ласка, перевірте зєднання з " "інтернетом чи носії та спробуйте знов. " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -372,24 +372,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 #, fuzzy msgid "Remove obsolete packages?" msgstr "Видалити непотрібні пакунки?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -398,32 +398,32 @@ msgstr "" "нижче. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Restoring original system state" msgstr "Перезавантаження системи" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "Отримання інформації про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -433,20 +433,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "Запит підтвердження" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "Оновлення завершено" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "Пошук програм, що не використовуються" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "Апргрейд системи завершено." @@ -578,7 +578,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" @@ -882,46 +882,46 @@ msgstr "Версія %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Завантаження змін" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -929,59 +929,59 @@ msgstr[0] "Неможливо провести апргрейд системи" msgstr[1] "Неможливо провести апргрейд системи" msgstr[2] "Неможливо провести апргрейд системи" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 #, fuzzy msgid "Update is complete" msgstr "Завантадення пакунків завершено" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Встановлення оновлень..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Версія %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ваш дистрибутив вже не підтримується" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -993,7 +993,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -1010,34 +1010,30 @@ msgid "Starting update manager" msgstr "Почати апгрейд системи?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "Скасувати _Завантаження" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Зміни" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Опис" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1045,52 +1041,52 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Оновлення програм" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "П_родовжити апгрейд системи" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "Встановлення оновлень..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Зміни" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1587,6 +1583,9 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Cancel _Download" +#~ msgstr "Скасувати _Завантаження" + #~ msgid "Could not find any upgrades" #~ msgstr "Не знайдено пакунків для апгрейду" diff --git a/po/update-manager.pot b/po/update-manager.pot index 56bd51a9..f054728d 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +411,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -544,7 +544,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -826,102 +826,102 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -933,7 +933,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -949,34 +949,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -984,49 +980,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/ur.po b/po/ur.po index 5b170945..d367822b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -229,11 +229,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,54 +355,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,19 +412,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -545,7 +545,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -827,102 +827,102 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -934,7 +934,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -950,34 +950,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -985,49 +981,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/urd.po b/po/urd.po index 3d403f41..03971833 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -229,11 +229,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,54 +355,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,19 +412,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -545,7 +545,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -827,102 +827,102 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -934,7 +934,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -950,34 +950,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -985,49 +981,49 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/vi.po b/po/vi.po index d1f26a40..652426cb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -154,20 +154,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -177,23 +177,23 @@ msgid "" msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -201,11 +201,11 @@ msgid "" msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,11 +232,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,43 +274,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -319,15 +319,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -336,21 +336,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -359,55 +359,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "Một bộ quản lý gói khác đang chạy" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,20 +417,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "Nâng cấp xong" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -549,7 +549,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." @@ -846,103 +846,103 @@ msgstr "Phiên bản %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "Đang tải các thay đổi" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "Phiên bản %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Không còn hỗ trợ lại bản phát hành của bạn." -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -954,7 +954,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -970,34 +970,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "Đổi" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Mô tả" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1005,51 +1001,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "Bản cập nhật phần mềm" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "Đổi" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/xh.po b/po/xh.po index 60067ee2..2c456286 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-04-20 19:15+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -229,11 +229,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,54 +355,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,19 +412,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -545,7 +545,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "" @@ -832,103 +832,103 @@ msgid "Version %s: \n" msgstr "" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -940,7 +940,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -956,34 +956,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -991,51 +987,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 #, fuzzy msgid "Software Updates" msgstr "Bonisa izihlaziyo" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "Bonisa izihlaziyo" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 3ad9723b..8069516f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-30 14:16+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -163,20 +163,20 @@ msgstr "" "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" "apt-get修复它们。" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "不能升级要求的元包" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "无法计算升级" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgid "" msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -199,23 +199,23 @@ msgstr "" "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" "件包的列表。" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "无法安装'%s'" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "无法猜出元包" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -247,11 +247,11 @@ msgstr "" msgid "Reading cache" msgstr "正在读取缓存" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -259,11 +259,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "未找到可用的镜像" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -280,11 +280,11 @@ msgstr "" "如果选'no'更新将被取消." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "生成默认的源?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -296,21 +296,21 @@ msgstr "" "\n" "添加用于'%s'的缺省条目?如果选择'No',升级将被取消." -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "源的信息无效" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升级源的信息时产生一个无效文件。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "第三方源被禁用" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -320,21 +320,21 @@ msgstr "" "源列表中一些第三方源被禁用.你可以在升级后用\"软件属性\"工具或新立得包管理器来" "重新启用它们." -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "升级时出错" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "升级时候出错。这通常是一些网络问题,请检查你的网络连接后再试。" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "磁盘空间不足" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgstr "" "get clean'命令来删除之前安装的临时软件包。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "无法安装升级" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,21 +365,21 @@ msgstr "" "升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" "a)。" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "无法下载升级包" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -392,54 +392,54 @@ msgstr "" "\n" "如果你没有启用'社区维护'源,下一步这些包将被建议移除. " -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "跳过这个步骤(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "删除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "确认时出错" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "正在检查软件包管理器" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "更新源的信息" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "无效的包信息" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -451,19 +451,19 @@ msgstr "" "包信息被更新后核心包'%s'没有找到.\n" "这标志着一个严重的错误,请报告bug." -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "请求确认" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "正在更新" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "寻找陈旧的软件包" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "系统更新完毕" @@ -589,7 +589,7 @@ msgstr "关闭所有打开的程序和文档以防止数据丢失。" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "您的系统已为最新" @@ -880,86 +880,87 @@ msgid "Version %s: \n" msgstr "版本 %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "正在下载更新列表..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "检查(_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "下载文件大小:%s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "你可以安装 %s 个更新" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "请稍等,这需要花一些时间。" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "检查有效的更新" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新版本:%s(大小:%s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "您的发行版不再被支持" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -969,17 +970,17 @@ msgstr "" "\r\n" "http://www.ubuntu.com 来获取更多有关升级的信息。" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "软件索引已被破坏" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -989,11 +990,12 @@ msgstr "" "get install -f\"来修正这个问题。" #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "你必须手动检测升级\n" "\n" @@ -1018,34 +1020,30 @@ msgid "Starting update manager" msgstr "开始升级?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "取消下载(_D)" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "变更" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "检查(_K)" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "检查软件频道以获得新的更新" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "描述" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "发布说明" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1053,51 +1051,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "显示单个文件进度" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "软件更新" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "软件更行可以为你修复错误,消除安全漏洞及提供新的特性" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "升级(_p)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "升级到最新版本的Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "检查(_C)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "继续升级(_R)" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "在以后隐藏该信息(_H)" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "安装更新(_I)" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "变更" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1593,6 +1591,9 @@ msgstr "带有非自由依赖关系的DFSG兼容软件" msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" +#~ msgid "Cancel _Download" +#~ msgstr "取消下载(_D)" + #~ msgid "Some software no longer officially supported" #~ msgstr "一些软件已经不在被官方支持." diff --git a/po/zh_HK.po b/po/zh_HK.po index 06195b80..36f91802 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -154,20 +154,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -177,23 +177,23 @@ msgid "" msgstr "你選定的密碼匙無法移除,請匯報問題。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -201,11 +201,11 @@ msgid "" msgstr "你選定的密碼匙無法移除,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,11 +232,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,43 +274,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 #, fuzzy msgid "Error during update" msgstr "移除密碼匙時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -319,15 +319,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -336,21 +336,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -359,55 +359,55 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 #, fuzzy msgid "Checking package manager" msgstr "另一個套件管理員正在執行中" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,20 +417,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Upgrading" msgstr "完成升級" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "" @@ -552,7 +552,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 #, fuzzy msgid "Your system is up-to-date" msgstr "系統已經在最新狀態!" @@ -847,104 +847,104 @@ msgstr "版本 %s: \n" #: ../UpdateManager/UpdateManager.py:521 #, fuzzy -msgid "Downloading the list of changes..." +msgid "Downloading list of changes..." msgstr "正在下載更改紀錄" -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 msgid "_Check All" msgstr "" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "正在安裝軟件更新..." -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, python-format msgid "From version %s to %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "已經不再支援你用的發行版本" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -956,7 +956,7 @@ msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" #: ../data/glade/UpdateManager.glade.h:4 @@ -972,34 +972,30 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "更改紀錄" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "詳細說明" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1007,51 +1003,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "軟件更新" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" msgstr "" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 #, fuzzy msgid "_Install Updates" msgstr "正在安裝軟件更新..." -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "更改紀錄" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 5bdfffd2..3f894738 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-23 00:48+0200\n" +"POT-Creation-Date: 2006-09-27 11:08+0200\n" "PO-Revision-Date: 2006-05-31 12:00+0000\n" "Last-Translator: PCMan \n" "Language-Team: Chinese (Taiwan) \n" @@ -156,20 +156,20 @@ msgstr "" "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " "synaptic 或 apt-get 來修恢它們。" -#: ../DistUpgrade/DistUpgradeCache.py:150 +#: ../DistUpgrade/DistUpgradeCache.py:183 msgid "Can't upgrade required meta-packages" msgstr "無法升級須要的元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:157 +#: ../DistUpgrade/DistUpgradeCache.py:193 msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:160 +#: ../DistUpgrade/DistUpgradeCache.py:196 msgid "Could not calculate the upgrade" msgstr "無法計算升級" -#: ../DistUpgrade/DistUpgradeCache.py:161 +#: ../DistUpgrade/DistUpgradeCache.py:197 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -179,11 +179,11 @@ msgid "" msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:186 +#: ../DistUpgrade/DistUpgradeCache.py:222 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" -#: ../DistUpgrade/DistUpgradeCache.py:187 +#: ../DistUpgrade/DistUpgradeCache.py:223 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 a list of " @@ -192,23 +192,23 @@ msgstr "" "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" "的套件。" -#: ../DistUpgrade/DistUpgradeCache.py:252 +#: ../DistUpgrade/DistUpgradeCache.py:288 #, python-format msgid "Can't install '%s'" msgstr "無法安裝‘%s’" -#: ../DistUpgrade/DistUpgradeCache.py:253 +#: ../DistUpgrade/DistUpgradeCache.py:289 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:260 +#: ../DistUpgrade/DistUpgradeCache.py:296 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:261 +#: ../DistUpgrade/DistUpgradeCache.py:297 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -240,11 +240,11 @@ msgstr "" msgid "Reading cache" msgstr "正在讀取快取" -#: ../DistUpgrade/DistUpgradeControler.py:147 +#: ../DistUpgrade/DistUpgradeControler.py:151 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:148 +#: ../DistUpgrade/DistUpgradeControler.py:152 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,11 +252,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:239 +#: ../DistUpgrade/DistUpgradeControler.py:244 msgid "No valid mirror found" msgstr "找不到有效的 mirror" -#: ../DistUpgrade/DistUpgradeControler.py:240 +#: ../DistUpgrade/DistUpgradeControler.py:245 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -275,11 +275,11 @@ msgstr "" "如果選擇「否」,則更新會被取消。" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:257 +#: ../DistUpgrade/DistUpgradeControler.py:262 msgid "Generate default sources?" msgstr "產生預設的來源?" -#: ../DistUpgrade/DistUpgradeControler.py:258 +#: ../DistUpgrade/DistUpgradeControler.py:263 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -291,21 +291,21 @@ msgstr "" "\n" "需要加入預設的 '%s' 項目嗎?如果你選擇「否」,更新將會被取消。" -#: ../DistUpgrade/DistUpgradeControler.py:292 +#: ../DistUpgrade/DistUpgradeControler.py:297 msgid "Repository information invalid" msgstr "無效的套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:293 +#: ../DistUpgrade/DistUpgradeControler.py:298 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升級套件庫時導致無效的檔案。請匯報問題。" -#: ../DistUpgrade/DistUpgradeControler.py:299 +#: ../DistUpgrade/DistUpgradeControler.py:304 msgid "Third party sources disabled" msgstr "停用第三方來源" -#: ../DistUpgrade/DistUpgradeControler.py:300 +#: ../DistUpgrade/DistUpgradeControler.py:305 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -315,21 +315,21 @@ msgstr "" "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" "properties' 工具或 synaptic升級後,你可以重新啟用它。" -#: ../DistUpgrade/DistUpgradeControler.py:349 +#: ../DistUpgrade/DistUpgradeControler.py:354 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:350 +#: ../DistUpgrade/DistUpgradeControler.py:355 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網路問題,試檢查網路連線及再試。" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:360 +#: ../DistUpgrade/DistUpgradeControler.py:365 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -340,15 +340,15 @@ msgstr "" "clean'來移除先前安裝套件時的暫存檔。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:419 +#: ../DistUpgrade/DistUpgradeControler.py:424 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:439 +#: ../DistUpgrade/DistUpgradeControler.py:444 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -360,21 +360,21 @@ msgstr "" "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" "configure -a)。" -#: ../DistUpgrade/DistUpgradeControler.py:458 +#: ../DistUpgrade/DistUpgradeControler.py:463 msgid "Could not download the upgrades" msgstr "無法下載升級套件" -#: ../DistUpgrade/DistUpgradeControler.py:459 +#: ../DistUpgrade/DistUpgradeControler.py:464 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常及再試 " -#: ../DistUpgrade/DistUpgradeControler.py:495 +#: ../DistUpgrade/DistUpgradeControler.py:500 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:496 +#: ../DistUpgrade/DistUpgradeControler.py:501 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -383,54 +383,54 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:531 +#: ../DistUpgrade/DistUpgradeControler.py:536 msgid "Remove obsolete packages?" msgstr "移除不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:532 +#: ../DistUpgrade/DistUpgradeControler.py:537 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:542 +#: ../DistUpgrade/DistUpgradeControler.py:547 msgid "Error during commit" msgstr "提交時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:543 +#: ../DistUpgrade/DistUpgradeControler.py:548 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Restoring original system state" msgstr "恢復原先的系統狀態" -#: ../DistUpgrade/DistUpgradeControler.py:609 +#: ../DistUpgrade/DistUpgradeControler.py:616 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:644 -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:651 +#: ../DistUpgrade/DistUpgradeControler.py:686 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:663 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:688 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Invalid package information" msgstr "無效的套件資訊" -#: ../DistUpgrade/DistUpgradeControler.py:689 +#: ../DistUpgrade/DistUpgradeControler.py:698 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -440,19 +440,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:701 +#: ../DistUpgrade/DistUpgradeControler.py:710 msgid "Asking for confirmation" msgstr "詢問以確認" -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:712 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Searching for obsolete software" msgstr "尋搜不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:717 +#: ../DistUpgrade/DistUpgradeControler.py:726 msgid "System upgrade is complete." msgstr "系統升級完成。" @@ -581,7 +581,7 @@ msgstr "避免遺失請關閉所有已開啟的程式及文件。" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:618 +#: ../UpdateManager/UpdateManager.py:621 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" @@ -873,87 +873,88 @@ msgid "Version %s: \n" msgstr "版本 %s: \n" #: ../UpdateManager/UpdateManager.py:521 -msgid "Downloading the list of changes..." +#, fuzzy +msgid "Downloading list of changes..." msgstr "正在下載修改紀錄..." -#: ../UpdateManager/UpdateManager.py:545 +#: ../UpdateManager/UpdateManager.py:548 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:551 +#: ../UpdateManager/UpdateManager.py:554 #, fuzzy msgid "_Check All" msgstr "檢查(_C)" #. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:582 +#: ../UpdateManager/UpdateManager.py:585 msgid "None" msgstr "" #. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:585 +#: ../UpdateManager/UpdateManager.py:588 msgid "1 KB" msgstr "" #. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:588 +#: ../UpdateManager/UpdateManager.py:591 #, python-format msgid "%.0f KB" msgstr "" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:591 +#: ../UpdateManager/UpdateManager.py:594 #, python-format msgid "%.1f MB" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:609 ../UpdateManager/UpdateManager.py:633 +#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 #, python-format msgid "Download size: %s" msgstr "下載大小:%s" -#: ../UpdateManager/UpdateManager.py:629 +#: ../UpdateManager/UpdateManager.py:632 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "您可以安裝 %s 個更新" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:662 +#: ../UpdateManager/UpdateManager.py:665 msgid "Please wait, this can take some time." msgstr "請稍候,這可能需要一點時間。" -#: ../UpdateManager/UpdateManager.py:664 +#: ../UpdateManager/UpdateManager.py:667 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:715 +#: ../UpdateManager/UpdateManager.py:718 #, fuzzy msgid "Checking for updates" msgstr "安裝更新套件(_I)" -#: ../UpdateManager/UpdateManager.py:822 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy, python-format msgid "From version %s to %s" msgstr "新版本:%s (大小:%s)" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:829 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:831 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:839 +#: ../UpdateManager/UpdateManager.py:842 msgid "Your distribution is not supported anymore" msgstr "您正使用的發行版本已不再支援" -#: ../UpdateManager/UpdateManager.py:840 +#: ../UpdateManager/UpdateManager.py:843 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 " @@ -962,17 +963,17 @@ msgstr "" "您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " "http://www.ubuntu.com以取得更多升級資訊。" -#: ../UpdateManager/UpdateManager.py:859 +#: ../UpdateManager/UpdateManager.py:862 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:894 +#: ../UpdateManager/UpdateManager.py:897 msgid "Software index is broken" msgstr "軟體索引損壞" -#: ../UpdateManager/UpdateManager.py:895 +#: ../UpdateManager/UpdateManager.py:898 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 terminal to fix " @@ -982,11 +983,12 @@ msgstr "" "apt-get install -f”來修正問題。" #: ../data/glade/UpdateManager.glade.h:1 +#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +"behavior in Software Sources on the Internet Updates tab." msgstr "" "您必須自行檢查更新\n" "\n" @@ -1010,34 +1012,30 @@ msgid "Starting update manager" msgstr "開始升級?" #: ../data/glade/UpdateManager.glade.h:7 -msgid "Cancel _Download" -msgstr "取消下載(_D)" - -#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes" msgstr "修改紀錄" -#: ../data/glade/UpdateManager.glade.h:9 +#: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" msgstr "" -#: ../data/glade/UpdateManager.glade.h:10 +#: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "檢查(_K)" -#: ../data/glade/UpdateManager.glade.h:11 +#: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" msgstr "檢查軟體來源有沒有更新套件" -#: ../data/glade/UpdateManager.glade.h:12 +#: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "詳細說明" -#: ../data/glade/UpdateManager.glade.h:13 +#: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" msgstr "發行說明" -#: ../data/glade/UpdateManager.glade.h:14 +#: ../data/glade/UpdateManager.glade.h:13 msgid "" "Run a distribution upgrade, to install as many updates as possible. \n" "\n" @@ -1045,51 +1043,51 @@ msgid "" "or by running a development version." msgstr "" -#: ../data/glade/UpdateManager.glade.h:17 +#: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" msgstr "顯示單一檔案的進度" -#: ../data/glade/UpdateManager.glade.h:18 +#: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" msgstr "軟體更新" -#: ../data/glade/UpdateManager.glade.h:19 +#: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "軟體更新會更正錯誤, 排除安全弱點, 並提功新功能." -#: ../data/glade/UpdateManager.glade.h:20 +#: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" msgstr "升級(_P)" -#: ../data/glade/UpdateManager.glade.h:21 +#: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" msgstr "升級到最新版本的 Ubuntu" -#: ../data/glade/UpdateManager.glade.h:22 +#: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "檢查(_C)" -#: ../data/glade/UpdateManager.glade.h:23 +#: ../data/glade/UpdateManager.glade.h:22 #, fuzzy msgid "_Distribution Upgrade" msgstr "繼續升級(_R)" -#: ../data/glade/UpdateManager.glade.h:24 +#: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" msgstr "以後不要再顯示此訊息(_H)" -#: ../data/glade/UpdateManager.glade.h:25 +#: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "安裝更新套件(_I)" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:25 #, fuzzy msgid "changes" msgstr "修改紀錄" -#: ../data/glade/UpdateManager.glade.h:27 +#: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" @@ -1578,6 +1576,9 @@ msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" +#~ msgid "Cancel _Download" +#~ msgstr "取消下載(_D)" + #~ msgid "Some software no longer officially supported" #~ msgstr "有些軟體不再有官方支援" -- cgit v1.2.3 From 1246f1b2b970b2810a0197b0d11eec635cb74abc Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 27 Sep 2006 12:04:33 +0200 Subject: * changelog updated --- DistUpgrade/Changelog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 1bdc3080..77b07371 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,6 @@ +2006-09-27: + - uploaded a version that only reverts the backport fetching + but no other changes compared to 2006-09-23 2006-09-27: - embarrassing bug cdromupgrade.sh 2006-09-26: -- cgit v1.2.3 From cdbedcff87091add303c4ea433a1f2cd6d97ffde Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 28 Sep 2006 12:11:16 +0200 Subject: * DistUpgrade/cdromupgrade: - just use "mktemp -d" to make sure we get a full path --- DistUpgrade/Changelog | 2 ++ DistUpgrade/cdromupgrade | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 77b07371..1c1d4ab8 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-09-28: + - bugfix in the cdromupgrade script 2006-09-27: - uploaded a version that only reverts the backport fetching but no other changes compared to 2006-09-23 diff --git a/DistUpgrade/cdromupgrade b/DistUpgrade/cdromupgrade index 4c9d0279..37335045 100755 --- a/DistUpgrade/cdromupgrade +++ b/DistUpgrade/cdromupgrade @@ -23,7 +23,7 @@ if [ ! -f $fullpath/$CODENAME.tar.gz ]; then exit 1 fi -TMPDIR=$(mktemp -d distupgrade.XXXXXX) +TMPDIR=$(mktemp -d) cd $TMPDIR tar xzf $fullpath/$CODENAME.tar.gz if [ ! -x $TMPDIR/$CODENAME ]; then -- cgit v1.2.3 From 1ae6b2c078499dc2a9d99500cf4a2fce12ce78e5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 29 Sep 2006 15:29:28 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - typo fix --- DistUpgrade/Changelog | 2 ++ DistUpgrade/DistUpgradeControler.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 1c1d4ab8..5f7ba584 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-09-29: + - typo fix (thanks to Jane Silber) (lp: #62946) 2006-09-28: - bugfix in the cdromupgrade script 2006-09-27: diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 0b822022..7b255cf0 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -502,7 +502,7 @@ class DistUpgradeControler(object): "support for the following software " "packages. You can still get support " "from the community.\n\n" - "If you havn't enabled community " + "If you have not enabled community " "maintained software (universe), " "these packages will be suggested for " "removal in the next step."), -- cgit v1.2.3 From e40dd39c6ad5b1d29644430cdecdfc02bf674a8a Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 29 Sep 2006 16:57:26 +0200 Subject: * data/glade/SoftwareProperties.glade: - make add cdrom translatable --- data/glade/SoftwareProperties.glade | 2 +- debian/changelog | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/data/glade/SoftwareProperties.glade b/data/glade/SoftwareProperties.glade index f280f8a3..d3947a33 100644 --- a/data/glade/SoftwareProperties.glade +++ b/data/glade/SoftwareProperties.glade @@ -804,7 +804,7 @@ True - Add Cdrom + Add Cdrom True False GTK_JUSTIFY_LEFT diff --git a/debian/changelog b/debian/changelog index 2f067c0e..02ec4d9d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +update-manager (0.44.15) edgy; urgency=low + + * data/glade/SoftwareProperties.glade: + - fix missing "translatable" property (lp: #62681) + + -- + update-manager (0.44.14) edgy; urgency=low * UpdateManager/UpdateManager.py: -- cgit v1.2.3 From 44bb7423ea89e0174fd33108bc1112677283114e Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 29 Sep 2006 17:01:12 +0200 Subject: * po/*: - make update-po --- po/ar.po | 152 ++++++++++++++++++++++--------------------- po/bg.po | 171 +++++++++++++++++++++++++----------------------- po/bn.po | 162 ++++++++++++++++++++++++---------------------- po/br.po | 152 ++++++++++++++++++++++--------------------- po/ca.po | 172 ++++++++++++++++++++++++++----------------------- po/cs.po | 171 +++++++++++++++++++++++++----------------------- po/da.po | 170 +++++++++++++++++++++++++----------------------- po/de.po | 172 ++++++++++++++++++++++++++----------------------- po/el.po | 171 +++++++++++++++++++++++++----------------------- po/en_AU.po | 171 +++++++++++++++++++++++++----------------------- po/en_CA.po | 163 +++++++++++++++++++++++----------------------- po/en_GB.po | 161 ++++++++++++++++++++++++---------------------- po/es.po | 171 +++++++++++++++++++++++++----------------------- po/fi.po | 173 ++++++++++++++++++++++++++----------------------- po/fr.po | 171 +++++++++++++++++++++++++----------------------- po/fur.po | 152 ++++++++++++++++++++++--------------------- po/gl.po | 156 +++++++++++++++++++++++--------------------- po/he.po | 164 ++++++++++++++++++++++++---------------------- po/hi.po | 152 ++++++++++++++++++++++--------------------- po/hr.po | 171 +++++++++++++++++++++++++----------------------- po/hu.po | 171 +++++++++++++++++++++++++----------------------- po/id.po | 171 +++++++++++++++++++++++++----------------------- po/it.po | 171 +++++++++++++++++++++++++----------------------- po/ja.po | 171 +++++++++++++++++++++++++----------------------- po/ka.po | 163 +++++++++++++++++++++++----------------------- po/ko.po | 171 +++++++++++++++++++++++++----------------------- po/ku.po | 152 ++++++++++++++++++++++--------------------- po/lt.po | 171 +++++++++++++++++++++++++----------------------- po/mk.po | 156 +++++++++++++++++++++++--------------------- po/ms.po | 152 ++++++++++++++++++++++--------------------- po/nb.po | 171 +++++++++++++++++++++++++----------------------- po/ne.po | 161 ++++++++++++++++++++++++---------------------- po/nl.po | 171 +++++++++++++++++++++++++----------------------- po/no.po | 161 ++++++++++++++++++++++++---------------------- po/oc.po | 160 +++++++++++++++++++++++---------------------- po/pa.po | 163 +++++++++++++++++++++++----------------------- po/pl.po | 171 +++++++++++++++++++++++++----------------------- po/pt.po | 171 +++++++++++++++++++++++++----------------------- po/pt_BR.po | 171 +++++++++++++++++++++++++----------------------- po/ro.po | 158 +++++++++++++++++++++++---------------------- po/ru.po | 171 +++++++++++++++++++++++++----------------------- po/rw.po | 158 +++++++++++++++++++++++---------------------- po/sk.po | 171 +++++++++++++++++++++++++----------------------- po/sr.po | 152 ++++++++++++++++++++++--------------------- po/sv.po | 175 ++++++++++++++++++++++++++------------------------ po/th.po | 171 +++++++++++++++++++++++++----------------------- po/tr.po | 152 ++++++++++++++++++++++--------------------- po/uk.po | 164 ++++++++++++++++++++++++---------------------- po/update-manager.pot | 152 ++++++++++++++++++++++--------------------- po/ur.po | 152 ++++++++++++++++++++++--------------------- po/urd.po | 152 ++++++++++++++++++++++--------------------- po/vi.po | 156 +++++++++++++++++++++++--------------------- po/xh.po | 156 +++++++++++++++++++++++--------------------- po/zh_CN.po | 171 +++++++++++++++++++++++++----------------------- po/zh_HK.po | 156 +++++++++++++++++++++++--------------------- po/zh_TW.po | 171 +++++++++++++++++++++++++----------------------- 56 files changed, 4802 insertions(+), 4383 deletions(-) diff --git a/po/ar.po b/po/ar.po index e48a2e30..91ddd359 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Jadmadi \n" "Language-Team: Arabic \n" @@ -88,45 +88,45 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "خطاء في استيراد الملف" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "خطاء في ازالة المفتاح" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -134,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "الرجاء ادخال اسم القرص" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "الرجاء ادخال القرص في الجهاز" @@ -350,7 +350,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -547,7 +547,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -771,14 +771,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -815,7 +815,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -840,35 +840,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -876,62 +854,84 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1058,73 +1058,77 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/bg.po b/po/bg.po index 35c2eb6b..ce1fc9bc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:40+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -88,50 +88,50 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Обновления на софтуера" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Изходен код" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Изходен код" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Внасяне на ключ" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Грешка при внасяне на избрания файл" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Избраният файл или не е GPG файл, или е повреден." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Грешка при премахване на ключа" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ключът, който сте избрали, не може да бъде премахнат. Докладвайте това като " "грешка." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -142,11 +142,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Моля, въведете име за диска" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Моля, поставете диск в устройството:" @@ -400,7 +400,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -614,7 +614,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" @@ -856,15 +856,15 @@ msgstr "" "Идентификацията на надграждането е неуспешна. Възможно е да има проблем с " "мрежата или сървъра. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Сваляне на файл %li от %li при %s/сек" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Сваляне на файл %li от %li при неизвестна скорост" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Сваляне на файл %li от %li при %s/сек" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -906,8 +906,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Инсталиране на актуализациите" +msgid "Distribution updates" +msgstr "_Поднови надграждането" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -934,75 +934,53 @@ msgstr "" msgid "_Check All" msgstr "_Проверка" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Размер за изтегляне: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Можете да инсталирате %s актуализация" msgstr[1] "Можете да инсталирате %s актуализации" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Моля, изчакайте! Това може да отнеме известно време." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Актуализацията е завършена" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Нова версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Версия %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуция вече не се поддържа" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1012,17 +990,17 @@ msgstr "" "Надградете до по-късна версия на Ubuntu Linux. Вижте http://www.ubuntu.com " "за повече информация за надграждането!" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1032,6 +1010,28 @@ msgstr "" "ползвайте диспечера на пакети \"Synaptic\" или първо задействайте \"sudo apt-" "get install -f\" в терминален прозорец, за да поправите този проблем!" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1174,27 +1174,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Добавяне на Cdrom" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Идентифициране" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Изтриване на изтеглените софтуерни файлове:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Свалянето е завършено" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Внасяне на публичния ключ от доверен доставчик на софтуер" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Актуализации по Интернет" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1202,52 +1207,52 @@ msgstr "" "Само актуализации на сигурността от официалните сървъри на Ubuntu ще бъдат " "инсталирани автоматично" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Връщане на _стандартните стойности" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Връщане на стандартните ключове на Вашата дистрибуция" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Настройки на софтуера" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Изходен код" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Проверявай за актуализации автоматично:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "И_зтегли актуализациите във фонов режим, но не ги инсталирай" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "Внасяне на ключ" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Инсталирай актуализациите на сигурноста без потвърждение" @@ -1642,6 +1647,13 @@ msgstr "DFSG-съвместим софтуер с несвободни зави msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Сваляне на файл %li от %li при неизвестна скорост" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Инсталиране на актуализациите" + #~ msgid "Cancel _Download" #~ msgstr "Отмяна на _изтеглянето" @@ -1728,9 +1740,6 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "Keys" #~ msgstr "Ключове" -#~ msgid "Add _Cdrom" -#~ msgstr "Добавяне на Cdrom" - #~ msgid "Installation Media" #~ msgstr "Носител на инсталацията" diff --git a/po/bn.po b/po/bn.po index 105eaf69..a3a8211b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-26 12:09+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -88,46 +88,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "সফ্টওয়্যার আপডেট" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "কী ইম্পোর্ট" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "নির্বাচিত ফাইলটি ইম্পোর্ট করতে সমস্যা হয়েছে" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "বেছে নেয়া ফাইলটি মনে হয় কোন GPG কী ফাইল নয় অথবা এটি নষ্ট।" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "কী সরাতে সমস্যা হয়েছে" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -138,11 +138,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "ডিস্কের জন্য একটি নাম দিন" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "অনুগ্রহ করে ড্রাইভে একটি ডিস্ক দিন:" @@ -368,7 +368,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -566,7 +566,7 @@ msgstr "তথ্য হারাতে না চাইলে সকল অ্ #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" @@ -794,14 +794,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -844,8 +844,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "আপডেট ইন্সটল করো (_I)" +msgid "Distribution updates" +msgstr "পুনরায় আপগ্রেড শুরু (_R)" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -872,98 +872,98 @@ msgstr "" msgid "_Check All" msgstr "পরীক্ষা করো (_C)" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "ডাউনলোড এর আকার: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "আপনি %s আপডেট ইনস্টল করতে পারেন" msgstr[1] "আপনি %s আপডেট ইনস্টল করতে পারেন" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "অনুগ্রহ করে অপেক্ষা করুন, এটি কিছুটা সময় নিতে পারে।" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "আপডেট সম্পন্ন" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "নতুন ভার্সন: %s (আকার: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "ভার্সন %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "আপনার ডিস্ট্রিবিউশনটি আর সমর্থিত নয়" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1099,76 +1099,81 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "সিডিরম যোগ (_C)" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "প্রমাণীকরন" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "ডাউনলোড করা সফ্টওয়্যার ফাইল মুছো (_e):" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "ডাউনলোড সম্পন্ন" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "বিশ্বস্ত সফ্টওয়্যার প্রদানকারীর থেকে পাবলিক কী ইমপোর্ট করো" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "ইন্টারনেট আপডেট" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "ডিফল্ট পুনঃস্হাপন (_D)" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "আপনার ডিস্ট্রিবিউশনের ডিফল্ট কী পুনঃস্হাপন করুন" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "সফ্টওয়্যার বৈশিষ্ট্য" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "স্বয়ংক্রিয় ভাবে আপডেট পরীক্ষা করো (_C):" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "আড়ালে আপডেট ডাউনলোড করো, কিন্তু তাদেরকে ইন্সটল করো না (_D)" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "কী ফাইল ইম্পোর্ট(_ই)" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "নিরাপত্তা জনিত আপডেট গুলো অনুমদন ছাড়াই ইন্সটল করো (_I)" @@ -1534,6 +1539,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "আপডেট ইন্সটল করো (_I)" + #~ msgid "Cancel _Download" #~ msgstr "ডাউনলোড বাতিল (_D)" @@ -1604,9 +1613,6 @@ msgstr "" #~ msgid "Keys" #~ msgstr "কী" -#~ msgid "Add _Cdrom" -#~ msgstr "সিডিরম যোগ (_C)" - #~ msgid "Installation Media" #~ msgstr "ইন্সটলেশন মাধ্যম" diff --git a/po/br.po b/po/br.po index 95cfc8b1..d933750b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -88,49 +88,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Emborzhiañ an alc'hwezh" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Fazi en ur emborzhiañ ar restr dibabet" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Moarvat n'eo ket ur restr alc'hwezh GPG ar restr dibabet, pe neuze eo " "gwastet." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Fazi en ur zilemel an alc'hwezh" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "N'eus ket tu da zilemel an alc'whezh ho peus dibabet. Kelaouit eo ur bug " "marplij." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -138,11 +138,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Roit un anv evit ar bladenn marplij" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Lakait ur bladenn e-barzh ul lenner marplij:" @@ -354,7 +354,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -548,7 +548,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -772,14 +772,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -816,7 +816,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -841,97 +841,97 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1058,74 +1058,78 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "Emborzhiañ an alc'hwezh" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/ca.po b/po/ca.po index 7ca16052..c29de9b3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-29 21:18+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -87,52 +87,52 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Actualitzacions de programari" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Font" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Font" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importa un clau" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "S'ha produït un error en importar el fitxer seleccionat" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "El fitxer que heu seleccionat no correspon a una clau GPG o pot estar " "corromput." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "S'ha produït un error en esborrar la clau" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La clau que heu seleccionat no es pot esborrar. Notifiqueu-ho com a error de " "programació." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -143,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Introduïu un nom per al disc" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Inseriu un disc a la unitat:" @@ -395,7 +395,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Aquests paquets instal·lats ja no es mantindran de manera oficial i només " @@ -601,7 +601,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" @@ -833,15 +833,15 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "S'està descarregant el fitxer %li de %li amb %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -883,8 +883,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Instal·la les actualitzacions" +msgid "Distribution updates" +msgstr "_Reprén l'actualització" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -911,75 +911,53 @@ msgstr "" msgid "_Check All" msgstr "_Comprova" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Mida de la descàrrega: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podeu instal·lar %s actualització" msgstr[1] "Podeu instal·lar %s actualitzacions" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Espereu, això pot tardar una estona." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "S'ha completat l'actualització" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "S'estan comprovant les actualitzacions..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Versió nova: %s (Mida: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versió %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "La vostra distribució ja no es mantindrà més" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -989,17 +967,17 @@ msgstr "" "sistema a la darrera versió d'Ubuntu. Vegeu http://www.ubuntu.com per a més " "informació." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1009,6 +987,28 @@ msgstr "" "utilitzeu el gestor de paquets \"Synaptic\" o executeu \"sudo apt-get " "install -f\" en un terminal." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1152,77 +1152,82 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Afegeix un _CD-ROM" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autenticació" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Esborra els fitxers de programari descarregats:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "S'ha completat la descàrrega" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importa la clau pública d'un proveïdor de confiança" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Actualitzacions d'Internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Restaura els valors per _defecte" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Restaura les claus per defecte de la vostra distribució" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Propietats del programari" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Font" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Comprova les actualitzacions automàticament" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Descarrega les actualitzacions en segon pla, però no les instal·lis" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Importa una clau" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instal·la actualitzacions de seguretat sense confirmació" @@ -1611,6 +1616,14 @@ msgstr "Programari compatible DFSG amb dependències no lliures" msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "" +#~ "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Instal·la les actualitzacions" + #~ msgid "Cancel _Download" #~ msgstr "Cancel·la la _descàrrega" @@ -1702,9 +1715,6 @@ msgstr "Programari no compatible DFSG" #~ msgid "Keys" #~ msgstr "Claus" -#~ msgid "Add _Cdrom" -#~ msgstr "Afegeix un _CD-ROM" - #~ msgid "Installation Media" #~ msgstr "Mitjà d'instal·lació" diff --git a/po/cs.po b/po/cs.po index 1573653f..4554f451 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-25 18:52+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" @@ -89,46 +89,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Aktualizace softwaru" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importovat klíč" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Chyba při importování vybraného souboru" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Vybraný soubor nemusí obsahovat GPG klíč nebo může být porušen." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Chyba při odstraňování klíče" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Prosím zadejte jméno disku" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Prosím vložte disk do mechaniky:" @@ -380,7 +380,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -588,7 +588,7 @@ msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" @@ -828,15 +828,15 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Stahuji %li. soubor z %li rychlostí %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Stahuji %li. soubor z %li neznámou rychlostí" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Stahuji %li. soubor z %li rychlostí %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -877,8 +877,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Instaluji aktualizace" +msgid "Distribution updates" +msgstr "_Pokračovat v upgradu" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -905,35 +905,13 @@ msgstr "" msgid "_Check All" msgstr "_Zkontrolovat" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Stahovaná velikost: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -941,40 +919,40 @@ msgstr[0] "Můžete instalovat %s aktualizaci" msgstr[1] "Můžete instalovat %s aktualizace" msgstr[2] "Můžete instalovat %s aktualizací" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Prosím čekejte, může to nějakou dobu trvat." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Aktualizace je dokončena" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Zkontrolovat dostupné aktualizace" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verze: %s (Velikost: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Verze %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Vaše distribude už není podporovaná" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -984,23 +962,45 @@ msgstr "" "Přejděte na další verzi Ubuntu Linuxu. Pro více informací o přechodu na " "vyšší verzi se podívejte na http://www.ubuntu.com." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1143,27 +1143,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Přidat _Cdrom" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Ověření" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Smazat stažené soubory programů:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Stahování bylo dokončeno" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importovat veřejný klíč od důvěryhodného poskytovate softwaru" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Síťové aktualizace" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1171,51 +1176,51 @@ msgstr "" "Automaticky instalovány budou pouze bezpečností aktualizace z oficiálních " "serverů Ubuntu." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Obnovit _Původní" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Obnovit původní klíče vaší distribuce" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Vlastnosti softwaru" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Zkontrolovat aktualizace automaticky" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Stáhnout aktualizace na pozadí, ale neinstalovat je." -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "Importovat klíč" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instalovat bezpečnostní aktualizace bez potvrzení" @@ -1603,6 +1608,13 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "Žádný DFSG kompatibilní Software" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Stahuji %li. soubor z %li neznámou rychlostí" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Instaluji aktualizace" + #~ msgid "Cancel _Download" #~ msgstr "Přerušit _stahování" @@ -1680,9 +1692,6 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgid "Keys" #~ msgstr "Klíče" -#~ msgid "Add _Cdrom" -#~ msgstr "Přidat _Cdrom" - #~ msgid "Installation Media" #~ msgstr "Instalační Medium" diff --git a/po/da.po b/po/da.po index 6daada0e..9f8e8041 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -88,47 +88,47 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Opdateringer" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importér nøgle" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Fejl under importering af den valgte fil" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Den valgte fil er ikke en GPG-nøglefil eller den er i stykker." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Fejl ved fjernelse af nøgle" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Den valgte nøgle kunne ikke fjernes. Rapporter venligst dette som en fejl." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Indtast venligst et navn til disken" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Indsæt venligst en disk i drevet:" @@ -388,7 +388,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Disse installerede pakker er ikke længere officielt understøttet, og er nu " @@ -600,7 +600,7 @@ msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" @@ -842,15 +842,15 @@ msgstr "" "Godkendelse af opgraderingen fejlede. Der er muligvis et problem med " "netværket eller med serveren. " -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, fuzzy, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Henter fil %li af %li med %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Henter fil %li af %li med ukendt hastighed" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Henter fil %li af %li med %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -893,8 +893,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Installer Opdateringer" +msgid "Distribution updates" +msgstr "_Genoptag opgradering" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -921,75 +921,53 @@ msgstr "" msgid "_Check All" msgstr "_Tjek" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Overføringsstørelse: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s opdatering" msgstr[1] "Du kan installere %s opdateringer" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Vent venligst, dette kan tage et stykke tid." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Opdatering udført" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_Installer Opdateringer" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny version: %s (Size: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Din distribution understøtes ikke længere" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -999,17 +977,17 @@ msgstr "" "opdateringer. Opgrader til en senere version af Ubuntu Linux. Se http://www." "ubuntu.com (engalsk) for mere informaiton om opgradering." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Software indexet er i stykker" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1019,6 +997,28 @@ msgstr "" "pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -f" "\" i en terminal for at ordne dette problem først." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1165,29 +1165,34 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Tilføj _CD-ROM" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Godkendelse" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 #, fuzzy msgid "D_elete downloaded software files:" msgstr "_Slet overførte softwarefiler:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Overførsel fuldført" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Importer den offentlige nøgle fra en betroet softwareleverandør" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internetopdateringer" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1195,51 +1200,51 @@ msgstr "" "Kun sikkerhedsopdateringer fra de officielle Ubuntu-servere vil blive " "installeret automatisk." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Gendan _standard" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Gendan standardnøglerne for din distribution" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Softwareinstillinger" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Kontroller automatisk om der er nye opdateringer" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Hent opdateringer i baggrunden, men installer dem ikke" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "Importér nøgle" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Installer sikkerhedsopdateringer automatisk uden bekræftelse" @@ -1633,6 +1638,13 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Henter fil %li af %li med ukendt hastighed" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Installer Opdateringer" + #, fuzzy #~ msgid "Cancel _Download" #~ msgstr "Afbryd _Hentning" @@ -1715,10 +1727,6 @@ msgstr "" #~ msgid "Keys" #~ msgstr "Nøgler" -#, fuzzy -#~ msgid "Add _Cdrom" -#~ msgstr "Tilføj _CD-ROM" - #~ msgid "Installation Media" #~ msgstr "Installationsmedie" diff --git a/po/de.po b/po/de.po index aec66084..6dd01bb6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-27 10:58+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -89,52 +89,52 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Software-Aktualisierungen" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Quellen" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Quellen" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Schlüssel importieren" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Fehler beim Importieren der gewählten Datei" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Die ausgewählte Datei ist möglicherweise keine GPG-Schlüsseldatei oder " "beschädigt." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Der ausgewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -145,11 +145,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Geben Sie einen Namen für das Medium ein" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Bitte legen Sie ein Medium in das Laufwerk:" @@ -412,7 +412,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Die installierten Pakete werden nicht mehr länger offiziell unterstützt und " @@ -631,7 +631,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" @@ -876,15 +876,15 @@ msgstr "" "Die Echtheitsbestätigung der Aktualisierung ist fehlgeschlagen. " "Möglicherweise gibt es Probleme im Netzwerk oder am Server. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Datei %li von %li wird mit %s/s heruntergeladen" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -930,8 +930,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Aktualisierungen werden installiert" +msgid "Distribution updates" +msgstr "_Aktualisierung fortsetzen" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -958,75 +958,53 @@ msgstr "" msgid "_Check All" msgstr "_Prüfen" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Download-Größe: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sie können %s Aktualisierung installieren" msgstr[1] "Sie können %s Aktualisierungen installieren" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Bitte warten Sie, dieser Vorgang kann etwas Zeit in Anspruch nehmen." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Aktualisierung ist abgeschlossen" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Nach verfügbaren Aktualisierungen suchen" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Neue Version: %s (Größe: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Ihre Distribution wird nicht länger unterstützt" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1037,17 +1015,17 @@ msgstr "" "System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." "de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1057,6 +1035,28 @@ msgstr "" "verwenden Sie zuerst die Synaptic Paketverwaltung oder führen Sie »sudo apt-" "get install -f« im Terminal aus, um dieses Problem zu beheben." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1200,29 +1200,34 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "CD-Rom _hinzufügen" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Echtheitsbestätigung" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Heruntergeladene Paketdateien _löschen:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Herunterladen abgeschlossen" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "" "Den öffentlichen Schlüssel eines vertrauenswürdigen Software-Anbieters " "importieren" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internet-Aktualisierungen" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1230,52 +1235,52 @@ msgstr "" "Nur Sicherheitsaktualisierungen von den offiziellen Ubuntu-Servern werden " "automatisch installiert" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "_Vorgabeschlüssel wiederherstellen" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Die Vorgabeschlüssel Ihrer Distribution wiederherstellen" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Software-Eigenschaften" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Quellen" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Automatisch auf Aktualisierungen prüfen:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "" "Aktualisierungen im _Hintergrund herunterladen, aber nicht installieren" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "Schlüsseldatei _importieren" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "Sicherheitsaktualisierungen _ohne Bestätigung installieren" @@ -1669,6 +1674,14 @@ msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "" +#~ "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Aktualisierungen werden installiert" + #~ msgid "Cancel _Download" #~ msgstr "_Herunterladen abbrechen" @@ -1763,9 +1776,6 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Keys" #~ msgstr "Schlüssel" -#~ msgid "Add _Cdrom" -#~ msgstr "CD-Rom _hinzufügen" - #~ msgid "Installation Media" #~ msgstr "Installationsmedien" diff --git a/po/el.po b/po/el.po index 3a807b4d..779ef170 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-25 15:39+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -87,49 +87,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "Κανάλι λογισμικού" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "Ενεργό" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Εισαγωγή κλειδιού" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Σφάλμα εισαγωγής επιλεγμένου αρχείου" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Το επιλεγμένο αρχείο μπορεί να μην είναι ένα αρχείο κλειδιού GPG ή μπορεί να " "είναι κατεστραμμένο." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Σφάλμα απομάκρυνσης του κλειδιού" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Το επιλεγμένο κλειδί δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε το ως " "σφάλμα." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -140,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Παρακαλώ εισάγετε ένα όνομα για το δίσκο" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Παρακαλώ εισάγετε ένα δίσκο στον οδηγό:" @@ -404,7 +404,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Αυτά τα εγκατεστημένα πακέτα δεν υποστηρίζονται πια επίσημα, και τώρα " @@ -622,7 +622,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" @@ -863,15 +863,15 @@ msgstr "" "Η πιστοποίηση της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου ή " "εξυπηρετητή. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Λήψη αρχείου %li από %li με %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -915,8 +915,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Εγκατάσταση ενημερώσεων" +msgid "Distribution updates" +msgstr "_Συνέχεια αναβάθμισης" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -943,75 +943,53 @@ msgstr "" msgid "_Check All" msgstr "Έλε_γχος" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Μέγεθος λήψης: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Μπορείτε να εγκαταστήσετε %s ενημέρωση" msgstr[1] "Μπορείτε να εγκαταστήσετε %s ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Παρακαλώ περιμένετε, αυτό μπορεί να διαρκέσει λίγο χρόνο." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Η ενημέρωση ολοκληρώθηκε" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Έλεγχος για διαθέσιμες ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Νέα έκδοση: %s (Μέγεθος: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Έκδοση%s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Η διανομή σας δεν υποστηρίζεται πια" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1022,17 +1000,17 @@ msgstr "" "Ubuntu Linux. Δείτε το http://www.ubuntu.com για περισσότερες πληροφορίες " "για την αναβάθμιση." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1042,6 +1020,28 @@ msgstr "" "το διαχειριστή πακέτων \"Synaptic\" η εκτελέστε την εντολή \"sudo apt-get " "install -f\" σε ένα τερματικό για να διορθώσετε το πρόβλημα πρώτα." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1185,27 +1185,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Προσθήκη _Cdrom" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Πιστοποίηση" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Δια_γραφή αρχείων ληφθέντων πακέτων" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Η λήψη ολοκληρώθηκε" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Εισαγωγή του δημόσιου κλειδιού από έναν έμπιστο πάροχο λογισμικού" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Αναβαθμίσεις διαδικτύου" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1213,50 +1218,50 @@ msgstr "" "Μόνο οι ενημερώσεις ασφαλείας που προέρχονται από τους επίσημους " "εξυπηρετητές του Ubuntu θα εγκαθίστανται αυτόματα." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Επαναφορά π_ροεπιλογών" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Επαναφορά των προεπιλεγμένων κλειδιών της διανομής σας" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Ιδιότητες λογισμικού" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "Αυτόματος έλεγ_χος για ενημερώσεις κάθε:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "Λή_ψη ενημερώσεων στο παρασκήνιο χωρίς να εγκατασταθούν" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "Ε_ισαγωγή αρχείου κλειδιού" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "Ε_γκατάσταση ενημερώσεων ασφαλείας χωρίς επιβεβαίωση" @@ -1647,6 +1652,13 @@ msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Εγκατάσταση ενημερώσεων" + #~ msgid "Cancel _Download" #~ msgstr "Ακύρωση _λήψης αρχείων" @@ -1737,9 +1749,6 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "Keys" #~ msgstr "Κλειδιά" -#~ msgid "Add _Cdrom" -#~ msgstr "Προσθήκη _Cdrom" - #~ msgid "Installation Media" #~ msgstr "Μέσα εγκατάστασης" diff --git a/po/en_AU.po b/po/en_AU.po index b38dcc80..efcc4b91 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-26 21:06+0000\n" "Last-Translator: David Symons \n" "Language-Team: English (Australia) \n" @@ -88,47 +88,47 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Software Updates" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Import key" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "The selected file may not be a GPG key file or it might be corrupt." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Please enter a name for the disc" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Please insert a disc in the drive:" @@ -400,7 +400,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "These installed packages are no longer officially supported, and are now " @@ -615,7 +615,7 @@ msgstr "To prevent data loss close all open applications and documents." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" @@ -854,15 +854,15 @@ msgstr "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Downloading file %li of %li with %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Downloading file %li of %li with unknown speed" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Downloading file %li of %li with %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -904,8 +904,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Install Updates" +msgid "Distribution updates" +msgstr "_Resume Upgrade" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -932,75 +932,53 @@ msgstr "" msgid "_Check All" msgstr "_Check" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Download size: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "You can install %s update" msgstr[1] "You can install %s updates" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Please wait, this can take some time." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Update is complete" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_Install Updates" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "New version: %s (Size: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Your distribution is not supported anymore" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1010,17 +988,17 @@ msgstr "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1030,6 +1008,28 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1173,27 +1173,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Add _Cdrom" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Authentication" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "D_elete downloaded software files:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Download is complete" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Import the public key from a trusted software provider" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internet Updates" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1201,50 +1206,50 @@ msgstr "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Restore _Defaults" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Restore the default keys of your distribution" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Software Properties" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Check for updates automatically:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Download updates in the background, but do not install them" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Import Key File" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Install security updates without confirmation" @@ -1637,6 +1642,13 @@ msgstr "DFSG-compatible Software with Non-Free Dependencies" msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Downloading file %li of %li with unknown speed" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Install Updates" + #~ msgid "Cancel _Download" #~ msgstr "Cancel _Download" @@ -1727,9 +1739,6 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Keys" #~ msgstr "Keys" -#~ msgid "Add _Cdrom" -#~ msgstr "Add _Cdrom" - #~ msgid "Installation Media" #~ msgstr "Installation Media" diff --git a/po/en_CA.po b/po/en_CA.po index 960ba35b..86bc663c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -89,49 +89,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Software Updates" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "The selected file may not be a GPG key file or it might be corrupt." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -360,7 +360,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -557,7 +557,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" @@ -789,14 +789,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -840,8 +840,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Install" +msgid "Distribution updates" +msgstr "Upgrade finished" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -867,99 +867,99 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1094,78 +1094,83 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy +msgid "Add Cdrom" +msgstr "Add _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 +#, fuzzy msgid "Authentication" msgstr "A_uthentication" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Remove the selected key from the trusted keyring." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "Internet Updates" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Restore default keys" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Software Properties" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Source" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1551,6 +1556,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Install" + #, fuzzy #~ msgid "Your system has already been upgraded." #~ msgstr "Your system has broken packages!" @@ -1584,10 +1593,6 @@ msgstr "" #~ msgid "Keys" #~ msgstr "Details" -#, fuzzy -#~ msgid "Add _Cdrom" -#~ msgstr "Add _CD" - #, fuzzy #~ msgid "Installation Media" #~ msgstr "Installing updates..." diff --git a/po/en_GB.po b/po/en_GB.po index 79e4a5fc..809ea292 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Abigail Brady \n" "Language-Team: \n" @@ -88,49 +88,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Software Updates" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "The selected file may not be a GPG key file or it might be corrupt." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -138,11 +138,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -359,7 +359,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -557,7 +557,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" @@ -788,14 +788,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -839,7 +839,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "Installing updates..." #. TRANSLATORS: updates from an 'unknown' origin @@ -866,99 +866,99 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Installing updates..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1091,80 +1091,85 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy +msgid "Add Cdrom" +msgstr "Add _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 +#, fuzzy msgid "Authentication" msgstr "A_uthentication" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Remove the selected key from the trusted keyring." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "Internet Updates" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Restore default keys" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "Restore default keys" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Software Properties" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Source" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "Installing updates..." -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1551,6 +1556,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Installing updates..." + #, fuzzy #~ msgid "Your system has already been upgraded." #~ msgstr "Your system has broken packages!" @@ -1584,10 +1593,6 @@ msgstr "" #~ msgid "Keys" #~ msgstr "Details" -#, fuzzy -#~ msgid "Add _Cdrom" -#~ msgstr "Add _CD" - #, fuzzy #~ msgid "Installation Media" #~ msgstr "Installing updates..." diff --git a/po/es.po b/po/es.po index 192a3272..25c9a9a5 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-26 09:38+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -90,52 +90,52 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Actualizaciones de software" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Fuente" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Fuente" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importar clave" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Hubo un error al importar el archivo seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Puede que el archivo seleccionado no sea un archivo de clave GPG o que esté " "corrupto." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "No se puede quitar la clave que ha seleccionado. Por favor, avise de esto " "como un fallo." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -146,11 +146,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Por favor, introduzca un nombre para el disco" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Por favor, inserte un disco en la unidad:" @@ -412,7 +412,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Estos paquetes instalados ya no están soportados oficialmente, y desde ahora " @@ -630,7 +630,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" @@ -874,15 +874,15 @@ msgstr "" "Ha fallado la autenticación de la actualización. Debe haber un problema con " "la red o el servidor. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Descargando archivo %li de %li a %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Descargando archivo %li de %li a velocidad desconocida" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Descargando archivo %li de %li a %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -928,8 +928,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Instalando actualizaciones" +msgid "Distribution updates" +msgstr "_Continuar actualización" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -956,75 +956,53 @@ msgstr "" msgid "_Check All" msgstr "_Comprobar" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Tamaño de descarga: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Puede instalar %s actualización" msgstr[1] "Puede instalar %s actualizaciones" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Por favor, espere; esto puede tardar un poco." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "La actualización se ha completado" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Comprobar las actualizaciones disponibles" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nueva versión: %s (Tamaño: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versión %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Su distribución ya no está soportada" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1034,17 +1012,17 @@ msgstr "" "críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" "www.ubuntu.com para más información sobre la actualización." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "El índice de software está dañado" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1054,6 +1032,28 @@ msgstr "" "gestor de paquetes «Synaptic», o ejecute «sudo apt-get install -f» en una " "terminal, para corregir este problema primero." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1197,27 +1197,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Añadir _CD-ROM" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autenticación" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Borrar archivos de software descargados:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "La descarga se ha completado" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importar la clave pública desde un proveedor de confianza" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Actualizaciones por Internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1225,51 +1230,51 @@ msgstr "" "Sólo se instalarán automáticamente las actualizaciones de seguridad que " "provengan de los servidores oficiales de Ubuntu." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Restaurar valores predeterminados" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Restaurar las claves predeterminadas de su distribución" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Propiedades del software" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Fuente" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Comprobar actualizaciones automáticamente:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Descargar actualizaciones en segundo plano, pero sin instalarlas" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Importar clave" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instalar actualizaciones de seguridad sin requerir confirmación" @@ -1664,6 +1669,13 @@ msgstr "Software compatible con la DFSG con dependencias no libres" msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Descargando archivo %li de %li a velocidad desconocida" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Instalando actualizaciones" + #~ msgid "Cancel _Download" #~ msgstr "Cancelar _descarga" @@ -1758,9 +1770,6 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Keys" #~ msgstr "Claves" -#~ msgid "Add _Cdrom" -#~ msgstr "Añadir _CD-ROM" - #~ msgid "Installation Media" #~ msgstr "Soporte de la instalación" diff --git a/po/fi.po b/po/fi.po index a8d69c76..4c6655af 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-25 18:26+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -87,50 +87,50 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "Ohjelmistokanava" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "Aktiivinen" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Lähdekoodi" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Lähdekoodi" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Tuo avain" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Virhe tuotaessa valittua avainta" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Valittu tiedosto ei ole kelvollinen GPG-avaintiedosto, tai se on " "vahingoittunut." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -141,11 +141,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Syötä nimi levylle" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Aseta levy asemaan:" @@ -403,7 +403,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Seuraavia paketteja ei enää tueta virallisesti, vaan ovat nyt yhteisön " @@ -616,7 +616,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" @@ -858,15 +858,15 @@ msgstr "" "Päivityksen todennus epäonnistui. Tämä voi johtua ongelmasta " "verkkoyhteydessä tai palvelimessa. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -907,8 +907,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Asennetaan päivityksiä" +msgid "Distribution updates" +msgstr "_Jatka päivitystä" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -935,76 +935,53 @@ msgstr "" msgid "_Check All" msgstr "_Tarkista" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -#, fuzzy -msgid "None" -msgstr "Ei-vapaa" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "%s täytyy noutaa" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Voit asentaa %s päivityksen" msgstr[1] "Voit asentaa %s päivitystä" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Odota, tämä voi kestää jonkun aikaa." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Päivitys on valmis" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Tarkista saatavilla olevat päivitykset" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Uusi versio: %s (koko: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versio: %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Jakeluasi ei enää tueta" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1014,17 +991,17 @@ msgstr "" "Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja " "päivittämisestä osoitteesta http://www.ubuntu.com/" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1034,6 +1011,29 @@ msgstr "" "Synaptic-pakettienhallintaa tai komentoa \"sudo apt-get install -f\" " "päätteessä." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +#, fuzzy +msgid "None" +msgstr "Ei-vapaa" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1176,27 +1176,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Lisää _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Todennus" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Poista noudetut ohjelmatiedostot:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Lataus on valmis" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Asenna julkinen avain luotetulta ohjelmistotoimittajalta" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internet-päivitykset" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1204,51 +1209,51 @@ msgstr "" "Vain turvallisuuspäivitykset virallisilta Ubuntu-palvelimilta asennetaan " "automaattisesti." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Palauta _oletukset" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Palauta jakelusi oletusavaimet" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Ohjelmalähteet" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Lähdekoodi" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Tarkista päivitykset automaattisesti:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Lataa päivitykset taustalla, mutta älä asenna niitä" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Tuo avaintiedosto" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Asenna turvallisuuspäivitykset kysymättä" @@ -1641,6 +1646,13 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Asennetaan päivityksiä" + #~ msgid "Cancel _Download" #~ msgstr "Peruuta _nouto" @@ -1728,9 +1740,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "Keys" #~ msgstr "Avaimet" -#~ msgid "Add _Cdrom" -#~ msgstr "Lisää _CD" - #~ msgid "Installation Media" #~ msgstr "Asennuslähteet" diff --git a/po/fr.po b/po/fr.po index fc3bc23f..b3c8b740 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-26 21:09+0000\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" @@ -88,52 +88,52 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Mises à jour des logiciels" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importer la clé" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Erreur lors de l'importation du fichier sélectionné" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 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." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 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." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -144,11 +144,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Veuillez saisir un nom pour le disque" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Veuillez insérer un disque dans le lecteur :" @@ -410,7 +410,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Ces paquets installées ne sont plus supportés officiellement. Ils sont " @@ -629,7 +629,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Votre système est à jour" @@ -872,15 +872,15 @@ 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 " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Téléchargement du fichier %li sur %li à %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Téléchargement du fichier %li sur %li à %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -926,8 +926,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Installation des mises à jour" +msgid "Distribution updates" +msgstr "_Reprendre la mise à jour" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -954,75 +954,53 @@ msgstr "" msgid "_Check All" msgstr "_Vérifier" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Taille du téléchargement : %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format 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" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Veuillez patienter, cela peut prendre du temps." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "La mise à jour est terminée" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Rechercher les mises à jour disponibles" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nouvelle version : %s (taille : %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s : \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Votre distribution n'est plus supportée" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1032,17 +1010,17 @@ msgstr "" "devez passer à une version plus récente d'Ubuntu Linux. Rendez-vous sur " "http://www.ubuntu.com pour de plus amples informations à ce sujet." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1052,6 +1030,28 @@ msgstr "" "utiliser d'abord le « Gestionnaire de paquets Synaptic » ou lancez « sudo " "apt-get install -f » dans un terminal pour réparer ce problème." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1196,28 +1196,33 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Ajouter un _CD-ROM" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Authentification" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Effacer les fichiers des logiciels téléchargés :" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Le téléchargement est terminé" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "" "Importer la clé publique d'un fournisseur de logiciels digne de confiance" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Mises à jour par Internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1225,52 +1230,52 @@ msgstr "" "Seules les mises à jour de sécurité des serveurs officiels d'Ubuntu seront " "automatiquement installées." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Restaurer les clés par _défaut" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Restaurer les clés par défaut de votre distribution" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Gestionnaire de canaux logiciels" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Source" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Rechercher des mises à jour automatiquement :" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "" "Télécharger les mises à jour en arrière-plan, mais ne pas les installer" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Importer la clé" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Installer les mises à jour de sécurité sans confirmation" @@ -1668,6 +1673,13 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Installation des mises à jour" + #~ msgid "Cancel _Download" #~ msgstr "_Annuler le téléchargement" @@ -1759,9 +1771,6 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "Keys" #~ msgstr "Clés" -#~ msgid "Add _Cdrom" -#~ msgstr "Ajouter un _CD-ROM" - #~ msgid "Installation Media" #~ msgstr "Médium d'installation" diff --git a/po/fur.po b/po/fur.po index 2e2e4f43..b80b99e6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-30 14:37+0000\n" "Last-Translator: marcuz \n" "Language-Team: Friulian \n" @@ -88,45 +88,45 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Impuarte la clâf" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -134,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -350,7 +350,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -544,7 +544,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -768,14 +768,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -812,7 +812,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -837,97 +837,97 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1054,73 +1054,77 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/gl.po b/po/gl.po index 29b5780d..cc611a5c 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:42+0000\n" "Last-Translator: Ignacio Casal Quinteiro \n" "Language-Team: Galego\n" @@ -89,52 +89,52 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Actualizacións de software" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Fonte" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Fonte" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Erro importando o ficheiro seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "O ficheiro seleccionado pode que non sexa un ficheiro de clave GPG ou que " "esté corrupto." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Erro ao quitar a clave" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un " "erro." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -142,11 +142,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -365,7 +365,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -562,7 +562,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado!" @@ -794,14 +794,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -845,7 +845,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "Instalando actualizacións..." #. TRANSLATORS: updates from an 'unknown' origin @@ -872,99 +872,99 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Instalando actualizacións..." msgstr[1] "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Instalando actualizacións..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versión %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "A súa distribución xa non está soportada" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1096,80 +1096,84 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autenticación" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Eliminar a clave seleccionada do anel de confianza." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "Actualizacións por Internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Restaurar predeterminados" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "Restaurar as claves predeterminadas" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Propiedades de software" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Fonte" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "Comprobar se hai actualizacións cada" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1556,6 +1560,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Instalando actualizacións..." + #, fuzzy #~ msgid "Important security updates of Ubuntu" #~ msgstr "Actualizacións de seguranza de Ubuntu 5.10" diff --git a/po/he.po b/po/he.po index a6f5c58e..761d9293 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-30 11:15+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -92,48 +92,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "עדכוני תוכנה" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "מקור" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "מקור" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "שגיאה בייבוא קובץ נבחר" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "הקובץ הנבחר הוא לא מפתח GPG או שהוא לא תקין." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -144,11 +144,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "אנא הכניסו תקליטור לכונן:" @@ -371,7 +371,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -571,7 +571,7 @@ msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת!" @@ -801,15 +801,15 @@ msgid "" "or with the server. " msgstr "אימות השדרוג נכשל. עלולה להיות בעיה עם הרשת או עם השרת. " -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, fuzzy, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, fuzzy, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" +msgid "Downloading file %(current)li of %(total)li" +msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -850,8 +850,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "מתקין עדכונים..." +msgid "Distribution updates" +msgstr "_המשך בשידרוג" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -877,100 +877,100 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "מתקין עדכונים..." msgstr[1] "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 #, fuzzy msgid "Update is complete" msgstr "ההורדה הושלמה" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "גרסה %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "ההפצה שלך כבר לא נתמכת, סליחה." -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1111,81 +1111,85 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "אימות" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "ההורדה הושלמה" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "הסר את המפתח הנבחר מרשימת המפתחות שאתה בוטח בהם." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "עדכוני אינטרנט" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "שחזר ברירת מחדל" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "שחזר מפתחות ברירת מחדל" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "מאפייני תוכנה" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "מקור" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "בדוק לעדכונים כל" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1571,6 +1575,14 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "מתקין עדכונים..." + #~ msgid "Could not find any upgrades" #~ msgstr "לא ניתן למצוא שדרוג זמין" diff --git a/po/hi.po b/po/hi.po index 46ab03e4..8a95c9a7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Hindi \n" @@ -88,45 +88,45 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -134,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -350,7 +350,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -544,7 +544,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -768,14 +768,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -812,7 +812,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -837,97 +837,97 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1054,73 +1054,77 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/hr.po b/po/hr.po index 2bd1b2f4..e38d5605 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-24 20:54+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -89,47 +89,47 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Nadogradnje programa" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Unos ključa" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Greška prilikom uvoženja odabrane datoteke" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Odabrana datoteka možda nije GPG ključ ili je možda oštećena." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Greška prilikom brisanja ključa" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -140,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Upišite ime za disk" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Ubacite CD u uređaj:" @@ -400,7 +400,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Ovi instalirani paketi više nisu službeno podržani i sada se nalaze u " @@ -619,7 +619,7 @@ msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" @@ -861,15 +861,15 @@ msgstr "" "Autorizacija nadogradnje nije uspjela. Vjerovatno je problem u mreži ili sa " "poslužiteljem. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Preuzimam datoteku %li od %li pri %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -913,8 +913,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Instaliraj nadogradnje" +msgid "Distribution updates" +msgstr "_Nastavi nadogradnju" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -941,35 +941,13 @@ msgstr "" msgid "_Check All" msgstr "Pro_vjeri" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Veličina preuzimanja: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -977,40 +955,40 @@ msgstr[0] "Možete instalirati %s nadogradnju" msgstr[1] "Možete instalirati %s nadogradnje" msgstr[2] "Možete instalirati %s nadogradnji" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Molim pričekajte, ovo može potrajati." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Nadogradnja je gotova" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_Instaliraj nadogradnje" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nova verzija: %s (Veličina: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Verzija %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Vaša distibucija više nije podržana" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1020,17 +998,17 @@ msgstr "" "na noviju verziju Ubuntu Linuxa. Pogledajte na http://www.ubuntu.com za više " "detalja o nadogradnji." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Popis programa je oštećen" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1040,6 +1018,28 @@ msgstr "" "upravitelja paketima \"Synaptic\" ili upišite \"sudo apt-get install -f\" u " "terminal za ispravljanje ovog problema." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1182,27 +1182,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Dodaj _CD-ROM" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autorizacija" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Obriši dobavljene datoteke programa:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Preuzimanje je završeno" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Uvezi javni ključ od pouzdanog davatelja programa" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internet nadogradnje" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1210,50 +1215,50 @@ msgstr "" "Samo sigrnosne nadogradnje sa službenih Ubuntu poslužitelja biti će " "instalirane automatski" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Vrati _uobičajene postavke" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Vrati uobičajene ključeve vaše distribucije" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Postavke nadogradnje" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Provjeri postojanje nadogradnji automatski:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "P_reuzmi nadogradnje u pozadini, ali ih ne instaliraj" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Unesi datoteku ključa" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instaliraj sigurnosne nadogradnje bez potvrde" @@ -1642,6 +1647,13 @@ msgstr "DFSG-kompatibilni programi sa neslobodnim ovisnostima" msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Instaliraj nadogradnje" + #~ msgid "Cancel _Download" #~ msgstr "Prekini _preuzimanje" @@ -1731,9 +1743,6 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "Keys" #~ msgstr "Kjučevi" -#~ msgid "Add _Cdrom" -#~ msgstr "Dodaj _CD-ROM" - #~ msgid "Installation Media" #~ msgstr "Instalacijski medij" diff --git a/po/hu.po b/po/hu.po index 80f7f2cc..75c9d3f6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-28 21:22+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -88,47 +88,47 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Szoftverfrissítések" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Kulcs importálása" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Hiba a kiválasztott fájl importálása közben" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "A kiválasztott fájl vagy nem GPG kulcsfájl, vagy sérült." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Az Ön által kijelölt kulcs nem távolítható el. Kérem, jelentse ezt hibaként." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Kérem, adja meg a lemez nevét" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Kérem, helyezzen be egy lemezt a meghajtóba:" @@ -401,7 +401,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Ezek a telepített csomagok már nincsenek hivatalosan támogatva, csak a " @@ -617,7 +617,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" @@ -858,15 +858,15 @@ msgstr "" "A frissítés hitelesítése meghiúsult. Probléma lehet a hálózattal vagy a " "kiszolgálóval. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -908,8 +908,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Telepítés" +msgid "Distribution updates" +msgstr "Frissítés _folytatása" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -936,74 +936,52 @@ msgstr "" msgid "_Check All" msgstr "_Ellenőrzés" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Letöltés mérete: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s frissítést telepíthet" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Kis türelmet, ez eltarthat egy ideig." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "A frissítés befejeződött" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_Telepítés" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Új verzió: %s (Méret: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "%s verzió: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "A terjesztés már nem támogatott" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1013,17 +991,17 @@ msgstr "" "Frissítsen az Ubuntu Linux egy újabb változatára. A frissítéssel kapcsolatos " "információkat az http://www.ubuntu.com weboldalon talál." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "A szoftverindex sérült" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1033,6 +1011,28 @@ msgstr "" "csomagkezelőt vagy futtassa a \"sudo apt-get install -f\" parancsot egy " "terminálban a probléma megoldása érdekében." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1177,27 +1177,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "_CD hozzáadása" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Hitelesítés" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "L_etöltött csomagok törlése:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "A letöltés befejeződött" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Megbízható szoftverszolgáltató publikus kulcsának importálása" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Hálózati frissítések" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1205,50 +1210,50 @@ msgstr "" "Csak az Ubuntu kiszolgálóiról származó biztonsági frissítések kerülnek " "automatikusan telepítésre." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "_Alapértelmezés visszaállítása" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "A disztribúcióra jellemző alapértelmezett kulcsok visszaállítása" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Szoftvertulajdonságok" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Frissítések automatikus keresése:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "Frissítések _letöltése a háttérben, telepítés nélkül" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Kulcsfájl importálása" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Biztonsági frissítések telepítése megerősítés nélkül" @@ -1638,6 +1643,13 @@ msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Telepítés" + #~ msgid "Cancel _Download" #~ msgstr "Letöltés _megszakítása" @@ -1729,9 +1741,6 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "Keys" #~ msgstr "Kulcsok" -#~ msgid "Add _Cdrom" -#~ msgstr "_CD hozzáadása" - #~ msgid "Installation Media" #~ msgstr "Telepítő média" diff --git a/po/id.po b/po/id.po index 01f13cbe..6928cfba 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-28 18:46+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -87,48 +87,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Perangkat Lunak Mutakhir" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Impor kunci" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Kesalahan mengimpor berkas terpilih" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Berkas terpilih mungkin bukan berkas kunci GPG atau berkas mungkin korup." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Kesalahan menghapus kunci" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Silakan masukkan nama untuk cakram" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Silakan masukan cakram ke dalam penggerak" @@ -401,7 +401,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Paket terinstal ini tidak lagi mendapat sokongan resmi, dan sekarang hanya " @@ -615,7 +615,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" @@ -854,15 +854,15 @@ msgstr "" "Otentikasi upgrade gagal. Mungkin terjadi masalah dengan jaringan atau " "dengan server. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Mengunduh berkas %li dari %li dengan %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Mengunduh berkas %li dari %li dengan %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -904,8 +904,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Instal Update" +msgid "Distribution updates" +msgstr "_Lanjutkan Upgrade" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -932,74 +932,52 @@ msgstr "" msgid "_Check All" msgstr "_Periksa" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Ukuran unduh: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Anda dapat instal %s pemutakhiran" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Silakan tunggu, hal ini membutuhkan beberapa waktu." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Pemutakhiran selesai" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Versi baru: %s (Ukuran: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versi %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Distribusi anda tidak disokong lagi" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1009,17 +987,17 @@ msgstr "" "lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." "ubuntu.com untuk informasi lebih lanjut." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1029,6 +1007,28 @@ msgstr "" "Silakan gunakan manajer paket \"Synaptic\" atau jalankan \"sudo apt-get " "install -f\" dalam terminal untuk memperbaiki persoalan ini." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1172,27 +1172,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Tambah _Cdrom" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Otentikasi" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "H_apus berkas perangkat lunak yang telah diunduh:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Unduh telah selesai" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Impor kunci publik dari penyedia perangkal lunak terpercaya" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Pemutakhiran lewat Internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1200,50 +1205,50 @@ msgstr "" "Hanya pemutakhiran keamanan dari server resmi Ubuntu yang akan diinstal " "secara otomatis" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Kembali ke _Baku" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Kembalikan kunci baku dari distribusi anda" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Properti Perangkat Lunak" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Periksa pemutakhiran secara otomatis:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Unduh pemutakhiran di latar belakang, tetapi jangan diinstal" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Impor Berkas Kunci" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instal pemutakhiran keamanan tanpa perlu konfirmasi" @@ -1633,6 +1638,13 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Instal Update" + #~ msgid "Cancel _Download" #~ msgstr "Batalkan _Unduh" @@ -1726,9 +1738,6 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "Keys" #~ msgstr "Kunci" -#~ msgid "Add _Cdrom" -#~ msgstr "Tambah _Cdrom" - #~ msgid "Installation Media" #~ msgstr "Media Instalasi" diff --git a/po/it.po b/po/it.po index 8c425535..19ee6648 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-24 14:01+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -89,52 +89,52 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Aggiornamenti Software" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Sorgente" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Sorgente" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importa chiave" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Errore nell'importare il file selezionato" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Il file selezionato potrebbe non essere un file di chiave GPG o potrebbe " "essere corrotto." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Errore nel rimuovere la chiave" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La chiave selezionata non può essere rimossa. Notificare questo evento come " "bug." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -145,11 +145,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Inserire un nome per il disco" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Inserire un disco nell'unità:" @@ -410,7 +410,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Questi pacchetti, pur essendo installati, non sono più supportati " @@ -629,7 +629,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Il sistema è aggiornato!" @@ -871,15 +871,15 @@ msgstr "" "Fallita l'autenticazione dell'aggiornamento. Potrebbe dipendere da un " "problema con la connessione di rete o con il server. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Scaricamento del file %li di %li a %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Scaricamento del file %li di %li a velocità sconosciuta" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Scaricamento del file %li di %li a %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -923,8 +923,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Installazione degli aggiornamenti" +msgid "Distribution updates" +msgstr "_Riprendi aggiornamento" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -951,75 +951,53 @@ msgstr "" msgid "_Check All" msgstr "_Verifica" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Dati da scaricare: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "È possibile installare %s aggiornamento" msgstr[1] "È possibile installare %s aggiornamenti" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Attendere, l'operazione potrebbere richiedere del tempo." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Aggiornamento completato" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Verifica degli aggiornamenti..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nuova versione: %s (Dimensione: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versione %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "La distribuzione in uso non è più supportata" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1029,17 +1007,17 @@ msgstr "" "versione più aggiornata di Ubuntu Linux. Per maggiori informazioni " "consultare http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "L'indice dei programmi è rovinato" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1049,6 +1027,28 @@ msgstr "" "dei pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get install -f\" " "in un terminale per risolvere il problema." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1192,27 +1192,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Aggiungi C_D-ROM" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autenticazione" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Elimina i file di software scaricati:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Scaricamento completato" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importa la chiave pubblica da un fornitore di software fidato" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Aggiornamenti internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1220,51 +1225,51 @@ msgstr "" "Solo gli aggiornamenti di sicurezza dai servers ufficiali di Ubuntu saranno " "installati automaticamente" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Ripristina pre_definite" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Ripristina le chiavi predefinite della distribuzione in uso" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Proprietà software" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Sorgente" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Verificare aggiornamenti automaticamente:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Scaricare gli aggiornamenti in background, ma non installarli" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "I_mporta file chiave" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "I_nstallare gli aggiornamenti di sicurezza senza richiedere conferma" @@ -1660,6 +1665,13 @@ msgstr "Software compatibile con le DFSG con dipendenze non libere" msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Scaricamento del file %li di %li a velocità sconosciuta" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Installazione degli aggiornamenti" + #~ msgid "Cancel _Download" #~ msgstr "Annulla _scaricamento" @@ -1754,9 +1766,6 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Keys" #~ msgstr "Chiavi" -#~ msgid "Add _Cdrom" -#~ msgstr "Aggiungi C_D-ROM" - #~ msgid "Installation Media" #~ msgstr "Supporto di installazione" diff --git a/po/ja.po b/po/ja.po index 2c8109c8..1a4d0e71 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-24 07:06+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -89,49 +89,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "ソフトウェアのアップデート" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "ソース" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "ソース" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "鍵のインポート" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "選択したファイルのインポートエラー" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "鍵削除のエラー" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -142,11 +142,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "ディスク名を入力してください" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "ディスクをドライブに挿入してください:" @@ -399,7 +399,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "インストールされているこれらのパッケージは、もう公式にサポートされておらず、" @@ -610,7 +610,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" @@ -847,15 +847,15 @@ msgstr "" "アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題で" "す。 " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "ダウンロード中: 速度不明で %li のうち %li" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -897,8 +897,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "アップデートをインストール中" +msgid "Distribution updates" +msgstr "アップグレードを再開する(_R)" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -925,74 +925,52 @@ msgstr "" msgid "_Check All" msgstr "チェック(_C)" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "ダウンロードサイズ: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 個のアップデートがインストールされます" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "しばらくお待ちください。少々時間がかかります。" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "アップデートが完了しました" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "インストールできるアップデートをチェック" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "新しいバージョン: %s (サイズ: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "バージョン %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "このディストリビューションはすでにサポート対象外です" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1002,17 +980,17 @@ msgstr "" "Ubuntu Linux にアップグレードしてください。\r\n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1022,6 +1000,28 @@ msgstr "" "ケージマネージャを使用するか、 まずこの問題を解決するために \"sudo apt-get " "install -f\" コマンドをターミナルで実行してください。" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1165,27 +1165,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "CD-ROM の追加(_C)" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "認証" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "ダウンロードしたファイルを削除(_E):" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "ダウンロードが完了しました" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "信頼したソフトウェア供給者の公開鍵をインポートする" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "インターネットアップデート" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1193,51 +1198,51 @@ msgstr "" "公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールさ" "れます。" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "デフォルトに戻す(_D)" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "ディストリビューション標準の鍵を元に戻す" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "ソフトウェアのプロパティ" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "ソース" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "アップデートを自動的にチェックする(_C):" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "アップデートを自動的にダウンロード、ただしインストールはしない(_D)" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "鍵ファイルのインポート(_I)" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "確認せずにセキュリティアップデートをインストール(_I)" @@ -1627,6 +1632,13 @@ msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "ダウンロード中: 速度不明で %li のうち %li" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "アップデートをインストール中" + #~ msgid "Cancel _Download" #~ msgstr "ダウンロードをキャンセル(_D)" @@ -1718,9 +1730,6 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "Keys" #~ msgstr "" -#~ msgid "Add _Cdrom" -#~ msgstr "CD-ROM の追加(_C)" - #~ msgid "Installation Media" #~ msgstr "インストールメディア" diff --git a/po/ka.po b/po/ka.po index 2384bc56..2beae0f1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:19+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -90,49 +90,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "პროგრამული განახლებები" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "გასაღების იმპორტი" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "ამორჩეული ფაილის იმპორტი ვერ მოხერხდა" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "ამორჩეული ფაილი შეიძლება არ იყოს GPG გასაღების ფაილი ან შეიძლება იყოს " "დაზიანებული." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "გასღების წაშლა ვერ მოხერხდა" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "ამორჩეული გასაღების წაშლა ვე რმოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -143,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "შეიყვანეთ დისკის სახელი" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "მოათავსეთ დისკი დისკწამყვანში:" @@ -386,7 +386,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "არა და ახლა n t ჩართული -თვის -ში ნაბიჯი " @@ -588,7 +588,7 @@ msgstr "ვის დახურვა ყველა გახსნა დ #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" @@ -829,14 +829,14 @@ msgid "" "or with the server. " msgstr "მიმდენარეობს აუტენტიფიკაცია ვერ შედგა a ან " -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -880,8 +880,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "განახლებების _დაყენება" +msgid "Distribution updates" +msgstr "განახლება _გაგრძელება" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -908,74 +908,52 @@ msgstr "" msgid "_Check All" msgstr "შ_ემოწმება" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "ჩამოსატვირთის ზომა: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "თქვენ შეგიძლიათ %s განახლების ჩადგმა" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "განახლება გასრულებულია" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "ახალი ვერსია: %s (ზომა: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "ვერსია %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 #, fuzzy msgid "" "You will not get any further security fixes or critical updates. Upgrade to " @@ -985,17 +963,17 @@ msgstr "" "თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი " "იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 #, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " @@ -1004,6 +982,28 @@ msgid "" msgstr "" "ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1148,81 +1148,86 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy +msgid "Add Cdrom" +msgstr "დამატება" + +#: ../data/glade/SoftwareProperties.glade.h:10 +#, fuzzy msgid "Authentication" msgstr "აუთენტიფიკაცია" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "ჩამოტვირთული პაკეტების ფაილების წ_აშლა:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "ჩამოტვირთვა ტოლია სრული" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "იმპორტი გასაღები a" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "ინტერნეტ განახლებები" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 #, fuzzy msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "მხოლოდ" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "ნაგულისხმები პარამეტრები" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "ნაგულისხმევი ის დისტრიბუტივი" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "პროგრამა პარამეტრები" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "განახლებების ავტომატური შ_ემოწმება:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "ჩამოტვირთვა -ში არა" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "იმპორტი გასაღები ფაილი" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 #, fuzzy msgid "_Install security updates without confirmation" msgstr "დაყენება" @@ -1607,6 +1612,10 @@ msgstr "პროგრამა თავისუფალი დამოკ msgid "Non-DFSG-compatible Software" msgstr "პროგრამა" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "განახლებების _დაყენება" + #~ msgid "Cancel _Download" #~ msgstr "ჩამოტვირთვის _გაუქმება" @@ -1688,10 +1697,6 @@ msgstr "პროგრამა" #~ msgid "Keys" #~ msgstr "გასაღებები" -#, fuzzy -#~ msgid "Add _Cdrom" -#~ msgstr "დამატება" - #, fuzzy #~ msgid "Installation Media" #~ msgstr "დაყენება მედია" diff --git a/po/ko.po b/po/ko.po index 1152fb5e..9f8df151 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-28 15:14+0000\n" "Last-Translator: darehanl \n" "Language-Team: Korean \n" @@ -88,46 +88,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "소프트웨어 업데이트" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "키 가져오기" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "선택한 파일 가져오기 오류" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "선택된 파일은 GPG 키 파일이 아니거나 잘못된 것입니다." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "키 삭제 오류" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "선택한 키를 지울 수 없습니다. 버그 리포팅 하십시오." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -138,11 +138,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "디스크에 사용할 이름을 입력하십시오." -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "드라이브에 디스크를 넣으십시오:" @@ -395,7 +395,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "이 소프트웨어들은 더 이상 공식적으로 지원하지 않으며, 이제 Universe 계열에 해" @@ -604,7 +604,7 @@ msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문 #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." @@ -843,15 +843,15 @@ msgstr "" "업그레이드를 인증하는데 실패했습니다.네트워크나 서버에 문제가 있을 수 있습니" "다. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%li 의 %li 파일 내려 받는 중, 속도 %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "%li 의 %li 파일 내려 받는 중, 속도 알 수 없음" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "%li 의 %li 파일 내려 받는 중, 속도 %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -892,8 +892,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "업데이트를 설치(_I)" +msgid "Distribution updates" +msgstr "업그레이드 계속(_R)" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -920,74 +920,52 @@ msgstr "" msgid "_Check All" msgstr "점검(_C)" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "다운로드 크기: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 개의 업데이트를 설치할 수 있습니다." -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "잠시만 기다리십시오. 이 작업은 약간의 시간이 걸립니다." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "업데이트가 끝났습니다." -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "업데이트를 설치(_I)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "새 버전: %s (크기: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "버전 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "더 이상 지원되지 않는 배포판입니다." -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -997,17 +975,17 @@ msgstr "" "그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" "서 보실 수 있습니다." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'를 이용할 수 있습니다" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1016,6 +994,28 @@ msgstr "" "어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 " "\"sudo apt-get install -f\"를 실행하여 이 문제를 먼저 해결하십시오." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1158,76 +1158,81 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "CD롬 추가(_C)" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "인증" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "다운로드 받은 소프트웨어 파일 삭제(_e):" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "다운로드가 끝났습니다." -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "믿을 만한 소프트웨어 제공자로부터 공개 키를 가져옵니다." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "인터넷 업데이트" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "공식 우분투 서버의 보안 업데이트만 자동으로 설치됩니다." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "기본값 불러오기(_D)" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "배포판의 기본 키 불러오기" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "소프트웨어 설정" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "업데이트를 자동으로 확인(_C):" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "백그라운드에서 업데이트 다운로드하되, 설치는 하지 않음(_D)" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "키 가져오기(_I)" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "확인없이 보안 업데이트 설치(_I)" @@ -1613,6 +1618,13 @@ msgstr "DFSG 호환이지만 자유소프트웨어가 아닌 의존성이 있는 msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 안되는 소프트웨어" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "%li 의 %li 파일 내려 받는 중, 속도 알 수 없음" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "업데이트를 설치(_I)" + #~ msgid "Cancel _Download" #~ msgstr "다운로드 취소(_D)" @@ -1702,9 +1714,6 @@ msgstr "DFSG와 호환이 안되는 소프트웨어" #~ msgid "Keys" #~ msgstr "" -#~ msgid "Add _Cdrom" -#~ msgstr "CD롬 추가(_C)" - #~ msgid "Installation Media" #~ msgstr "설치 미디어" diff --git a/po/ku.po b/po/ku.po index 4d7c2631..31740c00 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" @@ -88,45 +88,45 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -134,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -350,7 +350,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -545,7 +545,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" @@ -769,14 +769,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -813,7 +813,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -838,97 +838,97 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Mezinahiya daxistinê: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Tu dikarî %s rojanekirinê saz bikî" msgstr[1] "Tu dikarî %s rojanekirinan saz bikî" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Rojanekirin temam bû" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Guhertoya %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1058,75 +1058,79 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Daxistin hatiye temam kirin" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Taybetmendiyên Nivîsbariyê" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/lt.po b/po/lt.po index 0aca5ce7..bd7f8252 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-28 20:07+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -88,47 +88,47 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Programinės įrangos atnaujinimai" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importuoti raktą" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Importuojant pasirinktą failą įvyko klaida" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Pasirinktas failas gali būti sugadintas arba ne GPG rakto failas." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Įveskite disko pavadinimą" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Įdėkite diską į įrenginį:" @@ -387,7 +387,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Šie įdiegti paketai nebėra oficialiai palaikomi. Dabar juos palaiko " @@ -607,7 +607,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" @@ -850,15 +850,15 @@ msgstr "" "Nepavyko patvirtinti atnaujinimo autentiškumo. Gali būti tinklo arba " "serverio problema. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -898,8 +898,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Diegiami atnaujinimai" +msgid "Distribution updates" +msgstr "_Tęsti atnaujinimą" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -926,35 +926,13 @@ msgstr "" msgid "_Check All" msgstr "_Patikrinti" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -962,40 +940,40 @@ msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[1] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[2] "Rodyti ir įdiegti galimus atnaujinimus" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Palaukite, tai gali užtrukti." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Atnaujinimas užbaigtas" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nauja versija: %s (Dydis: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versija %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Jūsų distribucija daugiau nebepalaikoma" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1005,17 +983,17 @@ msgstr "" "Atnaujinkite į naujausią „Ubuntu Linux“ versiją. Daugiau informacijos apie " "atnaujinimą rasite http://www.ubuntu.com ." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1025,6 +1003,28 @@ msgstr "" "pasinaudokite „Synaptic“ arba terminale įvykdykite komandą „sudo apt-get " "install -f“, norėdami ištaisyti šią problemą." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1168,27 +1168,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Pridėti _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autentikacija" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Iš_trinti atsiųstus programinės įrangos failus:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Atsiųsta" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importuoti viešą raktą iš patikimo programinės įrangos tiekėjo" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internetiniai atnaujinimai" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 #, fuzzy msgid "" "Only security updates from the official Ubuntu servers will be installed " @@ -1197,51 +1202,51 @@ msgstr "" "Tik saugumo atnaujinimai iš oficialių „Ubuntu“ serverių bus automatiškai " "įdiegti, todėl turi būti įdiegtas „unattended-upgrades“ programų paketas." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Atkurti _numatytuosius" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Atkurti _numatytuosius Jūsų distributyvui raktus" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Programinės įrangos šaltiniai" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Ieškoti atnaujinimų automatiškai:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Atsiųsti atnaujinimus fone, tačiau jų neįdiegti" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "Importuoti raktą" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "Į_diegti saugumo atnaujinimus neklausiant patvirtinimo" @@ -1630,6 +1635,13 @@ msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Diegiami atnaujinimai" + #~ msgid "Cancel _Download" #~ msgstr "Atšaukti _atsiuntimą" @@ -1717,9 +1729,6 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgid "Keys" #~ msgstr "Raktai" -#~ msgid "Add _Cdrom" -#~ msgstr "Pridėti _CD" - #~ msgid "Installation Media" #~ msgstr "Diegimo laikmenos" diff --git a/po/mk.po b/po/mk.po index 63ca4336..06b8b8bb 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -89,51 +89,51 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Надградба на софтвер" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Изворен код" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Изворен код" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Грешка при увоз на избраната датотека" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Избраната датотека може да не е GPG датотека или пак може да е расипана." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -141,11 +141,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -365,7 +365,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -565,7 +565,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" @@ -797,14 +797,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -848,7 +848,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "Инсталирам надградби..." #. TRANSLATORS: updates from an 'unknown' origin @@ -875,35 +875,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, fuzzy, python-format msgid "Download size: %s" msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -911,64 +889,86 @@ msgstr[0] "Инсталирам надградби..." msgstr[1] "Инсталирам надградби..." msgstr[2] "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Проверувам за надградби..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Верзија %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуција повеќе не е поддржана" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1100,81 +1100,85 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Проверка" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Преземам промени" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Отстрани го избраниот клуч од доверливиот привезок." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "Надградби од интернет" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Врати стандардно" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "Врати ги стандардните клучеви" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Софтверски својства" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Изворен код" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "Проверувај за надградби на секои" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1558,6 +1562,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Инсталирам надградби..." + #, fuzzy #~ msgid "Important security updates of Ubuntu" #~ msgstr "Безбедносни надградби за Debian Stable" diff --git a/po/ms.po b/po/ms.po index 81a4d520..6c9c8b03 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-30 13:49+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -88,48 +88,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Kekunci impot" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Ralat semasa mengimpot fail yang dipilih" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Fail yang dipilih mungkin bukan fail kekunci GPG atau fail mungkin rosak" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Ralat semasa mengeluarkan kekunci" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Kekunci yang anda pilih tidak dapat di keluarkan. Sila laporkan ini sebagai " "ralat pepijat." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -140,11 +140,11 @@ msgstr "" "↵\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Sila masukkan nama untuk cakera padat" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Sila masukkan cakera padat kedalam pemacu" @@ -387,7 +387,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Pakej-pakej yang telah dipasang ini sudah tidak ada sokonga/bantuan rasmi " @@ -585,7 +585,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -810,14 +810,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -854,7 +854,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -879,97 +879,97 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1104,73 +1104,77 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/nb.po b/po/nb.po index 385b046c..7741c9c1 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-29 13:06+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -88,49 +88,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Programvareoppdateringer" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Kilde" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Kilde" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importer nøkkel" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Feil under importering av valgt fil" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Enten er valgt fil ikke en GPG-nøkkelfil, eller så er den kanskje skadet" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Kunne ikke fjerne nøkkelen" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -141,11 +141,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Vennligst oppgi et navn for platen" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Vennligst sett inn en plate i CD-spilleren:" @@ -404,7 +404,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Disse installerte pakkene er ikke lenger offisielt støttet og er nå kun " @@ -619,7 +619,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" @@ -862,15 +862,15 @@ msgstr "" "Autentiseringen av oppgraderingen feilet. Det kan være en feil med " "nettverket eller med tjeneren. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laster ned filen %li av %li med %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Laster ned fil %li av %li ved ukjent hastighet" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Laster ned filen %li av %li med %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -912,8 +912,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Installerer oppdateringer" +msgid "Distribution updates" +msgstr "_Gjenoppta oppgradering" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -940,75 +940,53 @@ msgstr "" msgid "_Check All" msgstr "Sjekk" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Nedlastingsstørrelse: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s oppdatering" msgstr[1] "Du kan installere %s oppdateringer" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Vennligst vent, dette kan ta litt tid." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Oppdateringen er fullført" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Sjekker for tilgjengelige oppdateringer" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny versjon: %s (Størrelse: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1018,17 +996,17 @@ msgstr "" "oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." "ubuntu.com for mer informasjon om oppgradering." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1038,6 +1016,28 @@ msgstr "" "pakkehåndteringsprogrammet \"Synaptic\" eller kjør kommandoen \"sudo apt-get " "install -f\" i en terminal for å løse denne situasjonen." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1180,27 +1180,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Legg til _cdrom" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autentisering" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Sl_ett nedlastede filer:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Nedlastingen er fullført" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importer den offentlige nøkkelen fra en tiltrodd programvareutgiver" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Oppdateringer fra Internett" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1208,51 +1213,51 @@ msgstr "" "Kun sikkerhetsoppdateringer fra de offisielle Ubuntu-tjenerne vil bli " "installert automatisk." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Gjenopprett stan_dardverdier" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Gjenopprett standardnøkler for din distribusjon" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Egenskaper for programvare" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Kilde" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Se etter oppdateringer automatisk:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Last ned oppdateringer i bakgrunnen, men ikke installér dem" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Importer fil med nøkler" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Installer sikkerhetsoppdateringer uten bekreftelse" @@ -1645,6 +1650,13 @@ msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Laster ned fil %li av %li ved ukjent hastighet" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Installerer oppdateringer" + #~ msgid "Cancel _Download" #~ msgstr "Avbryt ne_dlasting" @@ -1735,9 +1747,6 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "Keys" #~ msgstr "Taster" -#~ msgid "Add _Cdrom" -#~ msgstr "Legg til _cdrom" - #~ msgid "Installation Media" #~ msgstr "Installasjonsmedia" diff --git a/po/ne.po b/po/ne.po index ac11acd6..7b136f19 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -90,48 +90,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "सफ्टवेयर अद्यावधिकहरु" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "स्रोत" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "स्रोत" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "चयन गरिएको फाइल आयात गर्दा त्रुटि" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "चयन गरिएको फाइल जिपिजि कुञ्जि फइल नहुन सक्छ अथवा यो दुषित हुन सक्दछ" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -358,7 +358,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -555,7 +555,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" @@ -785,14 +785,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -834,7 +834,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. TRANSLATORS: updates from an 'unknown' origin @@ -861,99 +861,99 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, fuzzy, python-format msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" msgstr[1] "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "संस्करण %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "तपाईंको वितरण समर्थित छैन" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1086,81 +1086,86 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy +msgid "Add Cdrom" +msgstr "सिडि थप्नुहोस" + +#: ../data/glade/SoftwareProperties.glade.h:10 +#, fuzzy msgid "Authentication" msgstr "प्रमाणिकरण" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "विश्वास गरिएको कुञ्जिरिंग बाट चयन गरिएको कुञ्जि हटाउनुहोस" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "इन्टरनेट अद्यावधिकहरु" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "सफ्टवेयर गुणहरु" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "स्रोत" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1546,6 +1551,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "स्तरवृद्धिहरु स्थापना गर्दै" + #, fuzzy #~ msgid "Your system has already been upgraded." #~ msgstr "तपाईंको प्रणालीमा टुटेका प्याकेजहरु छन!" @@ -1579,10 +1588,6 @@ msgstr "" #~ msgid "Keys" #~ msgstr "विवरणहरु" -#, fuzzy -#~ msgid "Add _Cdrom" -#~ msgstr "सिडि थप्नुहोस" - #, fuzzy #~ msgid "Installation Media" #~ msgstr "स्तरवृद्धिहरु स्थापना गर्दै" diff --git a/po/nl.po b/po/nl.po index 0e2b724b..4ebdacdf 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-24 01:32+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -87,50 +87,50 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Software-updates" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Sleutel importeren" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Fout bij het importeren van het geselecteerde bestand." -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Het geselecteerde bestand is misschien geen GPG-sleutel, of het kan " "beschadigd zijn." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Fout bij het verwijderen van de sleutel" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "De door u geselecteerde sleutel kon niet verwijderd worden. Gelieve dit als " "fout te melden." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -141,11 +141,11 @@ msgstr "" "↵\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Geef het cd-schijfje een naam" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Plaats een schijf in de speler:" @@ -408,7 +408,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Deze geïnstalleerde pakketten worden niet meer officieel ondersteund, maar " @@ -626,7 +626,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" @@ -866,15 +866,15 @@ msgstr "" "De echtheidscontrole van de upgrade is mislukt. Er is mogelijk een probleem " "met het netwerk of de server. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -920,8 +920,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Up_dates installeren" +msgid "Distribution updates" +msgstr "_Upgrade hervatten" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -948,75 +948,53 @@ msgstr "" msgid "_Check All" msgstr "_Controleren" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Downloadgrootte: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "U kunt %s update installeren" msgstr[1] "U kunt %s updates installeren" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Een ogenblik geduld, dit kan even duren." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "De update is voltooid" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nieuwe versie: %s (Grootte: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versie %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Uw distributie wordt niet langer ondersteund" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1026,17 +1004,17 @@ msgstr "" "upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." "com voor meer informatie over upgraden." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Software-index is beschadigd" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1046,6 +1024,28 @@ msgstr "" "Gebruik het pakkettenbeheerprogramma \"Synaptic\" of gebruik \"sudo apt-get " "install -f\" in een terminalvenster om eerst dit probleem te verhelpen." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1188,27 +1188,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "_CD-rom toevoegen" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Echtheidscontrole" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Gedownloade softwarebestanden _verwijderen:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Downloaden is voltooid" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importeer de publieke sleutel van een vertrouwde softwareleverancier" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internet-updates" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1216,50 +1221,50 @@ msgstr "" "Alleen veiligheidsupdates van de officiële Ubuntu servers zullen automatisch " "geïnstalleerd worden" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "_Standaarden herstellen" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Herstel de standaard sleutels van uw distributie" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Software-eigenschappen" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Automatisch controleren op aanwezigheid van updates:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "Up_dates wel in de achtergrond downloaden, maar niet installeren" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "Sleutel i_mporteren" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Veiligheids-updates zonder te vragen installeren" @@ -1650,6 +1655,13 @@ msgstr "Software compatibel met DFSG, maar met niet-vrije afhankelijkheden" msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Up_dates installeren" + #~ msgid "Cancel _Download" #~ msgstr "Download _annuleren" @@ -1741,9 +1753,6 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "Keys" #~ msgstr "Sleutels" -#~ msgid "Add _Cdrom" -#~ msgstr "_CD-rom toevoegen" - #~ msgid "Installation Media" #~ msgstr "Installatiemedium" diff --git a/po/no.po b/po/no.po index 1710e655..3b153941 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -89,49 +89,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Programvareoppdateringer" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Kilde" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Kilde" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Feil under importering av fil" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Den valgte filen er ikke en GPG-fil eller så er den skadet." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Feil under fjerning av nøkkel" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -360,7 +360,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -558,7 +558,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" @@ -790,14 +790,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -839,7 +839,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "Installerer oppdateringer..." #. TRANSLATORS: updates from an 'unknown' origin @@ -866,99 +866,99 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, fuzzy, python-format msgid "Download size: %s" msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installerer oppdateringer..." msgstr[1] "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1090,81 +1090,86 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Legg til _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autentisering" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Laster ned endringer" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Fjern den valgte nøkkelen fra den sikre nøkkelringen." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "Oppdateringer fra Internett" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Gjenopprettt forvalgte nøkler" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "Gjenopprettt forvalgte nøkler" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Egenskaper for programvare" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Kilde" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "Installerer oppdateringer..." -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1550,6 +1555,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Installerer oppdateringer..." + #, fuzzy #~ msgid "Your system has already been upgraded." #~ msgstr "Systemet har ødelagte pakker!" @@ -1583,10 +1592,6 @@ msgstr "" #~ msgid "Keys" #~ msgstr "Detaljer" -#, fuzzy -#~ msgid "Add _Cdrom" -#~ msgstr "Legg til _CD" - #, fuzzy #~ msgid "Installation Media" #~ msgstr "Installerer oppdateringer..." diff --git a/po/oc.po b/po/oc.po index 82b1e6da..0313725c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-29 08:11+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -89,48 +89,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importar clau" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Error al moment d'importar lo fichièr seleccionat" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Lo fichièr seleccionat es benlèj pas una clau GPG o es possible que siá " "corrumput." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Error al moment de suprimir la clau" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -141,11 +141,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Picatz un nom pel disc" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Metètz un disc dins lo legidor :" @@ -357,7 +357,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -551,7 +551,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -776,14 +776,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -821,7 +821,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "Mesas a jorn per internet" #. TRANSLATORS: updates from an 'unknown' origin @@ -848,98 +848,98 @@ msgstr "" msgid "_Check All" msgstr "_Verificar" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Talha de la descarga : %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podètz installar %s mesa a jorn" msgstr[1] "Podètz installar %s mesas a jorn" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Mesas a jorn per internet" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s : \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1077,74 +1077,79 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Apondre un CD-ROM" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Talha de la descarga : %s" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1506,6 +1511,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Mesas a jorn per internet" + #, fuzzy #~ msgid "Updates of Ubuntu" #~ msgstr "Metre a jorn Ubuntu" @@ -1513,9 +1522,6 @@ msgstr "" #~ msgid "Keys" #~ msgstr "Claus" -#~ msgid "Add _Cdrom" -#~ msgstr "Apondre un CD-ROM" - #~ msgid " " #~ msgstr " " diff --git a/po/pa.po b/po/pa.po index 7a4b7a28..cf757aba 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-04-28 23:31+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -89,46 +89,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -136,11 +136,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -352,7 +352,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -547,7 +547,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -775,14 +775,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -822,8 +822,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." +msgid "Distribution updates" +msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -848,98 +848,98 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." msgstr[1] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1073,76 +1073,81 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "_CD ਸ਼ਾਮਲ" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "ਪ੍ਰਮਾਣਿਕਤਾ" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "ਸਾਫਟਵੇਅਰ ਪਸੰਦ" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1494,6 +1499,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." + #, fuzzy #~ msgid "Important security updates of Ubuntu" #~ msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" @@ -1514,10 +1523,6 @@ msgstr "" #~ msgid "Keys" #~ msgstr "ਵੇਰਵਾ" -#, fuzzy -#~ msgid "Add _Cdrom" -#~ msgstr "_CD ਸ਼ਾਮਲ" - #, fuzzy #~ msgid "Installation Media" #~ msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." diff --git a/po/pl.po b/po/pl.po index d4ac294e..90cf55e8 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:59+0000\n" "Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" @@ -88,48 +88,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Aktualizacje oprogramowania" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Źródłowy" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Źródłowy" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Zaimportuj klucz" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Błąd podczas importowania wybranego pliku" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Wybrany plik może nie być kluczem GPG lub może być uszkodzony." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -140,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Proszę podać nazwę dla płyty" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Proszę włożyć płytę do napędu:" @@ -400,7 +400,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Te zainstalowane pakiety nie są już oficjalnie wspierane, są teraz " @@ -619,7 +619,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" @@ -860,15 +860,15 @@ msgstr "" "Uwierzytelnienie aktualizacji nie powiodło się. To może być problem sieciowy " "lub z serwerem. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Pobieranie pliku %li z %li z prędkością %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Pobieranie pliku %li z %li z prędkością %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -910,8 +910,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Instalowanie pakietów" +msgid "Distribution updates" +msgstr "_Wznów aktualizację" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -938,35 +938,13 @@ msgstr "" msgid "_Check All" msgstr "Sp_rawdź" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Rozmiar do pobrania: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -974,40 +952,40 @@ msgstr[0] "Ilość dostępnych aktualizacji: %s" msgstr[1] "Ilość dostępnych aktualizacji: %s" msgstr[2] "Ilość dostępnych aktualizacji: %s" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Proszę czekać, to może chwilę potrwać." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Aktualizacja została ukończona." -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Sprawdź dostępne aktualizacje" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nowa wersja: %s (Rozmiar: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Wersja %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Twoja dystrybucja nie jest już wspierana" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1017,17 +995,17 @@ msgstr "" "krytycznych aktualizacji. Zaktualizuj do nowszej wersji Ubuntu Linux. " "Odwiedź http://www.ubuntu.com po więcej informacji." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1037,6 +1015,28 @@ msgstr "" "Proszę użyć \"Synaptic Menedżer Pakietów\" lub wydać polecenie \"sudo apt-" "get install -f\" w terminalu, aby naprawić ten problem." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1180,27 +1180,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Dodaj płytę _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Uwierzytelnianie" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Usuń pobrane pliki oprogramowania:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Pobieranie zostało zakończone." -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Zaimportuj publiczny klucz od zaufanego dostawcy oprogramowania" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Aktualizacje internetowe" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1208,51 +1213,51 @@ msgstr "" "Aktualizacje zabezpieczeń zostaną zainstalowane automatycznie wyłącznie z " "oficjalnych serwerów Ubuntu" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Przywróć _domyślne klucze" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Przywróć domyślne klucze dystrybucji" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Oprogramowanie" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Źródłowy" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Sprawdzaj dostępność aktualizacji automatycznie:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Pobieraj aktualizacje w tle, ale ich nie instaluj" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "Za_importuj klucz" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instaluj aktualizacje bezpieczeństwa bez potwierdzania" @@ -1644,6 +1649,13 @@ msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Instalowanie pakietów" + #~ msgid "Cancel _Download" #~ msgstr "_Przerwij pobieranie" @@ -1736,9 +1748,6 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Keys" #~ msgstr "Klucze" -#~ msgid "Add _Cdrom" -#~ msgstr "Dodaj płytę _CD" - #~ msgid "Installation Media" #~ msgstr "Nośnik instalacji" diff --git a/po/pt.po b/po/pt.po index 46d36d9f..3767421c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-24 10:17+0000\n" "Last-Translator: Joao Carvalhinho \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -86,49 +86,49 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Actualizações de Software" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importar chave" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Erro ao importar ficheiro seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "O ficheiro seleccionado pode não ser um ficheiro de chave GPG ou pode estar " "corrompido." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Erro ao remover a chave" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -139,11 +139,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Por favor introduza um nome para o disco" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Por favor introduza um disco no leitor:" @@ -403,7 +403,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Estes pacotes instalados já não são suportados oficialmente, e agora são " @@ -621,7 +621,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" @@ -860,15 +860,15 @@ msgstr "" "Autenticação da actualização falhou. Poderá existir um problema com a rede " "ou com o servidor. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "A descarregar ficheiro %li de %li a %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "A descarregar ficheiro %li de %li a %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -912,8 +912,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "A instalar actualizações" +msgid "Distribution updates" +msgstr "_Retomar Actualização?" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -940,75 +940,53 @@ msgstr "" msgid "_Check All" msgstr "_Verificar" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Pode instalar %s actualização" msgstr[1] "Pode instalar %s actualizações" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Por favor aguarde, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "A actualização está completa" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Verificar por actualizações disponíveis" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nova versão: %s (Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versão %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "A sua distribuição já não é suportada" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1018,17 +996,17 @@ msgstr "" "versão mais recente do Ubuntu Linux. Veja http://www.ubuntu.com para mais " "informação em como actualizar." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "O índice de software está quebrado" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1038,6 +1016,28 @@ msgstr "" "gestor de pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" numa " "consola para corrigir este problema em primeiro lugar." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1181,27 +1181,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Adicionar _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autenticação" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "A_pagar ficheiros descarregados:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "O Download está completo" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importar a chave pública de um fornecedor de software confiável" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Actualizações Internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1209,50 +1214,50 @@ msgstr "" "Apenas actualizações de segurança dos servidores oficiais do Ubuntu serão " "instaladas automaticamente." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Restaurar _Definições" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Restaurar as chaves padrão da sua distribuição" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Preferências de Software" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Procurar por actualizações automaticamente:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Descarregar actualizações silenciosamente, sem as instalar" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Importar Chave de Ficheiro" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instalar actualizações de segurança sem confirmação" @@ -1644,6 +1649,13 @@ msgstr "Software compatível-DFSG com Dependências Não-Livres" msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "A instalar actualizações" + #~ msgid "Cancel _Download" #~ msgstr "Cancelar _Descarregamento" @@ -1735,9 +1747,6 @@ msgstr "Software compatível-DFSG" #~ msgid "Keys" #~ msgstr "Chaves" -#~ msgid "Add _Cdrom" -#~ msgstr "Adicionar _CD" - #~ msgid "Installation Media" #~ msgstr "Media de Instalação" diff --git a/po/pt_BR.po b/po/pt_BR.po index e58bc03e..fe604df0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-26 22:31+0000\n" "Last-Translator: KurtKraut \n" "Language-Team: Ubuntu-BR \n" @@ -87,52 +87,52 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Modificando os canais de programas" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Source" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importar Chave" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Erro importando o arquivo selecionado" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "O arquivo selecionado pode não ser um arquivo de chave GPG ou pode estar " "corrompido." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Erro removendo a chave" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que você selecionou não pôde se removida. Por favor reporte isto " "como um erro." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -143,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Por favor digite um nome para o disco" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Por favor insira um disco no drive:" @@ -407,7 +407,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Estes pacotes já instalados não são mais oficialmente suportados, e agora " @@ -622,7 +622,7 @@ msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" @@ -863,15 +863,15 @@ msgstr "" "Falha ao autenticar a atualização. Pode ter havido um problema com a rede ou " "com o servidor. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Obtendo arquivo %li de %li a %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Obtendo arquivo %li de %li a %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -917,8 +917,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Instalando Atualizações" +msgid "Distribution updates" +msgstr "Continua_r Atualização" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -945,75 +945,53 @@ msgstr "" msgid "_Check All" msgstr "_Verificar" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Você pode instalar %s atualização" msgstr[1] "Você pode instalar %s atualizações" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Por favor, espere, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Atualização completa" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Procurar updates disponíveis" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "New version: %s (Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Sua distribuição não é mais suportada" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1023,17 +1001,17 @@ msgstr "" "falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. " "Veja http://www.ubuntu-br.org" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "A índex de software está quebrado" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1043,6 +1021,28 @@ msgstr "" "Gerenciador de Pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" " "em um terminal para resolver esse problema primeiro." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1187,27 +1187,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Adicionar _Cdrom" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autenticação" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Apagar arquivos d_e programas obtidos:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "O Download está completo" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importar a chave pública de um fornecedor de programas confiável" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Atualizações via Internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1215,52 +1220,52 @@ msgstr "" "Somente atualizações de segurança do servidor oficial do Ubuntu serão " "instaladas automaticamente." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Restaurar Pa_drões" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Restaurar as chaves padrão da sua distribuição" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Software Properties" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Source" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "Verifi_car por atualizações automaticamente:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Obter atualizações em segundo plano, mas não instalá-las" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_Importar Arquivo Chave" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instalar novas atualizações de segurança sem confirmação" @@ -1653,6 +1658,13 @@ msgstr "Programa compatível com a DFSG mas com dependências não-livres" msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Instalando Atualizações" + #~ msgid "Cancel _Download" #~ msgstr "Cancelar _Download" @@ -1744,9 +1756,6 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Keys" #~ msgstr "Chaves" -#~ msgid "Add _Cdrom" -#~ msgstr "Adicionar _Cdrom" - #~ msgid "Installation Media" #~ msgstr "Mídia de Instalação" diff --git a/po/ro.po b/po/ro.po index 6deb2735..6329559e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-24 17:39+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -88,53 +88,53 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Actualizări software" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "" "Binar\n" "Sursă" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "" "Binar\n" "Sursă" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 #, fuzzy msgid "Import key" msgstr "Importă cheie" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Eroare la importarea fişierului selectat" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Fişierul selectat nu pare a fi o cheie GPG sau poate fi corupt." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Eroare la ştergerea cheii." -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -145,11 +145,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Introduceţi un nume pentru disc" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Introduceţi un disc în unitate:" @@ -375,7 +375,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -570,7 +570,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" @@ -797,14 +797,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -848,8 +848,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_Instalează actualizarile" +msgid "Distribution updates" +msgstr "_Continuă Actualizarea" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -875,35 +875,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -911,64 +889,86 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_Instalează actualizarile" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Versiunea nouă: %s (Mărime: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Versiunea %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Distribuţia dvs. nu mai este suportată" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1109,80 +1109,84 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autentificare" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Elimină cheia selectată din keyring-ul de încredere." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Actualizări de pe Internet" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Restaurează cheile implicite." -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Preferinţe software" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "" "Binar\n" "Sursă" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "Importă cheie" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1566,6 +1570,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_Instalează actualizarile" + #~ msgid "Could not find any upgrades" #~ msgstr "Nu s-au găsit actualizări" diff --git a/po/ru.po b/po/ru.po index 07dbd13d..f9e9eced 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-25 19:23+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -89,47 +89,47 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Обновления программ" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Импортировать ключ" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Ошибка при импортировании выбранного файла" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Возможно выбранный файл не является файлом ключа GPG или поврежден." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Ошибка при удалении ключа" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -140,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Введите название для диска" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Пожалуйста, вставьте диск в привод:" @@ -401,7 +401,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Эти установленные пакеты больше не поддерживаются официально. Теперь их " @@ -619,7 +619,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" @@ -857,15 +857,15 @@ msgstr "" "Проверка подлинности обновления не удалась. Возможно, возникла проблема в " "сети или на сервере. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Загрузка файла %li из %li со скоростью %s/с" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Загрузка файла %li из %li с неизвестной скоростью" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Загрузка файла %li из %li со скоростью %s/с" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -909,8 +909,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Установить обновления" +msgid "Distribution updates" +msgstr "_Продолжить обновление" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -937,35 +937,13 @@ msgstr "" msgid "_Check All" msgstr "Проверить" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Размер загружаемых данных: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -973,40 +951,40 @@ msgstr[0] "Вы можете установить %s обновление" msgstr[1] "Вы можете установить %s обновления" msgstr[2] "Вы можете установить %s обновлений" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Пожалуйста подождите, это может занять некоторое время." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Обновление завершено" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Установить обновления" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Новая версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Версия %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Ваша версия Ubuntu больше не поддерживается" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1016,17 +994,17 @@ msgstr "" "обновления. Обновите систему до более поздней версии Ubuntu Linux. Для " "получения информации об обновлении посетите http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Индекс программ поврежден" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1036,6 +1014,28 @@ msgstr "" "используйте менеджер пакетов \"Synaptic\" или запустите в терминале \"sudo " "apt-get install -f\"." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1178,27 +1178,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Добавить _Cdrom" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Авторизация" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Удалить загруженные файлы программ:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Загрузка завершена" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Импортировать открытый ключ доверенного поставщика программ" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Обновления в Интернет" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1206,50 +1211,50 @@ msgstr "" "Автоматически будут установлены только обновления безопасности с официальных " "серверов Ubuntu" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "Восстановить начальные" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Восстановить исходные ключи вашего дистрибутива" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Параметры приложений" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "Автоматически проверять наличие обновлений:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "Загружать обновления в фоне, но не устанавливать их" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "Импортировать файл ключа" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "Устанавливать обновления безопасности без запроса" @@ -1638,6 +1643,13 @@ msgstr "DFSG-совместимое ПО с зависимостями от не msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Загрузка файла %li из %li с неизвестной скоростью" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Установить обновления" + #~ msgid "Cancel _Download" #~ msgstr "Отменить _загрузку" @@ -1731,9 +1743,6 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgid "Keys" #~ msgstr "Ключи" -#~ msgid "Add _Cdrom" -#~ msgstr "Добавить _Cdrom" - #~ msgid "Installation Media" #~ msgstr "Установочный носитель" diff --git a/po/rw.po b/po/rw.po index e643590d..292d629b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:44+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -96,50 +96,50 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Ibihuzagihe bya porogaramumudasobwa" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 #, fuzzy msgid "Error importing selected file" msgstr "Kuzaza Byahiswemo IDOSIYE" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 #, fuzzy msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Byahiswemo IDOSIYE Gicurasi OYA a Urufunguzo IDOSIYE Cyangwa" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 #, fuzzy msgid "Error removing the key" msgstr "i Urufunguzo" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -147,11 +147,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -366,7 +366,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -560,7 +560,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" @@ -790,14 +790,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -840,8 +840,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Kwinjiza porogaramu" +msgid "Distribution updates" +msgstr "Byarangiye" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -867,98 +867,98 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Verisiyo \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ikwirakwiza... ni Oya" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1092,77 +1092,81 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "i Byahiswemo Urufunguzo Bivuye i" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "\n" "Language-Team: Slovak \n" @@ -88,48 +88,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Aktualizácie softvéru" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Zdrojový" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Zdrojový" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importovať kľúč" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Chyba pri importovaní vybraného súboru" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Vybraný súbor nie je autentifikačným kľúčom GPG alebo je poškodený." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Chyba pri odstraňovaní kľúča" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -140,11 +140,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Prosím, zadajte názov disku" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Prosím, vložte disk do mechaniky:" @@ -399,7 +399,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Tieto nainštalované balíky už viac nie sú oficiálne podporované, ale stará " @@ -617,7 +617,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" @@ -857,15 +857,15 @@ msgstr "" "Zlyhalo overenie autenticity aktualizácie. Môže to byť spôsobené sieťovým " "problémom alebo nedostupňosťou servera. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -907,8 +907,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Nainštalovať _aktualizácie" +msgid "Distribution updates" +msgstr "_Pokračovať v aktualizácii" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -935,35 +935,13 @@ msgstr "" msgid "_Check All" msgstr "_Skontrolovať" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Veľkosť na stiahnutie: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -971,40 +949,40 @@ msgstr[0] "Môžete nainštalovať %s aktualizáciu" msgstr[1] "Môžete nainštalovať %s aktualizácie" msgstr[2] "Môžete nainštalovať %s aktualizácií" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Čakajte prosím, toto môže chvíľu trvať." -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Aktualizácia je dokončená" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Kontrolujem aktualizácie..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verzia: %s (veľkosť: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Verzia %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Vaša distribúcia už nie je podporovaná" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1015,17 +993,17 @@ msgstr "" "Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." "com.\"" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Index softvéru je poškodený" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1035,6 +1013,28 @@ msgstr "" "Na odstránenie tohto problému použite správcu balíkov 'Synaptic' alebo " "spustite 'sudo apt-get install -f' v termáli." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1178,27 +1178,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Pridať _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autentifikácia" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Zmazať stiahnuté inštalačné balíčky:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Sťahovanie je dokončené" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importovať verejný kľúč dôveryhodného poskytovateľa softvéru" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internetové aktualizácie" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1206,51 +1211,51 @@ msgstr "" "Automaticky budú inštalované iba bezpečnostné aktualizácie z oficiálnych " "Ubuntu serverov." -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "_Obnoviť predvolené" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Obnoviť pôvodné kľúče distribúcie" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Zdroje softvéru" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Zdrojový" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Kontrolovať aktualizácie:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Stiahnuť aktualizácie automaticky, no neinštalovať ich" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "Importovať _kľúč" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Bezpečnostné aktualizácie inštalovať automaticky bez potvrdenia" @@ -1645,6 +1650,13 @@ msgstr "Softvér kompatibilný s DFSG bez závislostí na neslobodnom softvére" msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Nainštalovať _aktualizácie" + #~ msgid "Cancel _Download" #~ msgstr "_Zrušiť sťahovanie" @@ -1735,9 +1747,6 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "Keys" #~ msgstr "Kľúče" -#~ msgid "Add _Cdrom" -#~ msgstr "Pridať _CD" - #~ msgid "Installation Media" #~ msgstr "Inštalačné média" diff --git a/po/sr.po b/po/sr.po index 5545e7b8..b8d0b45e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-27 12:27+0000\n" "Last-Translator: Dejan Milosavljevic \n" "Language-Team: Serbian \n" @@ -89,45 +89,45 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importiranje kljuca" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -135,11 +135,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -351,7 +351,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -548,7 +548,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -772,14 +772,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -816,7 +816,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -841,35 +841,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -877,62 +855,84 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1059,73 +1059,77 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/sv.po b/po/sv.po index b37ec06b..56dd66ab 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:18+0000\n" "Last-Translator: Robin Sonefors \n" "Language-Team: Swedish \n" @@ -88,51 +88,51 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Programvaruuppdateringar" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 #, fuzzy msgid "Active" msgstr "Aktivera" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Källkod" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Källkod" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Importera nyckel" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Fel vid importing av vald fil" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Den valda filen verkar inte vara en GPG-nyckel eller så är filen trasig." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Fel vid borttagning av nyckeln" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Nyckeln du valde kan inte tas bort. Var vänlig anmäl detta som en bugg." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -143,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Skriv in ett namn på skivan" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Sätt in en skiva i enheten:" @@ -406,7 +406,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " @@ -618,7 +618,7 @@ msgstr "Stäng alla öppna program och dokument för att undvika dataförlust." #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" @@ -864,15 +864,15 @@ msgstr "" "Autentisering av uppdateringen misslyckades. Det kan vara ett problem med " "nätverket eller servern. " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Hämtar hem fil %li av %li i %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Hämtar hem fil %li av %li med okänd hastighet" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "Hämtar hem fil %li av %li i %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -916,8 +916,8 @@ msgstr "%d uppdateringar" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "%d uppdateringar" +msgid "Distribution updates" +msgstr "Distribution:" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -945,77 +945,53 @@ msgstr "_Uppdatera alla" msgid "_Check All" msgstr "_Kontrollera" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -#, fuzzy -msgid "None" -msgstr "en" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -#, fuzzy -msgid "1 KB" -msgstr "%d kB" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, fuzzy, python-format -msgid "%.0f KB" -msgstr "%.2f MB" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, fuzzy, python-format -msgid "%.1f MB" -msgstr "%.2f MB" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "Nerladdningsstorlek: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installera %s uppdatering" msgstr[1] "Du kan installera %s uppdateringar" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "Var god vänta, det här kan ta lite tid" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "Uppdateringen är färdig" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Kontrollera efter tillgängliga uppdateringar" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny version: %s (Storlek: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Version %s:" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, fuzzy, python-format msgid "(Size: %s)" msgstr "Storlek:" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "Din distribution stöds inte längre" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -1025,17 +1001,17 @@ msgstr "" "till en senare version av Ubuntu Linux. Se http://www.ubuntu.com för mer " "information om att uppgradera." -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "Indexet för program är trasigt" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -1045,6 +1021,30 @@ msgstr "" "packethanteraren \"Synaptic\" eller kör \"sudo apt-get install -f\" i en " "terminal för att rätta till det här problemet först." +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +#, fuzzy +msgid "None" +msgstr "en" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +#, fuzzy +msgid "1 KB" +msgstr "%d kB" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, fuzzy, python-format +msgid "%.0f KB" +msgstr "%.2f MB" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, fuzzy, python-format +msgid "%.1f MB" +msgstr "%.2f MB" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1189,27 +1189,32 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "Lägg till _CD" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Autentisering" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Ta bort nerladdade programfiler:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Hämtningslogg" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "Importera den publika nyckeln från en betrodd mjukvaruutgivare" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internetuppdateringar" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" @@ -1217,52 +1222,52 @@ msgstr "" "Bara säkerhetsuppdateringar från de officiella Ubuntuservrarna kommer " "installeras automatiskt" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "_Återställ standardalternativ" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "Återställ standardnycklarna för din distribution" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "Programvarukällor" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Källkod" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 #, fuzzy msgid "Statistics" msgstr "Status" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 #, fuzzy msgid "Submit statistical information" msgstr "Hämta användningsinformation" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "Kolla efter uppdateringar _automatiskt:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_Hämta uppdateringar i bakgrunden, men installera dem inte" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Installera säkerhetsuppdateringar utan bekräftelse" @@ -1656,6 +1661,13 @@ msgstr "DFSG-kompatibel programvara med icke-fria beroenden" msgid "Non-DFSG-compatible Software" msgstr "Inte DFSG-kompatibel programvara" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Hämtar hem fil %li av %li med okänd hastighet" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "%d uppdateringar" + #~ msgid "Cancel _Download" #~ msgstr "Avbryt _nedladdningen" @@ -1754,9 +1766,6 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Keys" #~ msgstr "Nycklar" -#~ msgid "Add _Cdrom" -#~ msgstr "Lägg till _CD" - #~ msgid "Installation Media" #~ msgstr "Installationsmedia" diff --git a/po/th.po b/po/th.po index 6fdad89c..d8db8415 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-24 16:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -87,46 +87,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "ซอฟต์แวร์ปรับปรุง" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "นำเข้ากุญแจ" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "ไม่สามารถนำเข้าไฟล์ที่เลือกไว้" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "ไฟล์ที่เลือกไว้อาจจะไม่ใช่ GPG กุญแจไฟล์หรืออาจจะเสียหาย" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "มีปัญหาขณะลบกุจแจ" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -137,11 +137,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "กรุณาใส่ชื่อสำหรับแผ่นดิสก์" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "กรุณาใส่แผ่นดิสก์เข้าไปในเครื่อง:" @@ -387,7 +387,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจากชุมชน " @@ -593,7 +593,7 @@ msgstr "เพื่อป้องกันข้อมูลสูญหาย #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" @@ -822,15 +822,15 @@ msgid "" "or with the server. " msgstr "ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li ด้วย %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li ด้วย %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -871,8 +871,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "_ติดตั้งปรัยปรุง" +msgid "Distribution updates" +msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -899,74 +899,52 @@ msgstr "" msgid "_Check All" msgstr "เ_ลือก" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "ขนาดดาวน์โหลด: %s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "คุณสามารถติดตั้ง %s รายการปรับปรุง" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "กรุณารอสักครู่ นี่อาจจะใช้เวลาสักหน่อย" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "ปรับปรุงเสร็จสิ้นแล้ว" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "_ติดตั้งปรัยปรุง" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "รุ่นใหม่: %s (ขนาด: %s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "รุ่น %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "ชุดเผยแพร่(distribution)ของคุณไม่มีบริการสนับสนุนแล้ว" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -976,17 +954,17 @@ msgstr "" "ปรับปรุงขึ้นไปรุ่นถัดไปของอูบันตูลีนุกซ์ กรุณาอ่าน http://www.ubuntu.com " "สำหรับรายละเอียดเพิ่มเติมในการปรับปรุงรุ่น" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -995,6 +973,28 @@ msgstr "" "ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ \"Synaptic\" หรือ " "คำสั่ง \"sudo apt-get install -f\" ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1135,76 +1135,81 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "เพิ่ม_ซีดีรอม" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "การยืนยันของจริง" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_ลบซอฟแวร์ไฟล์ที่ดาวน์โหลด:" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "ดาวน์โหลดเสร็จแล้ว" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "นำเข้ากุญแจสาธารณะจากผู้ให้ซอฟแวร์ที่น่าเชื่อถือ" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "ปรัปรุงทางอินเทอร์เน็ต" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเท่านั้น" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "_คืนค่าปริยาย" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "คืนกุญแจเดืมของชุดเผยแพร่ของคุณ" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "คุณสมบัติของซอฟแวร์" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_ตรวจหารายการปรับปรุงโดยอัตโนมัติ:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "_ดาวน์โหลดปรับปรุงอยู่เบื้องหลังแต่ยังไม่ต้องติดตั้ง" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "_นำเข้ากุญแจไฟล์" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_ติดตั้งการปรับปรุงด้านความปลอดภัยโดยไม่ต้องถามก่อน" @@ -1589,6 +1594,13 @@ msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอ msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "_ติดตั้งปรัยปรุง" + #~ msgid "Cancel _Download" #~ msgstr "ยกเลิก_ดาวน์โหลด" @@ -1675,9 +1687,6 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "Keys" #~ msgstr "กุญแจ" -#~ msgid "Add _Cdrom" -#~ msgstr "เพิ่ม_ซีดีรอม" - #~ msgid "Installation Media" #~ msgstr "การติดตั้งมีเดีย" diff --git a/po/tr.po b/po/tr.po index f4587c10..eb70d9f4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Özgur KIRCALI \n" "Language-Team: Turkish \n" @@ -88,46 +88,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Kanal Düzenle" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Anahtar aktar" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Seçili dosyayı aktarmada hata" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Anahtar kaldırmada hata" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -138,11 +138,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Lütfen disk için bir isim girin" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Lütfen sürücüye bir disk yerleştirin:" @@ -369,7 +369,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -561,7 +561,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -788,14 +788,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -833,7 +833,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -858,96 +858,96 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1079,76 +1079,80 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "İndirme tamamlandı" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Yazılım Özellikleri" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "Anahtar aktar" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/uk.po b/po/uk.po index ef1f27c8..00cc865e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Serhey Kusyumoff \n" "Language-Team: Ukrainian \n" @@ -88,48 +88,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Оновлення програм" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Текст програми" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Текст програми" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "Імпортувати ключ" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Помилка імпорту вибраного файлу" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Вибраний файл, можливо, не є файлом GPG ключа або він пошкоджений." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Помилка видалення ключа" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -137,11 +137,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "Введіть назву диску" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "Вставте диск в пристрій:" @@ -368,7 +368,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -578,7 +578,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" @@ -816,15 +816,15 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, fuzzy, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Завантажується файл %li of %li at %s/s" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, fuzzy, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "Завантажується файл %li of %li на невизначенії швидкості" +msgid "Downloading file %(current)li of %(total)li" +msgstr "Завантажується файл %li of %li at %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -866,8 +866,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "Встановлення оновлень..." +msgid "Distribution updates" +msgstr "П_родовжити апгрейд системи" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -893,35 +893,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -929,65 +907,87 @@ msgstr[0] "Неможливо провести апргрейд системи" msgstr[1] "Неможливо провести апргрейд системи" msgstr[2] "Неможливо провести апргрейд системи" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 #, fuzzy msgid "Update is complete" msgstr "Завантадення пакунків завершено" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Встановлення оновлень..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Версія %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ваш дистрибутив вже не підтримується" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1121,82 +1121,86 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Аутентифікація" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "Завантадення пакунків завершено" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Видалити виділений ключ з в'язки довірених ключів." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "Оновлення через Інтернет" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Відновити початкові параметри" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "Відновити початкові ключі" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Властивості програм" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Текст програми" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "Перевіряти оновлення кожні" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "Імпортувати ключ" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1583,6 +1587,14 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Завантажується файл %li of %li на невизначенії швидкості" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Встановлення оновлень..." + #~ msgid "Cancel _Download" #~ msgstr "Скасувати _Завантаження" diff --git a/po/update-manager.pot b/po/update-manager.pot index f054728d..2909b623 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -88,45 +88,45 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -134,11 +134,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -350,7 +350,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -544,7 +544,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -768,14 +768,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -812,7 +812,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -837,97 +837,97 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1054,73 +1054,77 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/ur.po b/po/ur.po index d367822b..25649bf5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -88,46 +88,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 #, fuzzy msgid "Import key" msgstr "امپورٹ کی" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -135,11 +135,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -351,7 +351,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -545,7 +545,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -769,14 +769,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -813,7 +813,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -838,97 +838,97 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1055,74 +1055,78 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "امپورٹ کی" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/urd.po b/po/urd.po index 03971833..65f63c08 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -88,46 +88,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 #, fuzzy msgid "Import key" msgstr "امپورٹ کی" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -135,11 +135,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -351,7 +351,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -545,7 +545,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -769,14 +769,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -813,7 +813,7 @@ msgid "Backports" msgstr "" #: ../UpdateManager/UpdateManager.py:240 -msgid "Normal updates" +msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin @@ -838,97 +838,97 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1055,74 +1055,78 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 -msgid "Internet Updates" +msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 msgid "Software Sources" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 #, fuzzy msgid "_Import Key File" msgstr "امپورٹ کی" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" diff --git a/po/vi.po b/po/vi.po index 652426cb..e42aa10e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -87,48 +87,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Bản cập nhật phần mềm" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "Nguồn" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "Nguồn" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "Gặp lỗi khi nhập tâp tin đã chọn" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -136,11 +136,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -355,7 +355,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -549,7 +549,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." @@ -779,14 +779,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -830,7 +830,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "Đang cài đặt bản cập nhật..." #. TRANSLATORS: updates from an 'unknown' origin @@ -857,98 +857,98 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "Phiên bản %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Không còn hỗ trợ lại bản phát hành của bạn." -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1080,80 +1080,84 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Xác thực" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "Gỡ bỏ khóa được chọn ra vòng khóa tin cây." -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "Cập nhật dùng Mạng" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "Phục hồi mặc định" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "Phục hồi các khóa mặc định" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Thuộc tính phần mềm" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "Nguồn" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "Kiểm tra có cập nhật sau mỗi" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1539,6 +1543,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Đang cài đặt bản cập nhật..." + #, fuzzy #~ msgid "Important security updates of Ubuntu" #~ msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" diff --git a/po/xh.po b/po/xh.po index 2c456286..6e7a0566 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-04-20 19:15+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -88,46 +88,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "Bonisa izihlaziyo" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -135,11 +135,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -351,7 +351,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -545,7 +545,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" @@ -769,14 +769,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -817,7 +817,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "Bonisa izihlaziyo" #. TRANSLATORS: updates from an 'unknown' origin @@ -843,98 +843,98 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1064,75 +1064,79 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -msgid "Authentication" +msgid "Add Cdrom" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 -msgid "D_elete downloaded software files:" +msgid "Authentication" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 -msgid "Download from:" +msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -msgid "Import the public key from a trusted software provider" +msgid "Download from:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "Bonisa izihlaziyo" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "Uluhlu lwezinto ezikhethwayo zeenkqubo zekhompyutha" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1482,6 +1486,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "Bonisa izihlaziyo" + #, fuzzy #~ msgid "Important security updates of Ubuntu" #~ msgstr "Bonisa izihlaziyo" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8069516f..a9a8830d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-30 14:16+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -87,52 +87,52 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "软件更新" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "" "二进制\n" "源代码" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "" "二进制\n" "源代码" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "导入密钥" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "在导入所选文件时出错" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "所选文件可能不是GPG密钥文件或者已经损坏." -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "删除密钥时候出错" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -143,11 +143,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "请输入光盘的名称" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "请将光盘插入到光驱里:" @@ -385,7 +385,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" "这些安装的包已不在被官方支持,仅为社区维护('universe').\n" @@ -589,7 +589,7 @@ msgstr "关闭所有打开的程序和文档以防止数据丢失。" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "您的系统已为最新" @@ -817,15 +817,15 @@ msgid "" "or with the server. " msgstr "认证升级信息失败。可能是网络或服务器的问题。 " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下载文件 %li/%li 速度是 %s/s" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "正在下载文件 %li/%li 速度未知" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "正在下载文件 %li/%li 速度是 %s/s" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -865,8 +865,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "安装更新" +msgid "Distribution updates" +msgstr "继续升级(_R)" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -893,74 +893,52 @@ msgstr "" msgid "_Check All" msgstr "检查(_C)" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "下载文件大小:%s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "你可以安装 %s 个更新" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "请稍等,这需要花一些时间。" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "检查有效的更新" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "新版本:%s(大小:%s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "您的发行版不再被支持" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -970,17 +948,17 @@ msgstr "" "\r\n" "http://www.ubuntu.com 来获取更多有关升级的信息。" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "软件索引已被破坏" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -989,6 +967,28 @@ msgstr "" "无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-" "get install -f\"来修正这个问题。" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1129,79 +1129,84 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "添加 CDrom(_C)" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "身份验证" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "删除下载的软件文件(_e)" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "下载完成" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "从信任的密钥环中删除选中的密钥。" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "Internet 更新" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "只有来自官方Ubuntu服务器的安全更新才会被自动安装。" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "恢复默认值(_D)" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "还原为发行版本预设的密钥" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "软件属性" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "" "二进制\n" "源代码" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "自动检查更新(_C)" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "在后台下载更新,但是不安装(_D)" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "导入密钥(_I)" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "不确认就安装安全更新(_I)" @@ -1591,6 +1596,13 @@ msgstr "带有非自由依赖关系的DFSG兼容软件" msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "正在下载文件 %li/%li 速度未知" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "安装更新" + #~ msgid "Cancel _Download" #~ msgstr "取消下载(_D)" @@ -1675,9 +1687,6 @@ msgstr "非DFSG兼容软件" #~ msgid "Keys" #~ msgstr "密钥" -#~ msgid "Add _Cdrom" -#~ msgstr "添加 CDrom(_C)" - #~ msgid "Installation Media" #~ msgstr "安装媒体" diff --git a/po/zh_HK.po b/po/zh_HK.po index 36f91802..29847de7 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -87,48 +87,48 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "軟件更新" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy msgid "(Source Code)" msgstr "源程式碼" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 #, fuzzy msgid "Source Code" msgstr "源程式碼" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "匯入指定檔案時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "選定的檔案可能不是 GPG 密碼匙,或者內容已損壞。" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format msgid "" "Error scanning the CD\n" @@ -136,11 +136,11 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "" @@ -355,7 +355,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -552,7 +552,7 @@ msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "系統已經在最新狀態!" @@ -782,14 +782,14 @@ msgid "" "or with the server. " msgstr "" -#: ../UpdateManager/GtkProgress.py:107 +#: ../UpdateManager/GtkProgress.py:108 #, python-format -msgid "Downloading file %li of %li with %s/s" +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -#: ../UpdateManager/GtkProgress.py:111 +#: ../UpdateManager/GtkProgress.py:113 #, python-format -msgid "Downloading file %li of %li with unknown speed" +msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../UpdateManager/UpdateManager.py:204 @@ -831,7 +831,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" +msgid "Distribution updates" msgstr "正在安裝軟件更新..." #. TRANSLATORS: updates from an 'unknown' origin @@ -858,99 +858,99 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "正在安裝軟件更新..." -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "已經不再支援你用的發行版本" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 msgid "" "You must check for updates manually\n" @@ -1082,80 +1082,84 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "認證" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy msgid "Import the public key from a trusted software provider" msgstr "由你信任的密碼匙圈中移除指定的密碼匙。" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 #, fuzzy msgid "Internet Updates" msgstr "線上更新" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy msgid "Restore _Defaults" msgstr "還原為預設值" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy msgid "Restore the default keys of your distribution" msgstr "還原為預設密碼匙" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "軟件屬性" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 #, fuzzy msgid "Source code" msgstr "源程式碼" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 #, fuzzy msgid "_Check for updates automatically:" msgstr "檢查軟件更新間隔:" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "" @@ -1540,6 +1544,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "正在安裝軟件更新..." + #, fuzzy #~ msgid "Important security updates of Ubuntu" #~ msgstr "Ubuntu 5.10 安全性更新" diff --git a/po/zh_TW.po b/po/zh_TW.po index 3f894738..2c0cd116 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-27 11:08+0200\n" +"POT-Creation-Date: 2006-09-29 17:00+0200\n" "PO-Revision-Date: 2006-05-31 12:00+0000\n" "Last-Translator: PCMan \n" "Language-Team: Chinese (Taiwan) \n" @@ -86,46 +86,46 @@ msgstr "" msgid "Custom servers" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:601 -#: ../SoftwareProperties/SoftwareProperties.py:618 +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" msgstr "軟體更新" -#: ../SoftwareProperties/SoftwareProperties.py:609 -#: ../SoftwareProperties/SoftwareProperties.py:626 +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:711 +#: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:717 +#: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:966 +#: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" msgstr "匯入金鑰" -#: ../SoftwareProperties/SoftwareProperties.py:976 +#: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" msgstr "匯入指定檔案時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:977 +#: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "選定的檔案可能不是 GPG 金鑰,或者內容已損壞。" -#: ../SoftwareProperties/SoftwareProperties.py:989 +#: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:990 +#: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" -#: ../SoftwareProperties/SoftwareProperties.py:1036 +#: ../SoftwareProperties/SoftwareProperties.py:1039 #, fuzzy, python-format msgid "" "Error scanning the CD\n" @@ -136,11 +136,11 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:1093 +#: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" msgstr "請輸入光碟的名稱" -#: ../SoftwareProperties/SoftwareProperties.py:1109 +#: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" msgstr "請將光碟放入光碟機:" @@ -379,7 +379,7 @@ msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" "\n" -"If you havn't enabled community maintained software (universe), these " +"If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" @@ -581,7 +581,7 @@ msgstr "避免遺失請關閉所有已開啟的程式及文件。" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:621 +#: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" @@ -810,15 +810,15 @@ msgid "" "or with the server. " msgstr "認證升級套件失敗。可能是因為跟伺服器的網路連線出現問題。 " -#: ../UpdateManager/GtkProgress.py:107 -#, python-format -msgid "Downloading file %li of %li with %s/s" +#: ../UpdateManager/GtkProgress.py:108 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" -#: ../UpdateManager/GtkProgress.py:111 -#, python-format -msgid "Downloading file %li of %li with unknown speed" -msgstr "正在下載檔案 %li/%li,下載速度不明" +#: ../UpdateManager/GtkProgress.py:113 +#, fuzzy, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" #: ../UpdateManager/UpdateManager.py:204 #, fuzzy @@ -858,8 +858,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:240 #, fuzzy -msgid "Normal updates" -msgstr "安裝更新套件(_I)" +msgid "Distribution updates" +msgstr "繼續升級(_R)" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 @@ -886,75 +886,53 @@ msgstr "" msgid "_Check All" msgstr "檢查(_C)" -#. TRANSLATORS: download size is 0 -#: ../UpdateManager/UpdateManager.py:585 -msgid "None" -msgstr "" - -#. TRANSLATORS: download size of very small updates -#: ../UpdateManager/UpdateManager.py:588 -msgid "1 KB" -msgstr "" - -#. TRANSLATORS: download size of small updates, e.g. "250 KB" -#: ../UpdateManager/UpdateManager.py:591 -#, python-format -msgid "%.0f KB" -msgstr "" - -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" -#: ../UpdateManager/UpdateManager.py:594 -#, python-format -msgid "%.1f MB" -msgstr "" - #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:612 ../UpdateManager/UpdateManager.py:636 +#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 #, python-format msgid "Download size: %s" msgstr "下載大小:%s" -#: ../UpdateManager/UpdateManager.py:632 +#: ../UpdateManager/UpdateManager.py:615 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "您可以安裝 %s 個更新" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:665 +#: ../UpdateManager/UpdateManager.py:648 msgid "Please wait, this can take some time." msgstr "請稍候,這可能需要一點時間。" -#: ../UpdateManager/UpdateManager.py:667 +#: ../UpdateManager/UpdateManager.py:650 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:718 +#: ../UpdateManager/UpdateManager.py:701 #, fuzzy msgid "Checking for updates" msgstr "安裝更新套件(_I)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:808 #, fuzzy, python-format -msgid "From version %s to %s" +msgid "From version %(old_version)s to %(new_version)s" msgstr "新版本:%s (大小:%s)" -#: ../UpdateManager/UpdateManager.py:829 +#: ../UpdateManager/UpdateManager.py:812 #, fuzzy, python-format msgid "Version %s" msgstr "版本 %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:831 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:842 +#: ../UpdateManager/UpdateManager.py:825 msgid "Your distribution is not supported anymore" msgstr "您正使用的發行版本已不再支援" -#: ../UpdateManager/UpdateManager.py:843 +#: ../UpdateManager/UpdateManager.py:826 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 " @@ -963,17 +941,17 @@ msgstr "" "您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " "http://www.ubuntu.com以取得更多升級資訊。" -#: ../UpdateManager/UpdateManager.py:862 +#: ../UpdateManager/UpdateManager.py:845 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:897 +#: ../UpdateManager/UpdateManager.py:880 msgid "Software index is broken" msgstr "軟體索引損壞" -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:881 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 terminal to fix " @@ -982,6 +960,28 @@ msgstr "" "不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo " "apt-get install -f”來修正問題。" +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy msgid "" @@ -1121,76 +1121,81 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 +#, fuzzy +msgid "Add Cdrom" +msgstr "加入光碟(_C)" + +#: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "認證" -#: ../data/glade/SoftwareProperties.glade.h:10 +#: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "刪除已下載的軟體檔案(_E):" -#: ../data/glade/SoftwareProperties.glade.h:11 +#: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy msgid "Download from:" msgstr "下載完成" -#: ../data/glade/SoftwareProperties.glade.h:12 +#: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" msgstr "匯入您信任的軟體供應商的公鑰" -#: ../data/glade/SoftwareProperties.glade.h:13 +#: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" msgstr "線上更新" -#: ../data/glade/SoftwareProperties.glade.h:14 +#: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "只有來自 Ubuntu 官方伺服器的安全性更新會自動安裝" -#: ../data/glade/SoftwareProperties.glade.h:15 +#: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" msgstr "還原為預設值(_D)" -#: ../data/glade/SoftwareProperties.glade.h:16 +#: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" msgstr "還原為發行版本預設的金鑰" -#: ../data/glade/SoftwareProperties.glade.h:17 +#: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" msgstr "軟體屬性" -#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:19 +#: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:20 +#: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:21 +#: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" msgstr "" -#: ../data/glade/SoftwareProperties.glade.h:22 +#: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "自動檢查更新(_C):" -#: ../data/glade/SoftwareProperties.glade.h:23 +#: ../data/glade/SoftwareProperties.glade.h:24 #, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "在背景下載更新套件,但無須安裝(_D)" -#: ../data/glade/SoftwareProperties.glade.h:24 +#: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" msgstr "匯入金鑰" -#: ../data/glade/SoftwareProperties.glade.h:25 +#: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "無須確認便安裝安全性更新(_I)" @@ -1576,6 +1581,13 @@ msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "正在下載檔案 %li/%li,下載速度不明" + +#, fuzzy +#~ msgid "Normal updates" +#~ msgstr "安裝更新套件(_I)" + #~ msgid "Cancel _Download" #~ msgstr "取消下載(_D)" @@ -1658,9 +1670,6 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Keys" #~ msgstr "金鑰" -#~ msgid "Add _Cdrom" -#~ msgstr "加入光碟(_C)" - #~ msgid "Installation Media" #~ msgstr "安裝媒體" -- cgit v1.2.3 From e1a1eeefa2d7a681f6583b7520031fd71daad862 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 29 Sep 2006 21:37:18 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - added edgyQuirks handling for python transition --- DistUpgrade/DistUpgradeCache.py | 16 ++++++++++++++++ DistUpgrade/DistUpgradeControler.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 318c30cd..e5b7ed09 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -164,6 +164,22 @@ class MyCache(apt.Cache): if func is not None: func() + def edgyQuirks(self): + """ this function works around quirks in the dapper->edgy upgrade """ + logging.debug("running edgyQuirks handler") + for pkg in self: + if (pkg.name.startswith("python2.4") and + pkg.isInstalled and + not pkg.markedUpgrade): + newpkg = "python-"+pkg.name[len("python2.4"):-1] + if (self.has_key(newpkg) and + not self[newpkg].markedInstall): + try: + self.markInstall(pkg.name, + "python2.4->python upgrade rule") + except SystemError, e: + logging.debug("Failed to install: %s (%s)" % (newpkg, e)) + def dapperQuirks(self): """ this function works around quirks in the breezy->dapper upgrade """ logging.debug("running dapperQuirks handler") diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 7b255cf0..1d714325 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -644,7 +644,7 @@ class DistUpgradeControler(object): else: args.append("--without-network") os.execve(sys.argv[0],args, os.environ) - + # this is the core def edgyUpgrade(self): # sanity check (check for ubuntu-desktop, brokenCache etc) -- cgit v1.2.3 From f7dc0ba8a869e8cbf1807bb90da82e540291806f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 29 Sep 2006 22:34:54 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - make the edgyQuirks work for the python2.4->python transition --- DistUpgrade/DistUpgradeCache.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index e5b7ed09..6dd1983d 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -167,18 +167,18 @@ class MyCache(apt.Cache): def edgyQuirks(self): """ this function works around quirks in the dapper->edgy upgrade """ logging.debug("running edgyQuirks handler") + # deal with the python2.4-$foo -> python-$foo transition for pkg in self: - if (pkg.name.startswith("python2.4") and + if (pkg.name.startswith("python2.4-") and pkg.isInstalled and not pkg.markedUpgrade): - newpkg = "python-"+pkg.name[len("python2.4"):-1] - if (self.has_key(newpkg) and - not self[newpkg].markedInstall): + basepkg = "python-"+pkg.name[len("python2.4-"):] + if (self.has_key(basepkg) and not self[basepkg].markedInstall): try: - self.markInstall(pkg.name, + self.markInstall(basepkg, "python2.4->python upgrade rule") except SystemError, e: - logging.debug("Failed to install: %s (%s)" % (newpkg, e)) + logging.debug("Failed to apply python2.4->python install: %s (%s)" % (newpkg, e)) def dapperQuirks(self): """ this function works around quirks in the breezy->dapper upgrade """ -- cgit v1.2.3 From 588cd00384f0ac4de95a56d28f248f2298b05fbc Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 29 Sep 2006 22:55:44 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - hpijs quirk --- DistUpgrade/DistUpgradeCache.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 6dd1983d..7b91f4ed 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -179,6 +179,15 @@ class MyCache(apt.Cache): "python2.4->python upgrade rule") except SystemError, e: logging.debug("Failed to apply python2.4->python install: %s (%s)" % (newpkg, e)) + # deal with $$/&$ hpijs + if (self.has_key("hpijs") and self["hpijs"].isInstalled and + not self["hpijs"].markedUpgrade): + try: + self.markInstall("hpijs","hpijs quirk upgrade rule") + except SystemError, e: + logging.debug("Failed to apply hpijs install (%s)" % e) + + def dapperQuirks(self): """ this function works around quirks in the breezy->dapper upgrade """ -- cgit v1.2.3 From 359989e5177a6c376380d6d00003b5ea19403f0e Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 30 Sep 2006 00:13:27 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - fixed comment --- DistUpgrade/DistUpgradeCache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 7b91f4ed..453efe92 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -179,7 +179,7 @@ class MyCache(apt.Cache): "python2.4->python upgrade rule") except SystemError, e: logging.debug("Failed to apply python2.4->python install: %s (%s)" % (newpkg, e)) - # deal with $$/&$ hpijs + # deal with *gar*gar* hpijs if (self.has_key("hpijs") and self["hpijs"].isInstalled and not self["hpijs"].markedUpgrade): try: -- cgit v1.2.3 From e6caff1e5bb222d50cb7a521f1ebee723ac1fc9d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 30 Sep 2006 00:31:48 +0200 Subject: * changelog updates, uploaded --- DistUpgrade/DistUpgradeCache.py | 1 - debian/changelog | 22 +++++++--------------- 2 files changed, 7 insertions(+), 16 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 453efe92..3d10c707 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -1,7 +1,6 @@ import warnings warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) -warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) import apt import apt_pkg import os diff --git a/debian/changelog b/debian/changelog index 8bc27537..3b83d42f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,26 +1,18 @@ -update-manager (0.44.15) edgy; urgency=low +update-manager (0.44.13) edgy; urgency=low + * fix missing i18n declarations (lp: #62519) * data/glade/SoftwareProperties.glade: - fix missing "translatable" property (lp: #62681) - * missing i18n added (lp: 62519) - - -- - -update-manager (0.44.14) edgy; urgency=low - + * DistUpgrade: + - deal better with the python transition and the hpijs + upgrade (lp: #62948) * UpdateManager/UpdateManager.py: - put the cancel button inside the text-area to avoid flickering - * DistUprade/DistUpgradeControler.py: - - check for self.sources, self.aptcdrom before using it (lp: #61852) - - -- Michael Vogt Tue, 26 Sep 2006 23:17:27 +0200 - -update-manager (0.44.13) edgy; urgency=low - - * UpdateManager/UpdateManager.py: - make sure that src_ver is always initialized (thanks to Simira for reporting) - filter python-apt future warning (especially for seb128) + * DistUprade/DistUpgradeControler.py: + - check for self.sources, self.aptcdrom before using it (lp: #61852) -- Michael Vogt Sat, 23 Sep 2006 00:53:06 +0200 -- cgit v1.2.3 From a724825aa77f025f21aeb5a4092114c4b267e7a5 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Sat, 30 Sep 2006 01:17:17 +0200 Subject: * correct the import semantic of gettext --- UpdateManager/Common/DistInfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UpdateManager/Common/DistInfo.py b/UpdateManager/Common/DistInfo.py index 8153f04b..57621f52 100644 --- a/UpdateManager/Common/DistInfo.py +++ b/UpdateManager/Common/DistInfo.py @@ -26,7 +26,7 @@ from os import getenv import ConfigParser import string -_ = gettext.gettext +from gettext import gettext as _ class Suite: def __init__(self): -- cgit v1.2.3 From 9318df1e981635e6d0df4eaa98e3b2d62bb32c88 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Sat, 30 Sep 2006 01:25:41 +0200 Subject: * use a new line in the error messages of the changelog view, since we don't support wrapped lines --- UpdateManager/UpdateManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 04ad107c..965afb79 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -208,12 +208,12 @@ class MyCache(apt.Cache): except urllib2.HTTPError: if lock.locked(): self.all_changes[name] = [_("The list of changes is not " - "available yet. Please try again " + "available yet.\nPlease try again " "later."), srcpkg] except IOError: if lock.locked(): self.all_changes[name] = [_("Failed to download the list " - "of changes. Please " + "of changes. \nPlease " "check your Internet " "connection."), srcpkg] if lock.locked(): -- cgit v1.2.3 From 2828d69c65668115dd39a46f921ef59086168556 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Sat, 30 Sep 2006 01:48:36 +0200 Subject: * import gettext correctly in some other places too --- UpdateManager/UpdateManager.py | 2 +- update-manager | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 965afb79..1a4c7c40 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -601,7 +601,7 @@ class UpdateManager(SimpleGladeApp): self.refresh_updates_count() num_updates = self.cache.installCount if num_updates == 0: - text_header= "%s" %_("Your system is up-to-date") + text_header= "%s" % _("Your system is up-to-date") text_download = "" self.notebook_details.set_sensitive(False) self.treeview_update.set_sensitive(False) diff --git a/update-manager b/update-manager index 21b03702..f67ebd50 100644 --- a/update-manager +++ b/update-manager @@ -36,8 +36,6 @@ from gettext import gettext as _ from optparse import OptionParser if __name__ == "__main__": - _ = gettext.gettext - APP="update-manager" DIR="/usr/share/locale" -- cgit v1.2.3 From ee0ae3876d6e3afc36197fb922c6fdab2dd04688 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Sat, 30 Sep 2006 02:15:17 +0200 Subject: * improve the grammar - fix #63039 --- DistUpgrade/DistUpgradeViewGtk.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 1385d18f..2b0914f4 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -200,9 +200,8 @@ class GtkInstallProgressAdapter(InstallProgress): logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current) #self.expander.set_expanded(True) prim = _("Replace the customized configuration file\n'%s'?") % current - sec = _("You will loose all customizations, that have been made by " - "yourself or by a script, if you replace the file by its " - "latest version.") + sec = _("You will lose any local changes to this file " + "if you replace this file with the latest version.") markup = "%s \n\n%s" % (prim, sec) self.parent.label_conffile.set_markup(markup) self.parent.dialog_conffile.set_transient_for(self.parent.window_main) -- cgit v1.2.3 From 4f287044ee83f8e77dc3136d10cef07d878ba1c2 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 2 Oct 2006 14:49:27 +0200 Subject: * DistUpgrade/DistUpgrade.glade - add missing "translatable" properties * DistUpgrade/DistUpgradeViewGtk.py: - fix incorrect i18n usage _() --- DistUpgrade/DistUpgrade.glade | 6 ++--- DistUpgrade/DistUpgradeViewGtk.py | 18 +++++++------- debian/changelog | 6 +++++ po/ar.po | 46 +++++++++++++++++++++------------- po/bg.po | 48 +++++++++++++++++++++++------------- po/bn.po | 48 +++++++++++++++++++++++------------- po/br.po | 46 +++++++++++++++++++++------------- po/ca.po | 48 +++++++++++++++++++++++------------- po/cs.po | 48 +++++++++++++++++++++++------------- po/da.po | 48 +++++++++++++++++++++++------------- po/de.po | 48 +++++++++++++++++++++++------------- po/el.po | 48 +++++++++++++++++++++++------------- po/en_AU.po | 48 +++++++++++++++++++++++------------- po/en_CA.po | 48 +++++++++++++++++++++++------------- po/en_GB.po | 46 +++++++++++++++++++++------------- po/es.po | 48 +++++++++++++++++++++++------------- po/fi.po | 48 +++++++++++++++++++++++------------- po/fr.po | 48 +++++++++++++++++++++++------------- po/fur.po | 46 +++++++++++++++++++++------------- po/gl.po | 46 +++++++++++++++++++++------------- po/he.po | 48 +++++++++++++++++++++++------------- po/hi.po | 46 +++++++++++++++++++++------------- po/hr.po | 48 +++++++++++++++++++++++------------- po/hu.po | 48 +++++++++++++++++++++++------------- po/id.po | 48 +++++++++++++++++++++++------------- po/it.po | 48 +++++++++++++++++++++++------------- po/ja.po | 48 +++++++++++++++++++++++------------- po/ka.po | 48 +++++++++++++++++++++++------------- po/ko.po | 48 +++++++++++++++++++++++------------- po/ku.po | 46 +++++++++++++++++++++------------- po/lt.po | 48 +++++++++++++++++++++++------------- po/mk.po | 46 +++++++++++++++++++++------------- po/ms.po | 46 +++++++++++++++++++++------------- po/nb.po | 48 +++++++++++++++++++++++------------- po/ne.po | 46 +++++++++++++++++++++------------- po/nl.po | 48 +++++++++++++++++++++++------------- po/no.po | 46 +++++++++++++++++++++------------- po/oc.po | 46 +++++++++++++++++++++------------- po/pa.po | 48 +++++++++++++++++++++++------------- po/pl.po | 48 +++++++++++++++++++++++------------- po/pt.po | 48 +++++++++++++++++++++++------------- po/pt_BR.po | 48 +++++++++++++++++++++++------------- po/ro.po | 48 +++++++++++++++++++++++------------- po/ru.po | 48 +++++++++++++++++++++++------------- po/rw.po | 48 +++++++++++++++++++++++------------- po/sk.po | 48 +++++++++++++++++++++++------------- po/sr.po | 46 +++++++++++++++++++++------------- po/sv.po | 52 ++++++++++++++++++++++++--------------- po/th.po | 48 +++++++++++++++++++++++------------- po/tr.po | 46 +++++++++++++++++++++------------- po/uk.po | 48 +++++++++++++++++++++++------------- po/update-manager.pot | 46 +++++++++++++++++++++------------- po/ur.po | 46 +++++++++++++++++++++------------- po/urd.po | 46 +++++++++++++++++++++------------- po/vi.po | 46 +++++++++++++++++++++------------- po/xh.po | 46 +++++++++++++++++++++------------- po/zh_CN.po | 48 +++++++++++++++++++++++------------- po/zh_HK.po | 46 +++++++++++++++++++++------------- po/zh_TW.po | 48 +++++++++++++++++++++++------------- 59 files changed, 1715 insertions(+), 967 deletions(-) diff --git a/DistUpgrade/DistUpgrade.glade b/DistUpgrade/DistUpgrade.glade index 615f698c..2d4ebf92 100644 --- a/DistUpgrade/DistUpgrade.glade +++ b/DistUpgrade/DistUpgrade.glade @@ -682,7 +682,7 @@ True True True - _Start Upgrade + _Start Upgrade True GTK_RELIEF_NORMAL True @@ -1264,7 +1264,7 @@ True True True - _Continue + _Continue True GTK_RELIEF_NORMAL True @@ -1487,7 +1487,7 @@ True True True - _Cancel Upgrade + _Cancel Upgrade True GTK_RELIEF_NORMAL True diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 1385d18f..69a3e586 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -97,7 +97,7 @@ class GtkFetchProgressAdapter(apt.progress.FetchProgress): self.parent = parent def mediaChange(self, medium, drive): #print "mediaChange %s %s" % (medium, drive) - msg = _("Please insert '%s' into the drive '%s'" % (medium,drive)) + msg = _("Please insert '%s' into the drive '%s'") % (medium,drive) dialog = gtk.MessageDialog(parent=self.parent.window_main, flags=gtk.DIALOG_MODAL, type=gtk.MESSAGE_QUESTION, @@ -126,10 +126,10 @@ class GtkFetchProgressAdapter(apt.progress.FetchProgress): currentItem = self.totalItems if self.currentCPS > 0: - self.status.set_text(_("Fetching file %li of %li at %s/s" % (currentItem, self.totalItems, apt_pkg.SizeToStr(self.currentCPS)))) + self.status.set_text(_("Fetching file %li of %li at %s/s") % (currentItem, self.totalItems, apt_pkg.SizeToStr(self.currentCPS))) self.progress.set_text(_("About %s remaining") % FuzzyTimeToStr(self.eta)) else: - self.status.set_text(_("Fetching file %li of %li" % (currentItem, self.totalItems))) + self.status.set_text(_("Fetching file %li of %li") % (currentItem, self.totalItems)) self.progress.set_text(" ") while gtk.events_pending(): @@ -184,7 +184,7 @@ class GtkInstallProgressAdapter(InstallProgress): logging.error("got an error from dpkg for pkg: '%s': '%s'" % (pkg, errormsg)) #self.expander_terminal.set_expanded(True) self.parent.dialog_error.set_transient_for(self.parent.window_main) - summary = _("Could not install '%s'" % pkg) + summary = _("Could not install '%s'") % pkg msg = _("The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport.") markup="%s\n\n%s" % (summary, msg) @@ -500,8 +500,8 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): pkgs_upgrade) % pkgs_upgrade msg +=" " if downloadSize > 0: - msg += _("\n\nYou have to download a total of %s. " %\ - apt_pkg.SizeToStr(downloadSize)) + msg += _("\n\nYou have to download a total of %s. ") %\ + apt_pkg.SizeToStr(downloadSize) msg += estimatedDownloadTime(downloadSize) msg += "." @@ -532,11 +532,11 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): # fill in the details self.details_list.clear() for rm in self.toRemove: - self.details_list.append([_("Remove %s" % rm)]) + self.details_list.append([_("Remove %s") % rm]) for inst in self.toInstall: - self.details_list.append([_("Install %s" % inst)]) + self.details_list.append([_("Install %s") % inst]) for up in self.toUpgrade: - self.details_list.append([_("Upgrade %s" % up)]) + self.details_list.append([_("Upgrade %s") % up]) self.treeview_details.scroll_to_cell((0,)) self.dialog_changes.set_transient_for(self.window_main) self.dialog_changes.realize() diff --git a/debian/changelog b/debian/changelog index 3b83d42f..a8c8c707 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +update-manager (0.44.14) edgy; urgency=low + + * fix some incorrect i18n markings (lp: #62681) + + -- Michael Vogt Mon, 2 Oct 2006 14:41:52 +0200 + update-manager (0.44.13) edgy; urgency=low * fix missing i18n declarations (lp: #62519) diff --git a/po/ar.po b/po/ar.po index 91ddd359..61651426 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Jadmadi \n" "Language-Team: Arabic \n" @@ -142,30 +142,30 @@ msgstr "الرجاء ادخال اسم القرص" msgid "Please insert a disc in the drive:" msgstr "الرجاء ادخال القرص في الجهاز" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -672,25 +672,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/bg.po b/po/bg.po index ce1fc9bc..de8aae0e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:40+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -150,11 +150,11 @@ msgstr "Моля, въведете име за диска" msgid "Please insert a disc in the drive:" msgstr "Моля, поставете диск в устройството:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Повредени пакети" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -163,20 +163,20 @@ msgstr "" "този софтуер. Моля, поправете ги със synaptic или apt-get преди да " "продължите!" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Не може да бъдат надградени изисквани мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -188,11 +188,11 @@ msgstr "" "това като грешка. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "да е временен проблем с мрежата. Може би бихте искали да опитате отново по-" "късно. Вижте по-долу списъка на неудоствоерените пакети." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "грешка! " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -745,25 +745,39 @@ msgid "Terminal" msgstr "Терминал" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Поднови надграждането" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Задържане" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Замяна" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Съобщи грешка" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Рестартирай сега" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Поднови надграждането" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Поднови надграждането" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Не бяха открити бележки към изданието" diff --git a/po/bn.po b/po/bn.po index a3a8211b..01de9ff2 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-26 12:09+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -146,30 +146,30 @@ msgstr "ডিস্কের জন্য একটি নাম দিন" msgid "Please insert a disc in the drive:" msgstr "অনুগ্রহ করে ড্রাইভে একটি ডিস্ক দিন:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "ভাঙা প্যাকেজসমূহ" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "দরকারী meta-packages আপগ্রেড করতে পারে নি" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,23 +178,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "'%s' ইন্সটল করা যাচ্ছে না" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -203,11 +203,11 @@ msgstr "" "রিপোর্ট করুন। " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -692,25 +692,39 @@ msgid "Terminal" msgstr "টার্মিন্যাল" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "পুনরায় আপগ্রেড শুরু (_R)" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "রাখো (_K)" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "প্রতিস্হাপন (_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "বাগ রিপোর্ট (_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "এক্ষুনি রিস্টার্ট (_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "পুনরায় আপগ্রেড শুরু (_R)" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "পুনরায় আপগ্রেড শুরু (_R)" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "রিলিজ নোট পাওয়া যায় নি" diff --git a/po/br.po b/po/br.po index d933750b..4f10ce89 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -146,30 +146,30 @@ msgstr "Roit un anv evit ar bladenn marplij" msgid "Please insert a disc in the drive:" msgstr "Lakait ur bladenn e-barzh ul lenner marplij:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Pakadoù torr" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,34 +178,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -673,25 +673,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/ca.po b/po/ca.po index c29de9b3..2017d490 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-29 21:18+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -151,11 +151,11 @@ msgstr "Introduïu un nom per al disc" msgid "Please insert a disc in the drive:" msgstr "Inseriu un disc a la unitat:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Paquets trencats" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -163,21 +163,21 @@ msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb " "aquesta aplicació. Utilitzeu el Synaptic o apt-get abans de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "de l'error. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "amb la xarxa. Podeu provar-ho després. A continuació es mostra la llista amb " "els paquets no autenticats." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "No s'ha pogut instal·lar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +217,11 @@ msgstr "" "els error. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -733,25 +733,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Reprén l'actualització" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Reemplaça" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Informa de l'error" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Reinicia" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Reprén l'actualització" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Reprén l'actualització" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "No s'han pogut trobar les notes de la versió" diff --git a/po/cs.po b/po/cs.po index 4554f451..fdbd6c36 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-25 18:52+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" @@ -147,11 +147,11 @@ msgstr "Prosím zadejte jméno disku" msgid "Please insert a disc in the drive:" msgstr "Prosím vložte disk do mechaniky:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Poškozené balíky" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -159,20 +159,20 @@ msgstr "" "Váš systém obsahuje poškozené balíky, které nemohou být tímto programem " "opraveny. Před pokračováním oje prosím pravte použitím synaptic nebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Nemohu aktualizovat požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Základní balík by musel být odstraněn" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -184,11 +184,11 @@ msgstr "" "chybu. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba při ověření některých balíků" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "problémem v síti. Možná to budete chtít zkusit později. Níže je uveden " "seznam neověřených balíků." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Nemohu nainstalovat '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,11 +211,11 @@ msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -719,25 +719,39 @@ msgid "Terminal" msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Pokračovat v upgradu" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Ponechat" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Nahradit" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Oznámit chybu" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Restartovat nyní" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Pokračovat v upgradu" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Pokračovat v upgradu" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Nebyly nalezeny poznámky k vydání." diff --git a/po/da.po b/po/da.po index 9f8e8041..b8099a11 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -147,11 +147,11 @@ msgstr "Indtast venligst et navn til disken" msgid "Please insert a disc in the drive:" msgstr "Indsæt venligst en disk i drevet:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Ødelagte pakker" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -159,22 +159,22 @@ msgstr "" "Dit system indeholder ødelagte pakker som ikke kan repareres med dette " "program. Reparer dem venligst med synaptic eller apt-get før du fortsætter." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke opgradere de krævede meta-pakker" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 #, fuzzy msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vigtig pakke" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" msgstr "Kunne ikke udregne opgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "Rapportér venligst dette som en fejl. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "Det anbefales du prøver igen senere. Se længere nede for en liste over " "pakker som ikke kunne godkendes." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,12 +214,12 @@ msgstr "" "som en fejl. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 #, fuzzy msgid "Can't guess meta-package" msgstr "Kan ikke gætte meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -733,25 +733,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Genoptag opgradering" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Behold" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Erstat" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Rapporter fejl" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Genstart nu" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Genoptag opgradering" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Genoptag opgradering" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Kunne ikke finde udgivelsesnoterne" diff --git a/po/de.po b/po/de.po index 6dd01bb6..3608c085 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-27 10:58+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -153,11 +153,11 @@ msgstr "Geben Sie einen Namen für das Medium ein" msgid "Please insert a disc in the drive:" msgstr "Bitte legen Sie ein Medium in das Laufwerk:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Defekte Pakete" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -166,20 +166,20 @@ msgstr "" "werden können. Bitte reparieren Sie diese mit Synaptic oder apt-get, bevor " "Sie fortfahren." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -191,11 +191,11 @@ msgstr "" "erstellen Sie hierfür einen Fehlerbericht. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -206,12 +206,12 @@ msgstr "" "später noch einmal. Die unten stehenden Pakete konnten nicht auf ihre " "Echtheit hin bestätigt werden:" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "›%s‹ kann nicht installiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -220,11 +220,11 @@ msgstr "" "Sie hierfür einen Fehlerbericht. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -764,25 +764,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Aktualisierung fortsetzen" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Beibehalten" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Ersetzen" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Fehlerbericht ausfüllen" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Neu starten" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Aktualisierung fortsetzen" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Aktualisierung fortsetzen" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Freigabemitteilungen konnten nicht gefunden werden" diff --git a/po/el.po b/po/el.po index 779ef170..7466f50b 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-25 15:39+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -148,11 +148,11 @@ msgstr "Παρακαλώ εισάγετε ένα όνομα για το δίσκ msgid "Please insert a disc in the drive:" msgstr "Παρακαλώ εισάγετε ένα δίσκο στον οδηγό:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Κατεστραμμένα πακέτα" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -161,20 +161,20 @@ msgstr "" "διορθωθούν με αυτό το λογισμικό. Παρακαλώ διορθώστε τα μέσω synaptic ή apt-" "get για να συνεχίσετε." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετα-πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "σε ένα πρόβλημα δικτύου. Προσπαθήστε αργότερα. Δείτε παρακάτω τη λίστα των " "μη πιστοποιημένων πακέτων." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Αδυναμία εγκατάστασης '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "ως σφάλμα. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -755,25 +755,39 @@ msgid "Terminal" msgstr "Τερματικό" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Συνέχεια αναβάθμισης" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Διατήρηση" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "Αντικατά_σταση" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "Ανα_φορά σφάλματος" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "Επανε_κκίνηση τώρα" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Συνέχεια αναβάθμισης" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Συνέχεια αναβάθμισης" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Αδυναμία εύρεσης σημειώσεων έκδοσης" diff --git a/po/en_AU.po b/po/en_AU.po index efcc4b91..c2b9cd2b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-26 21:06+0000\n" "Last-Translator: David Symons \n" "Language-Team: English (Australia) \n" @@ -147,11 +147,11 @@ msgstr "Please enter a name for the disc" msgid "Please insert a disc in the drive:" msgstr "Please insert a disc in the drive:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Broken packages" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -159,20 +159,20 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -184,11 +184,11 @@ msgstr "" "this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -747,25 +747,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Resume Upgrade" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Keep" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Replace" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Report Bug" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Restart Now" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Resume Upgrade" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Resume Upgrade" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Could not find the release notes" diff --git a/po/en_CA.po b/po/en_CA.po index 86bc663c..857c0f8b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -147,30 +147,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -181,23 +181,23 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -684,27 +684,41 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "Upgrade finished" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "Reload" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 #, fuzzy msgid "_Resume Upgrade" msgstr "Upgrade finished" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "Upgrade finished" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index 809ea292..8cfd6579 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Abigail Brady \n" "Language-Team: \n" @@ -146,30 +146,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,23 +180,23 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -205,11 +205,11 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -684,26 +684,38 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "Reload" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/es.po b/po/es.po index 25c9a9a5..892c518b 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-26 09:38+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -154,11 +154,11 @@ msgstr "Por favor, introduzca un nombre para el disco" msgid "Please insert a disc in the drive:" msgstr "Por favor, inserte un disco en la unidad:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Paquetes rotos" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -167,20 +167,20 @@ msgstr "" "software. Por favor, arréglelos primero usando Synaptic o apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "No se han podido actualizar los meta-paquetes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -192,11 +192,11 @@ msgstr "" "actualización. Por favor, informe de ésto como un fallo. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -206,12 +206,12 @@ msgstr "" "problema transitorio en la red. Pruebe de nuevo más tarde. Vea abajo una " "lista de los paquetes no autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "No se ha podido instalar «%s»" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -220,11 +220,11 @@ msgstr "" "como un fallo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -762,25 +762,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Continuar actualización" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Conservar" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Sustituir" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Informar de un error" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Reiniciar ahora" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Continuar actualización" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Continuar actualización" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "No se han podido encontrar las notas de publicación" diff --git a/po/fi.po b/po/fi.po index 4c6655af..94c84233 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-25 18:26+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -149,11 +149,11 @@ msgstr "Syötä nimi levylle" msgid "Please insert a disc in the drive:" msgstr "Aseta levy asemaan:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Rikkinäisiä paketteja" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -162,20 +162,20 @@ msgstr "" "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get-komentoa ennen " "jatkamista." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Ei voida päivittää tarvittavia metapaketteja" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ei voitu tehdä tarvittavia päivitykseen liittyviä tarkistuksia" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -187,11 +187,11 @@ msgstr "" "korjata. Ilmoita tästä virheraportilla. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Joitain paketteja todennettaessa tapahtui virhe" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -201,12 +201,12 @@ msgstr "" "Voit yrittää myöhemmin uudelleen. Alla on luettelo todentamattomista " "paketeista." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Ei voitu asentaa pakettia \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "Pyydettyä pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -749,25 +749,39 @@ msgid "Terminal" msgstr "Pääte" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Jatka päivitystä" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Pidä" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Korvaa" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Tee virheraportti" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Uudelleenkäynnistä nyt" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Jatka päivitystä" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Jatka päivitystä" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Julkaisutietoja ei löytynyt" diff --git a/po/fr.po b/po/fr.po index b3c8b740..263f6d4b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-26 21:09+0000\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" @@ -152,11 +152,11 @@ 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 :" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Paquets défectueux" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -165,20 +165,20 @@ msgstr "" "ce logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou d'apt-get " "avant de continuer." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Les meta-paquets désirés n'ont pu être mis à jour" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Un paquet essentiel devrait être enlevé" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -190,11 +190,11 @@ msgstr "" "rapporter ce bogue. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -204,12 +204,12 @@ msgstr "" "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." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installer « %s »" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "rapporter ce bogue. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -762,25 +762,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Reprendre la mise à jour" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Conserver" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Remplacer" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Rapporter un bogue" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Redémarrer Maintenant" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Reprendre la mise à jour" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Reprendre la mise à jour" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Impossible de trouver les informations de version" diff --git a/po/fur.po b/po/fur.po index b80b99e6..548b7e2b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-30 14:37+0000\n" "Last-Translator: marcuz \n" "Language-Team: Friulian \n" @@ -142,30 +142,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -669,25 +669,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/gl.po b/po/gl.po index cc611a5c..50777c6f 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:42+0000\n" "Last-Translator: Ignacio Casal Quinteiro \n" "Language-Team: Galego\n" @@ -150,30 +150,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,23 +185,23 @@ msgstr "" "erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -211,11 +211,11 @@ msgstr "" "erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -689,26 +689,38 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "Recargar" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/he.po b/po/he.po index 761d9293..e6efd588 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-30 11:15+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -152,11 +152,11 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "אנא הכניסו תקליטור לכונן:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "חבילות פגומות" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -164,20 +164,20 @@ msgstr "" "במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " "באמצעות synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,34 +189,34 @@ msgstr "" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "לא ניתן להתקין את \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -699,25 +699,39 @@ msgid "Terminal" msgstr "מסוף" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_המשך בשידרוג" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_שמור" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_החלף" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_דווח על באג" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_אתחל עכשיו" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_המשך בשידרוג" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_המשך בשידרוג" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/hi.po b/po/hi.po index 8a95c9a7..d016c603 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Hindi \n" @@ -142,30 +142,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -669,25 +669,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/hr.po b/po/hr.po index e38d5605..ef0c3c6a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-24 20:54+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -148,11 +148,11 @@ msgstr "Upišite ime za disk" msgid "Please insert a disc in the drive:" msgstr "Ubacite CD u uređaj:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Pokvareni paketi" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,20 +160,20 @@ msgstr "" "Vaš sistem sadrži pokvarene pakete koji nisu mogli biti popravljeni sa ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Ne mogu nadograditi potrebne meta-pakete" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "prijavite ovo kao grešku. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "problem sa mrežom i trebali biste kasnije pokušati ponovo. Pogledajte popis " "neidentificiranih paketa." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Ne mogu instalirati '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "grešku. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -753,25 +753,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Nastavi nadogradnju" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Zadrži" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "Za_mijeni" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Prijavi bug" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "Ponovno pok_reni računalo" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Nastavi nadogradnju" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Nastavi nadogradnju" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Nisam mogao naći bilješke izdanja" diff --git a/po/hu.po b/po/hu.po index 75c9d3f6..44223273 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-28 21:22+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -147,11 +147,11 @@ msgstr "Kérem, adja meg a lemez nevét" msgid "Please insert a disc in the drive:" msgstr "Kérem, helyezzen be egy lemezt a meghajtóba:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Törött csomagok" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,20 +160,20 @@ msgstr "" "javíthatóak. Kérem, először javítsa ki őket a synaptic vagy az apt-get " "segítségével." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "A szükséges meta-csomagok nem frissíthetőek" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "jelentse ezt hibaként. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -199,23 +199,23 @@ msgstr "" "hálózati probléma okozza, ezért érdemes később újra megpróbálni. Az alábbi " "lista a hitelesíthetetlen csomagokat tartalmazza." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "'%s' nem telepíthető" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -749,25 +749,39 @@ msgid "Terminal" msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "Frissítés _folytatása" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Megtartás" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Csere" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Hibabejelentés" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "Újrain_dítás most" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "Frissítés _folytatása" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "Frissítés _folytatása" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Nem érhetők el a kiadási megjegyzések" diff --git a/po/id.po b/po/id.po index 6928cfba..be93a9f1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-28 18:46+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -147,11 +147,11 @@ msgstr "Silakan masukkan nama untuk cakram" msgid "Please insert a disc in the drive:" msgstr "Silakan masukan cakram ke dalam penggerak" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Paket rusak" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,20 +160,20 @@ msgstr "" "perangkat lunak ini. Silakan perbaiki terlebih dahulu dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan hal ini." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "mungkin karena masalah pada jaringan. Anda dapat mencobanya beberapa saat " "lagi. Lihat senarai dari paket yang belum terbukti keabsahnya dibawah ini." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat menginstal '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "ini sebagai bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -747,25 +747,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Lanjutkan Upgrade" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Simpan" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Ganti" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Laporkan Bug" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Mulai Ulang Sekarang" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Lanjutkan Upgrade" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Lanjutkan Upgrade" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Tidak dapat menemukan catatan luncuran" diff --git a/po/it.po b/po/it.po index 19ee6648..2ef73f9f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-24 14:01+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -153,11 +153,11 @@ msgstr "Inserire un nome per il disco" msgid "Please insert a disc in the drive:" msgstr "Inserire un disco nell'unità:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Pacchetti non integri" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -166,20 +166,20 @@ msgstr "" "con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" "\" per risolvere il probelma." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Impossibile aggiornare i meta-pacchetti richiesti" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -191,11 +191,11 @@ msgstr "" "dell'aggiornamento. Notificare questo evento come bug. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -205,12 +205,12 @@ msgstr "" "un problema di rete passeggero, riprovare più tardi. Segue una lista di " "pacchetti non autenticati." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Impossibile installare \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -219,11 +219,11 @@ msgstr "" "evento come bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -759,25 +759,39 @@ msgid "Terminal" msgstr "Terminale" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Riprendi aggiornamento" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Mantieni" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Sostituisci" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Notifica bug" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Riavvia ora" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Riprendi aggiornamento" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Riprendi aggiornamento" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Impossibile trovare le note di rilascio" diff --git a/po/ja.po b/po/ja.po index 1a4d0e71..93bd60c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-24 07:06+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -150,11 +150,11 @@ msgstr "ディスク名を入力してください" msgid "Please insert a disc in the drive:" msgstr "ディスクをドライブに挿入してください:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "壊れたパッケージ" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -162,20 +162,20 @@ msgstr "" "システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" "す。 Synaptic や apt-get を使って最初に修正してください。" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "要求されたメタパッケージがアップグレードできません" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgid "" msgstr "算定中に解決できない問題がおきました。バグとして報告してください。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" "ジが表示されます。" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "'%s' がインストールできません" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "要求されたパッケージのインストールができません。バグとして報告してください。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -741,25 +741,39 @@ msgid "Terminal" msgstr "端末" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "アップグレードを再開する(_R)" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "そのまま(_K)" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "置き換える(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "バグを報告する(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "すぐに再起動(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "アップグレードを再開する(_R)" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "アップグレードを再開する(_R)" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "リリースノートが見つかりません" diff --git a/po/ka.po b/po/ka.po index 2beae0f1..2d4facdb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:19+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -151,11 +151,11 @@ msgstr "შეიყვანეთ დისკის სახელი" msgid "Please insert a disc in the drive:" msgstr "მოათავსეთ დისკი დისკწამყვანში:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "გაფუჭებული პაკეტები" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -164,22 +164,22 @@ msgstr "" "პროგრამით. ჯერ გამართეთ გაფუჭებული პაკეტები synaptic ან apt-get პროგრამით და " "შემდეგ გააგრძელეთ." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "საჭჳრო მეტა-პაკეტების განახლება ვერ მოხერხდა" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 #, fuzzy msgid "A essential package would have to be removed" msgstr "A არსებითი -სკენ" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" msgstr "არა" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -191,11 +191,11 @@ msgstr "" "ხარვეზი. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -205,23 +205,23 @@ msgstr "" "ბრაკი. იქნებ მოგვიანბით კიდევ ერთხელ სცადოთ. ქვევით იხილეთ არა-" "ავთენთიფიცერული პაკეტების სია." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "'%s' ვერ დაყენდა" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ გამოვიცანით" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -720,25 +720,39 @@ msgid "Terminal" msgstr "ტერმინალი" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "განახლება _გაგრძელება" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_დატოვე" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_ჩაანაცვლე" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_შეცდომის-ოქმის გაგავნა" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_მყისვე გადატვირთვა" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "განახლება _გაგრძელება" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "განახლება _გაგრძელება" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "ვერ ვპოულობ ვერსიის შენიშვნებს" diff --git a/po/ko.po b/po/ko.po index 9f8df151..d04ccfa3 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-28 15:14+0000\n" "Last-Translator: darehanl \n" "Language-Team: Korean \n" @@ -146,11 +146,11 @@ msgstr "디스크에 사용할 이름을 입력하십시오." msgid "Please insert a disc in the drive:" msgstr "드라이브에 디스크를 넣으십시오:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "망가진 꾸러미" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -158,20 +158,20 @@ msgstr "" "이 소프트웨어로 수정할 수 없는 망가진 꾸러미가 있습니다. 진행 전에 먼저 시냅" "틱이나 apt-get을 사용하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "요청된 메타 꾸러미를 업그레이드 할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "필수 꾸러미를 지워야만 합니다." #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -183,11 +183,11 @@ msgstr "" "버그를 보고하여 주십시오. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "꾸러미 인증 오류" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -196,23 +196,23 @@ msgstr "" "인증하는데 실패한 꾸러미가 있습니다. 일시적인 네트워크 문제일 수 있으니 나중" "에 다시 시도하십시오. 인증에 실패한 꾸러미의 목록은 다음과 같습니다." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "'%s'을(를) 설치할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "요청된 꾸러미를 설치할 수 없습니다. 버그로 보고하여 주십시오. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "메타 꾸러미를 추측할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -735,25 +735,39 @@ msgid "Terminal" msgstr "터미널" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "업그레이드 계속(_R)" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "유지(_K)" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "바꾸기(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "버그 보고(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "지금 바로 재시작(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "업그레이드 계속(_R)" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "업그레이드 계속(_R)" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "릴리즈 정보를 찾을 수 없습니다." diff --git a/po/ku.po b/po/ku.po index 31740c00..7a35595a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" @@ -142,30 +142,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Paketên şikestî" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Nikarî '%s' saz bike" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -670,25 +670,37 @@ msgid "Terminal" msgstr "Termînal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "Bi_parêze" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/lt.po b/po/lt.po index bd7f8252..593ffc55 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-28 20:07+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -147,11 +147,11 @@ msgstr "Įveskite disko pavadinimą" msgid "Please insert a disc in the drive:" msgstr "Įdėkite diską į įrenginį:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Sugadinti paketai" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,20 +160,20 @@ msgstr "" "programa. Prieš tęsdami pirmiausia sutaisykite juos naudodamiesi „synaptic“ " "arba „apt-get“." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Negalima atnaujinti reikiamų metapaketų" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "tai kaip klaidą. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "Nepavyko patvirtinti kelių paketų autentiškumo. Tai gali būti laikina tinklo " "problema. Galite bandyti vėliau. Žemiau yra nepatvirtintų paketų sąrašas." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Negalima įdiegti „%s“" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,12 +211,12 @@ msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 #, fuzzy msgid "Can't guess meta-package" msgstr "Negalima nuspėti meta paketo" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -741,25 +741,39 @@ msgid "Terminal" msgstr "Terminalas" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Tęsti atnaujinimą" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Palikti" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "Pa_keisti" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Pranešti apie klaidą" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Perkrauti dabar" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Tęsti atnaujinimą" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Tęsti atnaujinimą" + #: ../UpdateManager/DistUpgradeFetcher.py:68 #, fuzzy msgid "Could not find the release notes" diff --git a/po/mk.po b/po/mk.po index 06b8b8bb..6ab5bb52 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -149,30 +149,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -184,23 +184,23 @@ msgstr "" "како бубачка. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -210,11 +210,11 @@ msgstr "" "како бубачка. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -692,26 +692,38 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "Освежи" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/ms.po b/po/ms.po index 6c9c8b03..99f40fc6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-30 13:49+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -148,11 +148,11 @@ msgstr "Sila masukkan nama untuk cakera padat" msgid "Please insert a disc in the drive:" msgstr "Sila masukkan cakera padat kedalam pemacu" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Pakej rosak" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -161,20 +161,20 @@ msgstr "" "menggunakan sofwer ini. Sila baiki dahulu menggunakan synaptic atau apt-get " "sebelum meneruskan." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,23 +186,23 @@ msgstr "" "penaikkan. Sila laporkan ini sebagai ralat pepijat. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat memasang '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,11 +211,11 @@ msgstr "" "pepijat. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -711,25 +711,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/nb.po b/po/nb.po index 7741c9c1..a6d35c5b 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-29 13:06+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -149,11 +149,11 @@ msgstr "Vennligst oppgi et navn for platen" msgid "Please insert a disc in the drive:" msgstr "Vennligst sett inn en plate i CD-spilleren:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Skadede pakker" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -162,20 +162,20 @@ msgstr "" "av dette programmet. Vennligst rett opp i dette ved å bruke Synaptic eller " "apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke oppgradere nødvendige meta-pakker" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -187,11 +187,11 @@ msgstr "" "rapporter dette som en feil. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -201,12 +201,12 @@ msgstr "" "nettverksproblem, så du bør prøve igjen senere. Se under for listen over " "pakker som ikke kunne autentiseres." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -752,25 +752,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Gjenoppta oppgradering" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Ta vare på" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Erstatt" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Rapportér en feil" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Omstart nå" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Gjenoppta oppgradering" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Gjenoppta oppgradering" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Kunne ikke finne utgivelsesnotatene" diff --git a/po/ne.po b/po/ne.po index 7b136f19..7f90a344 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -147,30 +147,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,23 +180,23 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -204,11 +204,11 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -682,26 +682,38 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "फेरि लोड गर्नुहोस" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/nl.po b/po/nl.po index 4ebdacdf..eddb1098 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-24 01:32+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -149,11 +149,11 @@ msgstr "Geef het cd-schijfje een naam" msgid "Please insert a disc in the drive:" msgstr "Plaats een schijf in de speler:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Niet-werkende pakketten" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -162,20 +162,20 @@ msgstr "" "met deze software. Repareer deze eerst met synaptic of apt-get voordat u " "verder gaat." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Kan de vereiste meta-pakketten niet upgraden." -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -187,11 +187,11 @@ msgstr "" "Gelieve dit als fout te rapporteren. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "proberen. Hieronder vindt u een lijst met pakketten waarvan de echtheid niet " "vastgesteld is." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Kan '%s' niet installeren" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "fout te rapporteren. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -757,25 +757,39 @@ msgid "Terminal" msgstr "Terminalvenster" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Upgrade hervatten" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Behouden" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Vervangen" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Fout rapporteren" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Nu herstarten" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Upgrade hervatten" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Upgrade hervatten" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Kon de versie-informatie niet vinden" diff --git a/po/no.po b/po/no.po index 3b153941..79473bf7 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -147,30 +147,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -181,23 +181,23 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -685,26 +685,38 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "Oppdater" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/oc.po b/po/oc.po index 0313725c..4e9b78bc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-29 08:11+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -149,30 +149,30 @@ msgstr "Picatz un nom pel disc" msgid "Please insert a disc in the drive:" msgstr "Metètz un disc dins lo legidor :" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Paquetatges corromputs" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -181,34 +181,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Impossible installar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -677,25 +677,37 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Remplaçar" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Tornar aviar ara" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/pa.po b/po/pa.po index cf757aba..1882b66a 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-04-28 23:31+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -144,30 +144,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -176,34 +176,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -673,26 +673,40 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 #, fuzzy msgid "_Resume Upgrade" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/pl.po b/po/pl.po index 90cf55e8..1f4e801b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:59+0000\n" "Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" @@ -148,11 +148,11 @@ msgstr "Proszę podać nazwę dla płyty" msgid "Please insert a disc in the drive:" msgstr "Proszę włożyć płytę do napędu:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Uszkodzone pakiety" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -161,20 +161,20 @@ msgstr "" "kontynuowaniem należy je naprawić używając Synaptic Menedżer Pakietów lub " "apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Nie można zaktualizować wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "zgłosić to jako błąd. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -200,23 +200,23 @@ msgstr "" "sieci. Można spróbować ponownie później. Poniżej znajduje się lista " "nieuwierzytelnionych pakietów." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Nie można zainstalować \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -752,25 +752,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Wznów aktualizację" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Zachowaj" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "Zas_tąp" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "Zgłoś _błąd" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Uruchom ponownie" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Wznów aktualizację" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Wznów aktualizację" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Nie można było odnaleźć informacji o wydaniu" diff --git a/po/pt.po b/po/pt.po index 3767421c..3d9defe6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-24 10:17+0000\n" "Last-Translator: Joao Carvalhinho \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -147,11 +147,11 @@ msgstr "Por favor introduza um nome para o disco" msgid "Please insert a disc in the drive:" msgstr "Por favor introduza um disco no leitor:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Pacotes Quebrados" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,20 +160,20 @@ msgstr "" "este software. Por favor corrija-os usando o synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível actualizar os meta-pacotes necessários" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "reporte este erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "rede transitório. Pode tentar novamente mais tarde. Verifique abaixo uma " "lista de pacotes não autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Impossível de instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -752,25 +752,39 @@ msgid "Terminal" msgstr "Consola" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Retomar Actualização?" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Manter" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Substituir" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Reportar um erro" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Reiniciar agora" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Retomar Actualização?" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Retomar Actualização?" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Impossível de encontrar notas de lançamento" diff --git a/po/pt_BR.po b/po/pt_BR.po index fe604df0..6e938da5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-26 22:31+0000\n" "Last-Translator: KurtKraut \n" "Language-Team: Ubuntu-BR \n" @@ -151,11 +151,11 @@ msgstr "Por favor digite um nome para o disco" msgid "Please insert a disc in the drive:" msgstr "Por favor insira um disco no drive:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Pacotes quebrados" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -164,20 +164,20 @@ msgstr "" "programa. Por favor, arrume-os primeiro usando o Synaptic ou apt-get antes " "de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível atualizar os meta-pacotes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Não foi possível calcular a atualização" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "favor reporte isto como um erro. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "de rede. Você pode tentar de novo depois. Veja abaixo uma lista dos pacotes " "não-autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Não foi possível instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +217,11 @@ msgstr "" "um erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Não foi possível adivinhar o meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -754,25 +754,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "Continua_r Atualização" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Manter" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Subtituir" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "Reportar _Erro" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Reiniciar Agora" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "Continua_r Atualização" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "Continua_r Atualização" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Não foi possível encontrar as notas de lançamento" diff --git a/po/ro.po b/po/ro.po index 6329559e..1cf0af50 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-24 17:39+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -153,12 +153,12 @@ msgstr "Introduceţi un nume pentru disc" msgid "Please insert a disc in the drive:" msgstr "Introduceţi un disc în unitate:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 #, fuzzy msgid "Broken packages" msgstr "Pachete deteriorate" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 #, fuzzy msgid "" "Your system contains broken packages that couldn't be fixed with this " @@ -168,20 +168,20 @@ msgstr "" "program. Înainte de a continua vă rugăm să le remediaţi utilizând synaptic " "sau apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -190,24 +190,24 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" msgstr "Eroare la autentificarea unor pachete." -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Nu pot instala '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -217,11 +217,11 @@ msgstr "" "(eroare). " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -696,25 +696,39 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Continuă Actualizarea" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Continuă Actualizarea" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Continuă Actualizarea" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/ru.po b/po/ru.po index f9e9eced..433c6f3c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-25 19:23+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -148,11 +148,11 @@ msgstr "Введите название для диска" msgid "Please insert a disc in the drive:" msgstr "Пожалуйста, вставьте диск в привод:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Поврежденные пакеты" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -161,20 +161,20 @@ msgstr "" "данной программой. Пожалуйста, исправьте их, используя synaptic или apt-get, " "прежде чем продолжить." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Невозможно обновить требуемые мета-пакеты" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "кратковременная проблема с сетью и стоит попробовать позже. Ниже приведен " "список пакетов, не прошедших проверку." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Невозможно установить '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "ошибке. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -749,25 +749,39 @@ msgid "Terminal" msgstr "Терминал" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Продолжить обновление" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Оставить" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Заменить" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Отправить сообщение об ошибке" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "Перезапустить _сейчас" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Продолжить обновление" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Продолжить обновление" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Не могу найти сведения о релизе" diff --git a/po/rw.po b/po/rw.po index 292d629b..6111ed83 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:44+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -155,30 +155,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -188,23 +188,23 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -212,11 +212,11 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -687,27 +687,41 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "Byarangiye" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "Kongera Gutangiza" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 #, fuzzy msgid "_Resume Upgrade" msgstr "Byarangiye" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "Byarangiye" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/sk.po b/po/sk.po index 9cf1a5b6..a046cb04 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-24 17:32+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -148,11 +148,11 @@ msgstr "Prosím, zadajte názov disku" msgid "Please insert a disc in the drive:" msgstr "Prosím, vložte disk do mechaniky:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Poškodené balíky" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -160,20 +160,20 @@ msgstr "" "Váš systém obsahuje poškodené balíky, ktoré nemôžu byť týmto programom " "opravené. Pred pokračovaním ich opravte programom synaptic alebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Nemôžem aktualizovať požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "ako chybu. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -199,23 +199,23 @@ msgstr "" "problémom v sieti. Môžete to opäť skúsiť neskôr. Nižšie je uvedený zoznam " "neoverených balíčkov." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Nemôžem inštalovať '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -749,25 +749,39 @@ msgid "Terminal" msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Pokračovať v aktualizácii" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Ponechať" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Nahradiť" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Oznámiť chybu" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Reštartovať teraz" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Pokračovať v aktualizácii" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_Pokračovať v aktualizácii" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Nebolo možné nájsť poznámky k vydaniu" diff --git a/po/sr.po b/po/sr.po index b8d0b45e..b1957968 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-27 12:27+0000\n" "Last-Translator: Dejan Milosavljevic \n" "Language-Team: Serbian \n" @@ -143,30 +143,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -673,25 +673,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/sv.po b/po/sv.po index 56dd66ab..6537d617 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:18+0000\n" "Last-Translator: Robin Sonefors \n" "Language-Team: Swedish \n" @@ -151,11 +151,11 @@ msgstr "Skriv in ett namn på skivan" msgid "Please insert a disc in the drive:" msgstr "Sätt in en skiva i enheten:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Trasiga paket" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -164,20 +164,20 @@ msgstr "" "programmet. Reparera dem först med synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Kan inte uppdatera obligatoriska meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppdateringen" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "vänlig rapportera detta som en bugg. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista " "med icke autentisierade paket." -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Kan inte installera \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +217,11 @@ msgstr "" "rapportera detta som en bugg. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -753,25 +753,40 @@ msgid "Terminal" msgstr "Terminalfönster" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_Återuppta uppgraderingen" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +#, fuzzy +msgid "_Continue" +msgstr "Fortsätt" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Behåll" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "_Ersätt" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_Rapportera bugg" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Starta om nu" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_Återuppta uppgraderingen" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "Distribution:" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "Det gick inte att hitta versionsinformation" @@ -2465,9 +2480,6 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Required Removals" #~ msgstr "Nödvändiga borttagningar" -#~ msgid "Continue" -#~ msgstr "Fortsätt" - #~ msgid "Package" #~ msgstr "Paket" diff --git a/po/th.po b/po/th.po index d8db8415..f90a2d0b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-24 16:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -145,11 +145,11 @@ msgstr "กรุณาใส่ชื่อสำหรับแผ่นดิ msgid "Please insert a disc in the drive:" msgstr "กรุณาใส่แผ่นดิสก์เข้าไปในเครื่อง:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "แพกเกจเสียหาย" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -157,20 +157,20 @@ msgstr "" "ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " "หรือ apt-get ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "ไม่สามารถปรับปรุง meta แพกเกจที่ต้องการได้" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,11 +180,11 @@ msgid "" msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -193,23 +193,23 @@ msgstr "" "ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " "คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "ไม่สามารถติดตั้ง '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -722,25 +722,39 @@ msgid "Terminal" msgstr "เทอร์มินัล" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_คงไว้" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "แ_ทนที่" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "_ส่งรายงานปัญหา" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "เ_ริ่มระบบใหม่เดี๋ยวนี้" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "ไม่สามารถหาบันทึกการปล่อย" diff --git a/po/tr.po b/po/tr.po index eb70d9f4..24f41801 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Özgur KIRCALI \n" "Language-Team: Turkish \n" @@ -146,11 +146,11 @@ msgstr "Lütfen disk için bir isim girin" msgid "Please insert a disc in the drive:" msgstr "Lütfen sürücüye bir disk yerleştirin:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Bozuk paketler" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -158,20 +158,20 @@ msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları synaptic veya apt-get kullanarak düzeltin." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -180,34 +180,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "'%s' yüklenemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -689,25 +689,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/uk.po b/po/uk.po index 00cc865e..948bd485 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Serhey Kusyumoff \n" "Language-Team: Ukrainian \n" @@ -145,11 +145,11 @@ msgstr "Введіть назву диску" msgid "Please insert a disc in the drive:" msgstr "Вставте диск в пристрій:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "Пошкоджені пакунки" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -157,20 +157,20 @@ msgstr "" "Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " "цією програмою. Скористайтесь перш програмами synaptic чи apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "Не можливо поновити необхідні meta-пакунки" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Це призведе довидалення базового пакунку системи" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,23 +180,23 @@ msgid "" msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Не можливо встановити '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -204,11 +204,11 @@ msgid "" msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -709,26 +709,40 @@ msgid "Terminal" msgstr "Термінал" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "П_родовжити апгрейд системи" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "Перезавантажити" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "П_овідомити про помилку" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "_Перезавантажити" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "П_родовжити апгрейд системи" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "П_родовжити апгрейд системи" + #: ../UpdateManager/DistUpgradeFetcher.py:68 #, fuzzy msgid "Could not find the release notes" diff --git a/po/update-manager.pot b/po/update-manager.pot index 2909b623..345bc877 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -142,30 +142,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -669,25 +669,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/ur.po b/po/ur.po index 25649bf5..c3bfe406 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -143,30 +143,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -670,25 +670,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/urd.po b/po/urd.po index 65f63c08..0785bdeb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -143,30 +143,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -670,25 +670,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/vi.po b/po/vi.po index e42aa10e..86dc3aea 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -144,30 +144,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -177,23 +177,23 @@ msgid "" msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -201,11 +201,11 @@ msgid "" msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -676,26 +676,38 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "Tải lại" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/xh.po b/po/xh.po index 6e7a0566..4afa8fb2 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-04-20 19:15+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -143,30 +143,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -670,25 +670,37 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 -msgid "_Replace" +msgid "_Continue" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 -msgid "_Report Bug" +msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 -msgid "_Restart Now" +msgid "_Replace" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index a9a8830d..00acfbf0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-30 14:16+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -151,11 +151,11 @@ msgstr "请输入光盘的名称" msgid "Please insert a disc in the drive:" msgstr "请将光盘插入到光驱里:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "破损的软件包" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -163,20 +163,20 @@ msgstr "" "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" "apt-get修复它们。" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "不能升级要求的元包" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "无法计算升级" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgid "" msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -199,23 +199,23 @@ msgstr "" "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" "件包的列表。" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "无法安装'%s'" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "无法猜出元包" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -717,25 +717,39 @@ msgid "Terminal" msgstr "终端" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "继续升级(_R)" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "维持原状(_K)" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "替换(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "报告Bug(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "现在重启(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "继续升级(_R)" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "继续升级(_R)" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "无法找到发行说明" diff --git a/po/zh_HK.po b/po/zh_HK.po index 29847de7..2f54ef54 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -144,30 +144,30 @@ msgstr "" msgid "Please insert a disc in the drive:" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -177,23 +177,23 @@ msgid "" msgstr "你選定的密碼匙無法移除,請匯報問題。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -201,11 +201,11 @@ msgid "" msgstr "你選定的密碼匙無法移除,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -679,26 +679,38 @@ msgid "Terminal" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:16 -msgid "_Keep" +msgid "_Cancel Upgrade" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy msgid "_Replace" msgstr "重新載入" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 2c0cd116..4a83550e 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-09-29 17:00+0200\n" +"POT-Creation-Date: 2006-10-02 14:45+0200\n" "PO-Revision-Date: 2006-05-31 12:00+0000\n" "Last-Translator: PCMan \n" "Language-Team: Chinese (Taiwan) \n" @@ -144,11 +144,11 @@ msgstr "請輸入光碟的名稱" msgid "Please insert a disc in the drive:" msgstr "請將光碟放入光碟機:" -#: ../DistUpgrade/DistUpgradeCache.py:92 +#: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" msgstr "不完整套件" -#: ../DistUpgrade/DistUpgradeCache.py:93 +#: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." @@ -156,20 +156,20 @@ msgstr "" "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " "synaptic 或 apt-get 來修恢它們。" -#: ../DistUpgrade/DistUpgradeCache.py:183 +#: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" msgstr "無法升級須要的元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:193 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:196 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級" -#: ../DistUpgrade/DistUpgradeCache.py:197 +#: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -179,11 +179,11 @@ msgid "" msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:222 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" -#: ../DistUpgrade/DistUpgradeCache.py:223 +#: ../DistUpgrade/DistUpgradeCache.py:247 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 a list of " @@ -192,23 +192,23 @@ msgstr "" "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" "的套件。" -#: ../DistUpgrade/DistUpgradeCache.py:288 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "無法安裝‘%s’" -#: ../DistUpgrade/DistUpgradeCache.py:289 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:296 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:297 +#: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -710,25 +710,39 @@ msgid "Terminal" msgstr "終端" #: ../DistUpgrade/DistUpgrade.glade.h:16 +#, fuzzy +msgid "_Cancel Upgrade" +msgstr "繼續升級(_R)" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "保留(_K)" -#: ../DistUpgrade/DistUpgrade.glade.h:17 +#: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" msgstr "取代(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:18 +#: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" msgstr "報告錯誤(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" msgstr "現在重新啟動(_R)" -#: ../DistUpgrade/DistUpgrade.glade.h:20 +#: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" msgstr "繼續升級(_R)" +#: ../DistUpgrade/DistUpgrade.glade.h:23 +#, fuzzy +msgid "_Start Upgrade" +msgstr "繼續升級(_R)" + #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "無法找到發行說明" -- cgit v1.2.3 From 6a04c04bbe1639c732a250ab003d6e2b29bffc90 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 2 Oct 2006 14:52:56 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - fix more incorrect _() usage --- DistUpgrade/DistUpgradeControler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 1d714325..52f4f785 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -75,7 +75,7 @@ class AptCdrom(object): _("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\n" - "The error message was:\n'%s'" % e)) + "The error message was:\n'%s'") % e) return False logging.debug("AptCdrom.add() returned: %s" % res) return res @@ -613,7 +613,7 @@ class DistUpgradeControler(object): uri = match.group(1) + path apt_pkg.GetPkgAcqFile(fetcher, uri=uri, size=ver.Size, - descr=_("Fetching backport of '%s'" % pkgname)) + descr=_("Fetching backport of '%s'") % pkgname) res = fetcher.Run() if res != fetcher.ResultContinue: # ick! error ... -- cgit v1.2.3 From 2c928a9b6c3f88181ac34e3424ffdafabacee17f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 2 Oct 2006 15:19:15 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - deal better with initial cache failures (e.g. because of broken sources.list) --- DistUpgrade/DistUpgradeControler.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 52f4f785..1f948d1f 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -142,7 +142,11 @@ class DistUpgradeControler(object): def prepare(self): """ initial cache opening, sanity checking, network checking """ - self.openCache() + try: + self.openCache() + except SystemError, e: + logging.error("openCache() failed: '%s'" % e) + return False if not self.cache.sanityCheck(self._view): return False # FIXME: we may try to find out a bit more about the network @@ -652,7 +656,14 @@ class DistUpgradeControler(object): self._view.setStep(1) if not self.prepare(): - self.abort(1) + self._view.error(_("Preparing the upgrade failed"), + _("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/dist-upgrade/ " + "in the bugreport." )) + sys.exit(1) # mvo: commented out for now, see #54234, this needs to be # refactored to use a arch=any tarball -- cgit v1.2.3 From af0b04f42bf0d4912cf2a995f0d4e3fdd3dcce0f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 2 Oct 2006 18:44:03 +0200 Subject: * po/*.po: - make update-po * update-manager: - mark some missing strings for translation --- po/ar.po | 129 ++++++++++++++++++++++++++--------------------- po/bg.po | 135 ++++++++++++++++++++++++++++--------------------- po/bn.po | 131 +++++++++++++++++++++++++++--------------------- po/br.po | 129 ++++++++++++++++++++++++++--------------------- po/ca.po | 135 ++++++++++++++++++++++++++++--------------------- po/cs.po | 135 ++++++++++++++++++++++++++++--------------------- po/da.po | 134 ++++++++++++++++++++++++++++--------------------- po/de.po | 135 ++++++++++++++++++++++++++++--------------------- po/el.po | 135 ++++++++++++++++++++++++++++--------------------- po/en_AU.po | 135 ++++++++++++++++++++++++++++--------------------- po/en_CA.po | 134 +++++++++++++++++++++++++++---------------------- po/en_GB.po | 135 +++++++++++++++++++++++++++---------------------- po/es.po | 135 ++++++++++++++++++++++++++++--------------------- po/fi.po | 135 ++++++++++++++++++++++++++++--------------------- po/fr.po | 135 ++++++++++++++++++++++++++++--------------------- po/fur.po | 129 ++++++++++++++++++++++++++--------------------- po/gl.po | 136 ++++++++++++++++++++++++++++---------------------- po/he.po | 136 ++++++++++++++++++++++++++++---------------------- po/hi.po | 129 ++++++++++++++++++++++++++--------------------- po/hr.po | 135 ++++++++++++++++++++++++++++--------------------- po/hu.po | 135 ++++++++++++++++++++++++++++--------------------- po/id.po | 135 ++++++++++++++++++++++++++++--------------------- po/it.po | 135 ++++++++++++++++++++++++++++--------------------- po/ja.po | 133 +++++++++++++++++++++++++++--------------------- po/ka.po | 134 ++++++++++++++++++++++++++++--------------------- po/ko.po | 135 ++++++++++++++++++++++++++++--------------------- po/ku.po | 129 ++++++++++++++++++++++++++--------------------- po/lt.po | 135 ++++++++++++++++++++++++++++--------------------- po/mk.po | 136 ++++++++++++++++++++++++++++---------------------- po/ms.po | 132 +++++++++++++++++++++++++++--------------------- po/nb.po | 135 ++++++++++++++++++++++++++++--------------------- po/ne.po | 134 +++++++++++++++++++++++++++---------------------- po/nl.po | 135 ++++++++++++++++++++++++++++--------------------- po/no.po | 135 +++++++++++++++++++++++++++---------------------- po/oc.po | 129 ++++++++++++++++++++++++++--------------------- po/pa.po | 129 ++++++++++++++++++++++++++--------------------- po/pl.po | 135 ++++++++++++++++++++++++++++--------------------- po/pt.po | 135 ++++++++++++++++++++++++++++--------------------- po/pt_BR.po | 135 ++++++++++++++++++++++++++++--------------------- po/ro.po | 133 ++++++++++++++++++++++++++---------------------- po/ru.po | 135 ++++++++++++++++++++++++++++--------------------- po/rw.po | 133 ++++++++++++++++++++++++++---------------------- po/sk.po | 135 ++++++++++++++++++++++++++++--------------------- po/sr.po | 129 ++++++++++++++++++++++++++--------------------- po/sv.po | 135 ++++++++++++++++++++++++++++--------------------- po/th.po | 133 +++++++++++++++++++++++++++--------------------- po/tr.po | 129 ++++++++++++++++++++++++++--------------------- po/uk.po | 134 +++++++++++++++++++++++++++---------------------- po/update-manager.pot | 129 ++++++++++++++++++++++++++--------------------- po/ur.po | 129 ++++++++++++++++++++++++++--------------------- po/urd.po | 129 ++++++++++++++++++++++++++--------------------- po/vi.po | 134 +++++++++++++++++++++++++++---------------------- po/xh.po | 132 ++++++++++++++++++++++++++---------------------- po/zh_CN.po | 133 +++++++++++++++++++++++++++--------------------- po/zh_HK.po | 134 +++++++++++++++++++++++++++---------------------- po/zh_TW.po | 133 +++++++++++++++++++++++++++--------------------- update-manager | 8 +-- 57 files changed, 4205 insertions(+), 3265 deletions(-) diff --git a/po/ar.po b/po/ar.po index 61651426..407b7b39 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Jadmadi \n" "Language-Team: Arabic \n" @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "قراءة من الكاش" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "importing" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "مصدر الطرف الثالث غير مفعل" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "خطاء خلال التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "لا يوجد مساحة كافية على القرص الصلب" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -443,7 +454,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -481,19 +492,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -503,7 +514,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -511,7 +522,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -519,7 +530,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -527,7 +538,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -535,39 +546,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -798,13 +809,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/bg.po b/po/bg.po index de8aae0e..4c9510c4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:40+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -253,11 +253,11 @@ msgstr "" msgid "Reading cache" msgstr "Четене на кеша" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -265,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Не е открит валиден огледален сървър" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +289,11 @@ msgstr "" "Ако изберете \"Не\", актуализирането ще бъде отменено." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -307,11 +307,11 @@ msgstr "" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Информацията от хранилището е невалидна" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -319,11 +319,11 @@ msgstr "" "Надграждане на информацията от хранилището доведе до невалиден файл. Моля, " "съобщете това като грешка!" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Забранени са източници от трети страни" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -334,11 +334,11 @@ msgstr "" "Можете да ги разрешите отново след надграждането чрез инструмента software-" "properties или чрез synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Грешка по време на надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +346,11 @@ msgstr "" "Възникна проблем при актуализацията. Това обикновено е накакъв проблем с " "мрежата. Моля, проверете мрежовата връзка и опитайте пак!" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Недостатъчно свободно място на диска" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Не можеше да бъдат инсталирани надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Надграждането сега ще бъде прекратено. Системата Ви може да е в " "неизползваемо състояние. Бе изпълнено възстановяване (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Не можеше да бъдат свалени надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Надграждането се прекратява. Моля, проверете Интернет връзката или " "инсталационния носител и опитайте отново! " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -404,23 +404,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Премахване на остарелите пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "П_рескачане на стъпката" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Премахване" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Грешка при прехвърляне" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -429,32 +429,47 @@ msgstr "" "информация! " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Рестартиране на системата" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Проверка на диспечера на пакети" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Подготвяне на надграждането" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Възникна непреодолим проблем при планиране на надграждането. Докладвайте " +"това като грешка. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Актуализиране информацията от хранилището" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 #, fuzzy msgid "Invalid package information" msgstr "Невалидна информация за пакет" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -467,19 +482,19 @@ msgstr "" "бъде открит.\n" "Това показва сериозна грешка. Моля, съобщете за това!" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Запитване за потвърждение" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." @@ -500,7 +515,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -540,19 +555,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Командата \"diff\" не бе намерена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Възникна фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -568,28 +583,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -597,7 +612,7 @@ msgid "" "You have to download a total of %s. " msgstr "Трябва да изтеглите данни общо %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -606,35 +621,35 @@ msgstr "" "Надграждането може да отнеме няколко часа, като не може да бъде отменено по-" "нататък." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Премахване на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Инсталиране на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Надграждане на %s" @@ -886,13 +901,17 @@ msgid "The list of changes is not available" msgstr "Списъкът с промените още не е наличен. Моля, опитайте по-късно!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Списъкът с промените още не е наличен. Моля, опитайте по-късно!" #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." diff --git a/po/bn.po b/po/bn.po index 01de9ff2..1a22b0e9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-26 12:09+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -235,11 +235,11 @@ msgstr "" msgid "Reading cache" msgstr "ক্যাশ পড়া হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "কোন সঠিক মিরর পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -282,11 +282,11 @@ msgstr "" "'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " "হবে।" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "রিপোজিটরির তথ্য সঠিক নয়" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -294,22 +294,22 @@ msgstr "" "রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " "হিসাবে রিপোর্ট করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "তৃতীয় পার্টির উত্স নিষ্ক্রিয়" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "আপগ্রেড করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -317,11 +317,11 @@ msgstr "" "আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " "আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "ডিস্কে যথেস্ট ফাঁকা জায়গা নেই" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,11 +347,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -359,11 +359,11 @@ msgstr "" "আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " "করুন এবং আবার চেষ্টা করুন। " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -372,54 +372,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "এই ধাপটি এড়িয়ে যাও (_এ)" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "সরাও (_স)" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "আপগ্রেড প্রস্তুত করা হচ্ছে" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -429,19 +441,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "তথ্যের জন্য জিজ্ঞাসা" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" @@ -462,7 +474,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "%li of %li ফাইল ডাউনলোড করছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "%li মিিনিট বাকি আছে" @@ -502,19 +514,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "'diff' কমান্ডটি পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -524,28 +536,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -553,40 +565,40 @@ msgid "" "You have to download a total of %s. " msgstr "আপনাকে সর্বমোট %s ডাউনলোড করতে হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "%s মুছো" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "%s ইন্সটল" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "%s আপগ্রেড" @@ -824,14 +836,17 @@ msgid "The list of changes is not available" msgstr "পরিবর্তনের তালিকা এখনে উপস্হিত নয়। অনুগ্রহ করে পরে আবার চেষ্টা করুন।" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "পরিবর্তনের তালিকা এখনে উপস্হিত নয়। অনুগ্রহ করে পরে আবার চেষ্টা করুন।" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" diff --git a/po/br.po b/po/br.po index 4f10ce89..2ab541d1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -232,11 +232,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,42 +274,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +318,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,54 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -415,19 +426,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -447,7 +458,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -485,19 +496,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -507,28 +518,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -536,39 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -799,13 +810,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/ca.po b/po/ca.po index 2017d490..c930b461 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-29 21:18+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -255,11 +255,11 @@ msgstr "" msgid "Reading cache" msgstr "S'està llegint la memòria cau" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "No s'ha trobat una rèplica vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -284,11 +284,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -297,11 +297,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "La informació del dipòsit no és vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -309,11 +309,11 @@ msgstr "" "En actualitzar la informació del dipòsit s'ha produït un error. Informeu de " "l'error." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "S'han desactivat les fonts de tercers" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -324,11 +324,11 @@ msgstr "" "reactivar-los, després de l'actualització de programari, des de 'propietats " "del programari' o des del Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -336,11 +336,11 @@ msgstr "" "S'ha produït un error mentre s'actualizava el vostre sistema. Comproveu la " "vostra connexió de xarxa i torneu a intentar-ho." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +353,15 @@ msgstr "" "apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -373,11 +373,11 @@ msgstr "" "L'actualització s'ha cancel·lat. El vostre sistema ha pogut quedar " "inservible. S'ha executat una recuperació del sistema (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "No s'han pogut descarregar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +385,11 @@ msgstr "" "S'ha cancel·lat l'actualització. Comproveu la vostra connexió a Internet o " "el mitjà d'instal·lació i torneu-ho a provar. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -403,54 +403,69 @@ msgstr "" "\n" "Si no teniu activat 'universe' se us sugerirà que els desintal·leu. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Voleu esborrar els paquets obsolets?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Omet aquest pas" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "Esbo_rra" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "S'està preparant l'actualització" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"S'ha produït un problema greu alhora de calcular l'actualització. Informeu " +"de l'error. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "S'està actualitzant la informació del dipòsit" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "La informació del paquet no és valida" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -460,19 +475,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Actualitzant" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" @@ -493,7 +508,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "S'està descarregant el fitxer %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Queden uns %li minuts" @@ -533,19 +548,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'ordre 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "S'ha produït un error greu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -555,28 +570,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -584,7 +599,7 @@ msgid "" "You have to download a total of %s. " msgstr "Heu de descarregar un total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -593,35 +608,35 @@ msgstr "" "L'actualització pot durar algunes hores i no la podreu cancel·lar un cop " "hagi començat." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Esborra %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Instal·la %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" @@ -863,13 +878,17 @@ msgid "The list of changes is not available" msgstr "La llista de canvis encara no està disponible. Proveu-ho després." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "La llista de canvis encara no està disponible. Proveu-ho després." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." diff --git a/po/cs.po b/po/cs.po index fdbd6c36..1edefee8 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-25 18:52+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" @@ -248,11 +248,11 @@ msgstr "" msgid "Reading cache" msgstr "Probíhá čtení cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Nenalezeno správné zrcadlo" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -277,11 +277,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vytvořit standardní zdroje?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -290,11 +290,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Neplatná informace zdroje" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -302,22 +302,22 @@ msgstr "" "Upgrade informací o úložišti vrátil neplatný soubor. Prosím oznamte to jako " "chybu." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Zdroje třetích stran vypnuté" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Chyba během aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -325,11 +325,11 @@ msgstr "" "Nastala chyba během aktualizace. Toto je obvykle způsobeno chybou síťového " "připojení. Prosím zkontrolujte své připojení a zkuste to znovu." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Nedostatek volného místa na disku" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -338,15 +338,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Nelze nainstalovat aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -359,11 +359,11 @@ msgstr "" "stavu. Zkuste ho prosím opravit pomocí 'sudo apt-get install -f' nebo " "Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Nelze stáhnout aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -371,11 +371,11 @@ msgstr "" "Aktualizace byla předčasně ukončena. Prosím zkontrolujte si připojení k " "internetu nebo instalační médium a zkuste to znovu. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -384,23 +384,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Odebrat zastaralé balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Přeskočit tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Odebrat" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Chyba při zaznamenávání" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -409,31 +409,46 @@ msgstr "" "prohléhněte níže uvedenou zprávu. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Kontroluje se manažer balíků" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Připravuje se upgrade" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Při výpočtu aktualizace nastal neřešitelný problém. Prosím oznamte to jako " +"chybu. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Aktualizují se informace o úložišti" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -443,19 +458,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Požaduje se potvrzení" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Probíhá upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Vyhledáván zastaralý software" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Upgrade systému je dokončen." @@ -476,7 +491,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Zhruba %li minut zbývá" @@ -516,19 +531,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Příkaz \"diff\" nebyl nalezen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Nastala fatální chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -543,7 +558,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -551,7 +566,7 @@ msgstr[0] "%s balík bude odstraněn." msgstr[1] "%s balíky budou odstraněny." msgstr[2] "%s balíků bude odstraněno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -559,7 +574,7 @@ msgstr[0] "%s nový balík bude nainstalován." msgstr[1] "%s nové balíky budou nainstalovány." msgstr[2] "%s nových balíků bude nainstalováno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -567,7 +582,7 @@ msgstr[0] "%s balík bude nahrazen vyšší verzí." msgstr[1] "%s balíky budou nahrazeny vyšší verzí." msgstr[2] "%s balíky bude nahrazeno vyšší verzí." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -575,40 +590,40 @@ msgid "" "You have to download a total of %s. " msgstr "Bude staženo celkem %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Upgrade může trvat několik hodin a nesmí být později přerušen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Odstranit %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Nainstalovat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Upgradovat %s" @@ -858,13 +873,17 @@ msgid "The list of changes is not available" msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Selhalo stažení seznamu změn. Prosím zkontrolujte své internetové připojení." diff --git a/po/da.po b/po/da.po index b8099a11..a2ead496 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -253,11 +253,11 @@ msgstr "" msgid "Reading cache" msgstr "Læser cache-mellemlager" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -265,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -282,11 +282,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,11 +295,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Arkivinformation ugyldig." -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -307,22 +307,22 @@ msgstr "" "Opgradering af arkivet resulterede i en ødelagt fil. raporter venligst dette " "som en fejl." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Trediepartskilder er fravalgt" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Fejl under opdatering" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -330,11 +330,11 @@ msgstr "" "En fejl forekom under opdateringen. Dette skyldes som regel et " "netværksproblem, tjek venligst din netværksforbindelse og prøv igen." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Der er ikke nok fri diskplads" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -346,15 +346,15 @@ msgstr "" "køre 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -366,11 +366,11 @@ msgstr "" "Upgraderingen afbrydes nu. Dit system kan forekomme ustabilt. En oprydning " "blev foretaget (dpkg --configura -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -378,11 +378,11 @@ msgstr "" "Opgraderingen afbryder nu. Tjek venligst din internetforbindelse eller dit " "installationsmedie og prøv igen. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -397,25 +397,25 @@ msgstr "" "Hvis du ikke har slået 'universe' til, vil fjernelsen af disse pakker blive " "foreslået i det næste trin. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 #, fuzzy msgid "_Skip This Step" msgstr "_Spring dette trin over" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 #, fuzzy msgid "Error during commit" msgstr "Fejl under udførsel" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -424,31 +424,46 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Genstarter oprindelig systemtilstand" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Klargør opgraderingen" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Der forekom et uløseligt problem under beregningen af opgraderingen. " +"Rapportér venligst dette som en fejl. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -458,19 +473,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Opgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" @@ -491,7 +506,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Henter fil %li af %li fra %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Tid tilbage(ca.): %li minutter" @@ -531,19 +546,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' blev ikke fundet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "En alvorlig fejl opstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -558,28 +573,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil blive fjernet." msgstr[1] "%s pakker vil blive fjernet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s ny pakke vil blive installeret." msgstr[1] "%s nye pakker vil blive installeret." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil blive opgraderet." msgstr[1] "%s pakker vil bliver opgraderet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -587,40 +602,40 @@ msgid "" "You have to download a total of %s. " msgstr "Der skal i alt hentes %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Opgraderingen kan tage flere timer og kan ikke fortrydes senere." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Opgrader %s" @@ -872,14 +887,17 @@ msgid "The list of changes is not available" msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Fejl ved hentning af ændringslisten. Undersøg venligst din " "internetforbindelse." diff --git a/po/de.po b/po/de.po index 3608c085..66f24935 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-27 10:58+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -258,11 +258,11 @@ msgstr "" msgid "Reading cache" msgstr "Zwischenspeicher wird ausgelesen" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +270,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Kein gültiger Mirror gefunden" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +294,11 @@ msgstr "" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Standardquellen generieren?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +312,11 @@ msgstr "" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Ungültige Kanalinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +324,11 @@ msgstr "" "Die Aktualisierung der Quellen-Information ergab eine ungültige Datei. Bitte " "erstellen Sie einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Quellen von Drittanbietern deaktiviert" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -339,11 +339,11 @@ msgstr "" "Sie können diese nach dem Upgrade mit dem 'software-properties'-Werkzeug " "oder mit Synaptic reaktivieren." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Fehler während der Aktualisierung" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -352,11 +352,11 @@ msgstr "" "Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre " "Netzwerkverbindung und versuchen Sie es noch einmal." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Unzureichender freier Festplattenspeicher" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -368,15 +368,15 @@ msgstr "" "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -389,11 +389,11 @@ msgstr "" "unbenutzbaren Zustand befinden. Eine Wiederherstellung wurde durchgeführt " "(dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -402,11 +402,11 @@ msgstr "" "Internet-Verbindung oder Ihr Installationsmedium und versuchen Sie es noch " "einmal. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -421,23 +421,23 @@ msgstr "" "Wenn sie 'universe' nicht aktiviert haben, werden diese Pakete im nächsten " "Schritt zum Entfernen vorgeschlagen. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "Ü_berspringen" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Entfernen" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Fehler beim Anwenden" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -446,31 +446,46 @@ msgstr "" "Nachricht für nähere Informationen. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Aktualisierung vorbereiten" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " +"erstellen Sie hierfür einen Fehlerbericht. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Aktualisiere Quellen-Information" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -484,19 +499,19 @@ msgstr "" "Dies deutet auf einen gravierenden Fehler hin, bitte erstellen Sie hierfür " "einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Nach Bestätigung fragen" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Aktualisiere" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Nach veralteter Software wird gesucht" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." @@ -517,7 +532,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Lade Datei %li von %li mit %s/s herunter" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Ungefähr %li Minute(n) verbleibend" @@ -557,19 +572,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Das 'diff'-Kommando konnte nicht gefunden werden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Ein fataler Fehler ist aufgetreten" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -585,28 +600,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -614,7 +629,7 @@ msgid "" "You have to download a total of %s. " msgstr "Insgesamt müssen %s heruntergeladen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -623,35 +638,35 @@ msgstr "" "Die Aktualisierung kann mehrere Stunden dauern und zu keiner Zeit mehr " "abgebrochen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "%s wird entfernt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "%s wird installiert" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "%s wird aktualisiert" @@ -908,15 +923,19 @@ msgstr "" "Sie es zu einem späteren Zeitpunkt erneut." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "Die Liste mit Aktualisierungen ist momentan nicht verfügbar. Bitte versuchen " "Sie es zu einem späteren Zeitpunkt erneut." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." diff --git a/po/el.po b/po/el.po index 7466f50b..61ecee4d 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-25 15:39+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -252,11 +252,11 @@ msgstr "" msgid "Reading cache" msgstr "Ανάγνωση λανθάνουσας μνήμης" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Δεν βρέθηκε έγκυρη εναλλακτική τοποθεσία αρχείων" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +289,11 @@ msgstr "" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -307,11 +307,11 @@ msgstr "" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Μη έγκυρες πληροφορίες repository" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -319,11 +319,11 @@ msgstr "" "Η αναβάθμιση των πληροφοριών repository είχε σαν αποτέλεσμα ένα άκυρο " "αρχείο. Παρακαλώ αναφέρετε το ως σφάλμα." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Απενεργοποιήθηκαν πηγές τρίτων" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -334,11 +334,11 @@ msgstr "" "Μπορείτε να τις ενεργοποιήσετε μετά την αναβάθμιση με το εργαλείο 'software-" "properties' ή με το synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Σφάλμα κατά την ενημέρωση" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +346,11 @@ msgstr "" "Δημιουργήθηκε ένα πρόβλημα κατά την αναβάθμιση. Αυτό συνήθως σημαίνει " "πρόβλημα δικτύου. Ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε ξανά." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +362,15 @@ msgstr "" "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -382,11 +382,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Το σύστημα σας μπορεί να γίνει ασταθές. " "Εκτελείται μια διεργασία ανάκτησης (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +394,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -413,23 +413,23 @@ msgstr "" "Αν δεν έχετε ενεργοποιημένο το 'universe' , θα γίνει πρόταση για απομάκρυνση " "αυτών των πακέτων στο επόμενο βήμα. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "Παράκα_μψη αυτου του βήματος" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Απομάκρυνση" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,31 +438,46 @@ msgstr "" "παρακάτω μήνυμα για περισσότερες πληροφορίες. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Προετοιμασία της αναβάθμισης" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Συνέβηκε ένα ανεπίλυτο πρόβλημα κατά τον υπολογισμό της αναβάθμισης. " +"Παρακαλώ αναφέρετε το ως σφάλμα. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών repository" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +490,19 @@ msgstr "" "απαραίτητο πακέτο '%s'.\n" " Αυτό σημαίνει ότι πρόκειται για σημαντικό σφάλμα, παρακαλώ αναφέρετε το." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Ερώτηση για επιβεβαίωση" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." @@ -508,7 +523,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Απομένουν περίπου %li λεπτά" @@ -548,19 +563,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Η εντολή 'diff' δεν βρέθηκε" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Προέκυψε μοιραίο σφάλμα" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -576,28 +591,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s πακέτο πρόκειται να απομακρυνθεί." msgstr[1] "%s πακέτα πρόκειται να απομακρυνθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s νέο πακέτο πρόκειται να εγκατασταθεί." msgstr[1] "%s νέο πακέτα πρόκειται να εγκατασταθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s πακέτο πρόκειται να αναβαθμιστεί." msgstr[1] "%s πακέτα πρόκειται να αναβαθμιστούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -605,7 +620,7 @@ msgid "" "You have to download a total of %s. " msgstr "Θα πρέπει να μεταφορτώσετε συνολικά %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -614,35 +629,35 @@ msgstr "" "Η αναβάθμιση μπορεί να διαρκέσει αρκετές ώρες και δεν είναι δυνατή η ακύρωση " "της αργότερα." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Απομάκρυνση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Εγκατάσταση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Αναβάθμιση %s" @@ -894,14 +909,18 @@ msgstr "" "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο." diff --git a/po/en_AU.po b/po/en_AU.po index c2b9cd2b..01f6a86b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-26 21:06+0000\n" "Last-Translator: David Symons \n" "Language-Team: English (Australia) \n" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "Reading cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "No valid mirror found" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +286,11 @@ msgstr "" "If you select 'no' the update will cancel." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generate default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +303,11 @@ msgstr "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Repository information invalid" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,11 +315,11 @@ msgstr "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Third party sources disabled" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -330,11 +330,11 @@ msgstr "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +342,11 @@ msgstr "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -358,15 +358,15 @@ msgstr "" "'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -378,11 +378,11 @@ msgstr "" "The upgrade aborts now. Your system can be in an unusable state. A recovery " "was run (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +390,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -409,23 +409,23 @@ msgstr "" "If you don't have 'universe' enabled these packages will be suggested for " "removal in the next step. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,31 +434,46 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Preparing the upgrade" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"An unresolvable problem occured while calculating the upgrade. Please report " +"this as a bug. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +486,19 @@ msgstr "" "not be found anymore.\n" "This indicates a serious error, please report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "System upgrade is complete." @@ -504,7 +519,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Downloading file %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "About %li minutes remaining" @@ -545,19 +560,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -572,28 +587,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s package is going to be removed." msgstr[1] "%s packages are going to be removed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s new package is going to be installed." msgstr[1] "%s new packages are going to be installed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s package is going to be upgraded." msgstr[1] "%s packages are going to be upgraded." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -601,7 +616,7 @@ msgid "" "You have to download a total of %s. " msgstr "You have to download a total of %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -609,33 +624,33 @@ msgid "" msgstr "" "The upgrade can take several hours and cannot be canceled at any time later." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -884,13 +899,17 @@ msgid "The list of changes is not available" msgstr "The list of changes is not available yet. Please try again later." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "The list of changes is not available yet. Please try again later." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Failed to download the list of changes. Please check your Internet " "connection." diff --git a/po/en_CA.po b/po/en_CA.po index 857c0f8b..6835c514 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -237,11 +237,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +266,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,55 +364,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"The key you selected could not be removed. Please report this as a bug. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,20 +435,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -455,7 +468,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -494,19 +507,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -516,28 +529,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -545,40 +558,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -819,14 +832,17 @@ msgid "The list of changes is not available" msgstr "There is a new release of Ubuntu available!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "There is a new release of Ubuntu available!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." diff --git a/po/en_GB.po b/po/en_GB.po index 8cfd6579..aedd7e7d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:41+0000\n" "Last-Translator: Abigail Brady \n" "Language-Team: \n" @@ -236,11 +236,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -248,11 +248,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -265,11 +265,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -278,43 +278,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +323,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,21 +340,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -363,55 +363,69 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Downloading Changes" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"The key you selected could not be removed. Please report this as a bug. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -421,21 +435,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, fuzzy msgid "Asking for confirmation" msgstr "Checking system configuration" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -455,7 +469,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -494,19 +508,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -516,28 +530,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -545,40 +559,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -816,14 +830,17 @@ msgid "The list of changes is not available" msgstr "There is a new release of Ubuntu available!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "There is a new release of Ubuntu available!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." diff --git a/po/es.po b/po/es.po index 892c518b..c93a2326 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-26 09:38+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -258,11 +258,11 @@ msgstr "" msgid "Reading cache" msgstr "Leyendo caché" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +270,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "No se ha encontrado un servidor espejo válido" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -295,11 +295,11 @@ msgstr "" "Si selecciona «No» se cancelará la actualización." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -313,11 +313,11 @@ msgstr "" "¿Deben añadirse entradas predeterminadas para «%s»? Si selecciona «No» se " "cancelará la actualización." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Información de repositorio no válida" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -325,11 +325,11 @@ msgstr "" "La actualización de la información del repositorio generó un archivo " "incorrecto. Por favor, informe de ésto como un error." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Orígenes de terceros desactivados" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -340,11 +340,11 @@ msgstr "" "volver a activarlas tras la actualización con la herramienta «Propiedades " "del software», o con Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Error durante la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -353,11 +353,11 @@ msgstr "" "tipo de problema en la red, por lo que le recomendamos que compruebe su " "conexión de red y vuelva a intentarlo." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "No hay espacio suficiente en el disco" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -369,15 +369,15 @@ msgstr "" "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -390,11 +390,11 @@ msgstr "" "estado inutilizable. Se está llevando a cabo una recuperación (dpkg --" "configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -402,11 +402,11 @@ msgstr "" "La actualización se interrumpirá ahora. Por favor, compruebe su conexión a " "Internet (o su soporte de instalación) y vuelva a intentarlo. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -421,23 +421,23 @@ msgstr "" "Si no tiene activado el «universe», se le sugerirá que desinstale estos " "paquetes en el siguiente paso. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Quitar" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Error durante la confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -446,31 +446,46 @@ msgstr "" "inferior para más información. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Comprobando gestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Preparando la actualización" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Ha ocurrido un problema imposible de resolver cuando se calculaba la " +"actualización. Por favor, informe de ésto como un fallo. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Información de paquete no válida" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -483,19 +498,19 @@ msgstr "" "posible encontrar el paquete esencial «%s».\n" "Esto indica un problema serio; por favor, informe de esto como un fallo." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." @@ -516,7 +531,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Descargando archivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Faltan %li minutos" @@ -556,19 +571,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "No se ha encontrado el comando «diff»" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Ha ocurrido un error fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -584,28 +599,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Se va a desinstalar %s paquete." msgstr[1] "Se van a desinstalar %s paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Se va a instalar %s paquete nuevo." msgstr[1] "Se van a instalar %s paquetes nuevos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Se va a actualizar %s paquete." msgstr[1] "Se van a actualizar %s paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -613,7 +628,7 @@ msgid "" "You have to download a total of %s. " msgstr "Debe descargar un total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -622,35 +637,35 @@ msgstr "" "La actualización puede durar varias horas, y no podrá ser cancelada después " "en ningún momento." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -906,15 +921,19 @@ msgstr "" "más tarde." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "La lista de cambios no está disponible aún. Por favor, inténtelo de nuevo " "más tarde." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Hubo un fallo al descargar la lista de cambios. Por favor, compruebe su " "conexión a Internet." diff --git a/po/fi.po b/po/fi.po index 94c84233..b5515135 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-25 18:26+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -252,11 +252,11 @@ msgstr "" msgid "Reading cache" msgstr "Luetaan kätköä" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Ei löytynyt sopivaa palvelinta" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +289,11 @@ msgstr "" "Jos valitset \"Ei\", päivitys keskeytyy." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Luo ja ota käyttöön oletusohjelmalähteet?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +306,11 @@ msgstr "" "Otetaanko käyttöön \"%s\":n oletuslähteet? Jos valitset \"Ei\", päivitys " "keskeytyy." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Virhe ohjelmavarastotiedoissa" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,11 +318,11 @@ msgstr "" "Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Ilmoita " "tästä virheraportilla." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Kolmannen osapuolet ohjelmalähteet poissa käytöstä" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -333,11 +333,11 @@ msgstr "" "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen \"ohjelma-" "asetukset\"-työkalulla tai Synaptic-ohjelmalla." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Virhe päivitettäessä" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +345,11 @@ msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -361,15 +361,15 @@ msgstr "" "komentoa 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Ei voitu asentaa päivityksiä" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -381,11 +381,11 @@ msgstr "" "Päivitys keskeytyy. Järjestelmäsi voi olla käyttökelvottomassa tilassa. " "Korjaustoimenpiteet suoritettiin (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +393,11 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -412,23 +412,23 @@ msgstr "" "Jos sinulla ei ole 'universe'-ohjelmakanavaa otettuna käyttöön, nämä paketit " "suositellaan poistettaviksi seuraavassa kohdassa. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Poista vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Virhe suoritettaesa" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -437,31 +437,46 @@ msgstr "" "lisätietoja. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Valmistellaan päivitystä" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Tehtäessä päivitykseen liittyviä tarkistuksia tapahtui virhe jota ei voitu " +"korjata. Ilmoita tästä virheraportilla. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -474,19 +489,19 @@ msgstr "" "enää löydetty.\n" "Tämä merkitsee vakavaa virhettä, ilmoita tästä virheraportilla." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Etsitään vanhetuneita ohjelmia" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." @@ -507,7 +522,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Noin %li minuuttia jäljellä" @@ -547,19 +562,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Vakava virhe tapahtui" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -572,28 +587,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paketti poistetaan" msgstr[1] "%s pakettia poistetaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s uusi paketti asennetaan" msgstr[1] "%s uutta pakettia asennetaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paketti päivitetään" msgstr[1] "%s pakettia päivitetään" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -601,7 +616,7 @@ msgid "" "You have to download a total of %s. " msgstr "Noudettavaa yhteensä %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -609,34 +624,34 @@ msgid "" msgstr "" "Päivitys voi kestää useita tunteja, eikä sitä voi keskeyttää enää myöhemmin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Poista %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Asenna %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" @@ -888,13 +903,17 @@ msgid "The list of changes is not available" msgstr "Muutosluettelo ei ole vielä saatavilla. Yritä myöhemmin uudelleen." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Muutosluettelo ei ole vielä saatavilla. Yritä myöhemmin uudelleen." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Muutosluettelon nouto epäonnistui. Tarkista Internet-yhteytesi toimivuus." diff --git a/po/fr.po b/po/fr.po index 263f6d4b..b521d8ba 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-26 21:09+0000\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" @@ -256,11 +256,11 @@ msgstr "" msgid "Reading cache" msgstr "Lecture du cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +268,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Aucun mirroir valide n'a pu être trouvé" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -293,11 +293,11 @@ msgstr "" "Sinon, la mise à jour sera annulée." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -311,11 +311,11 @@ msgstr "" "Les entrées par défaut pour « %s » doivent-elles être ajoutées ? Si vous " "sélectionnez « Non », la mise à jour sera annulée." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Informations sur le dépôt invalides" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -323,11 +323,11 @@ msgstr "" "La mise à jour des informations du dépôt a créé un fichier invalide. Merci " "de rapporter ce bogue." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Sources provenant de tiers désactivées" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -338,11 +338,11 @@ msgstr "" "désactivées. Vous pouvez les réactiver après la mise à jour avec l'outil « " "Gestionnaire de canaux logiciels » ou avec Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Erreur lors de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +351,11 @@ msgstr "" "un problème de réseau. Veuillez vérifier votre connexion au réseau et " "réessayer." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Il n'y a pas assez d'espace libre sur le disque" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -368,15 +368,15 @@ msgstr "" "get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Les mises à jour n'ont pu être installées" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -388,11 +388,11 @@ msgstr "" "Abandon de la mise à jour. Votre système est peut-être inutilisable. Une " "recupération a été lancée (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Les mises à jour n'ont pu être téléchargées" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +400,11 @@ msgstr "" "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou " "votre médium d'installation puis réessayez. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -419,23 +419,23 @@ msgstr "" "Si vous n'avez pas activé le dépot 'universe', la suppression de ces paquets " "vous sera suggérée lors de la prochaine étape. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes ?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Passer cette étape" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Supprimer" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Erreur pendant la soumission" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,31 +444,46 @@ msgstr "" "ci-dessous pour plus d'informations. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Préparation de la mise à jour" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Un problème insoluble est apparu lors du calcul de la mise à jour. Merci " +"rapporter ce bogue. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts en cours" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Information sur les paquet invalides" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -482,19 +497,19 @@ msgstr "" "Ceci est indique qu'une erreur important s'est produite, veuillez rapporter " "ce bogue." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Demande de confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Mise à jour en cours" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." @@ -515,7 +530,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Téléchargement du fichier %li sur %li à %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Environ %li minutes restantes" @@ -555,19 +570,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pu être trouvée" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Une erreur fatale est survenue" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -583,28 +598,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Le paquet %s va être supprimé." msgstr[1] "Les paquets %s vont être supprimés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Le paquet %s va être installé." msgstr[1] "Les paquets %s vont être installés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Le paquet %s va être mis à jour." msgstr[1] "Les paquets %s vont être mis à jour." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -612,7 +627,7 @@ msgid "" "You have to download a total of %s. " msgstr "Vous devez télécharger un total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -621,35 +636,35 @@ msgstr "" "La mise à jour peut prendre plusieurs heures et ne peut être annulée " "ultérieurement." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 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." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Votre système est à jour" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Supprimer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Mettre à jour %s" @@ -904,15 +919,19 @@ msgstr "" "plus tard." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +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." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Échec du téléchargement de la liste des modifications. Veuillez vérifier que " "votre connexion Internet est activée." diff --git a/po/fur.po b/po/fur.po index 548b7e2b..c0b8f8aa 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-30 14:37+0000\n" "Last-Translator: marcuz \n" "Language-Team: Friulian \n" @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -443,7 +454,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -481,19 +492,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -503,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -532,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -795,13 +806,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/gl.po b/po/gl.po index 50777c6f..add935b6 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:42+0000\n" "Last-Translator: Ignacio Casal Quinteiro \n" "Language-Team: Galego\n" @@ -242,11 +242,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -254,11 +254,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -271,11 +271,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,43 +284,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "Erro ao quitar a clave" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +329,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,21 +346,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -369,55 +369,70 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "Xa hai outro xestor de paquetes en execución" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Descargando cambios" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un " +"erro. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -427,20 +442,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "Actualización rematada" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -460,7 +475,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -499,19 +514,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -521,28 +536,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -550,40 +565,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -822,14 +837,17 @@ msgid "The list of changes is not available" msgstr "Hai unha versión nova de Ubuntu dispoñible!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "Hai unha versión nova de Ubuntu dispoñible!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Fallou ao descargar o informe de cambios. Comprobe se ten algunha conexión " "activa." diff --git a/po/he.po b/po/he.po index e6efd588..f88c527b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-30 11:15+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -246,11 +246,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -258,11 +258,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -275,11 +275,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -288,32 +288,32 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "שגיאה במהלך העדכון" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -321,11 +321,11 @@ msgstr "" "הייתה בעיה בתהליך העידכון. בדרך כלל זוהי בעיית רשת, אנא בדקו את חיבור הרשת " "שלכם ונסו שנית." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "אין מספיק שטח בדיסק הקשיח" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -334,15 +334,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -351,22 +351,22 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. אנא בדקו את החיבור לאינטרנט או את מדיית ההתקנה ונסו שנית. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -375,55 +375,70 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_דלג על השלב" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_הסר" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 #, fuzzy msgid "Restoring original system state" msgstr "מאתחל את המערכת" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "מכין את השדרוג" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" +"כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,19 +450,19 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "משדרג" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." @@ -468,7 +483,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה." #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "נותרו %li דקות." @@ -507,19 +522,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -529,28 +544,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "חבילה %s תשודרג." msgstr[1] "%s חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "חבילה חדשה %s תותקן." msgstr[1] "%s חבילות חדשות יותקנו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "חבילה %s תשודרג." msgstr[1] "%s חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -558,41 +573,41 @@ msgid "" "You have to download a total of %s. " msgstr "יש להוריד %s בסה\"כ." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "השדרוג עשוי לקחת מספר שעות, ולא ניתן לבטלו בשלב מאוחר יותר." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "הסר %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "התקן %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "שדרג %s" @@ -831,14 +846,17 @@ msgid "The list of changes is not available" msgstr "גרסה חדשה של אובונטו זמינה!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "גרסה חדשה של אובונטו זמינה!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "נכשל בהורדת השינויים. אנא בדוק אם החיבור לאינטרנט עובד." #. Description diff --git a/po/hi.po b/po/hi.po index d016c603..7712f25f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:46+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Hindi \n" @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -443,7 +454,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -481,19 +492,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -503,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -532,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -795,13 +806,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/hr.po b/po/hr.po index ef0c3c6a..90a7741f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-24 20:54+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "Čitam spremnik" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Nisam našao ispravan zrcalni poslužitelj" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +286,11 @@ msgstr "" "Ako odaberete 'ne' nadogradnja će se prekinuti." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +303,11 @@ msgstr "" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Podaci repozitorija neispravni" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,11 +315,11 @@ msgstr "" "Nadogradnja podataka repozitorija je rezultirala neispravnom datotekom. " "Molim, prijavite ovo kao bug." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -330,11 +330,11 @@ msgstr "" "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Greška prilikom nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +342,11 @@ msgstr "" "Pojavio se problem prilikom nadogradnje. Obično se radi o mrežnom problemu, " "pa vas molim da provjerite vašu mrežu i pokušate ponovo." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -358,15 +358,15 @@ msgstr "" "koristeći 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -378,11 +378,11 @@ msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Obnavljanje je pokrenuto (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +390,11 @@ msgstr "" "Nadogradnja se prekida. Molim provjerite vašu internet vezu ili " "instalacijski medij i pokušajte ponovo. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -409,23 +409,23 @@ msgstr "" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Preskoči ovaj korak" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Ukloni" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Greška prilikom čina" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,31 +434,46 @@ msgstr "" "više informacija. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Pripremam nadogradnju" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " +"prijavite ovo kao grešku. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Neispravni podaci paketa" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +486,19 @@ msgstr "" "naći.\n" "Ovo upućuje na ozbiljnu grešku, molim prijavite ovo kao bug." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Pitam za potvrdu" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Nadograđujem" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." @@ -504,7 +519,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Otprilike je ostalo %li minuta" @@ -544,19 +559,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Pojavila se ozbiljna greška" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -572,7 +587,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -580,7 +595,7 @@ msgstr[0] "%s paket će biti uklonjen." msgstr[1] "%s paketa će biti uklonjena." msgstr[2] "%s paketa će biti uklonjeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -588,7 +603,7 @@ msgstr[0] "%s novi paket će biti instaliran." msgstr[1] "%s nova paketa će biti instalirana." msgstr[2] "%s novih paketa će biti instalirano." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -596,7 +611,7 @@ msgstr[0] "%s paket će biti nadograđen." msgstr[1] "%s paketa će biti nadograđena." msgstr[2] "%s paketa će biti nadograđeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -604,7 +619,7 @@ msgid "" "You have to download a total of %s. " msgstr "Morate preuzeti ukupno %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -613,33 +628,33 @@ msgstr "" "Nadogradnja može potrajati nekoliko sati i ne može biti prekinuta niti u " "jednom trenutku." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Ukloni %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Instaliraj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" @@ -892,14 +907,18 @@ msgstr "" "Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Preuzimanje popisa promjena nije uspjelo. Molim, provjerite svoju internet " "vezu." diff --git a/po/hu.po b/po/hu.po index 44223273..ab35a0d7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-28 21:22+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -249,11 +249,11 @@ msgstr "" msgid "Reading cache" msgstr "Gyorsítótár beolvasása" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -261,11 +261,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "nem található érvényes tükör" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +286,11 @@ msgstr "" "A \"Nem\" kiválasztása megszakítja a frissítést." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +304,11 @@ msgstr "" "Kíván alapértelmezett bejegyzéseket adni a következőhöz: %s? Ha a Nem " "gombott választja, a frissítés félbeszakad." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Érvénytelen csomagtároló információ" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +316,11 @@ msgstr "" "A csomagtároló információ frissítése hibás fájlt eredményezett. Kérem, " "jelentse ezt hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "A külső források letiltva" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -331,11 +331,11 @@ msgstr "" "a frissítés után a Szoftvertulajdonságok eszközzel, vagy a Synaptic " "csomagkezelővel." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Hiba történt a frissítés közben" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. " "Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Nincs elég szabad hely a merevlemezen" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "fájljait a \"sudo apt-get clean\" parancs kiadásával." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " "állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy " "a telepítő médiát és próbálja újra. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,23 +410,23 @@ msgstr "" "Ha nincs engedélyezve a \"universe\" tároló, akkor ezek a csomagok a " "következő lépésben ki lesznek jelölve eltávolításra. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "Ezen lé_pés kihagyása" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Eltávolítás" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,31 +435,46 @@ msgstr "" "információkat tartalmaz a hibára vonatkozóan. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Frissítés előkészítése" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"A frissítés megtervezése közben feloldhatatlan probléma lépett fel. Kérem, " +"jelentse ezt hibaként. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Csomagtároló információ frissítése" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -472,19 +487,19 @@ msgstr "" "található többé.\n" "Ez egy komoly problémát jelez, jelentse hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Megerősítés kérése" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Frissítés folyamatban" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." @@ -505,7 +520,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Kb. %li perc van hátra" @@ -546,19 +561,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "A 'diff' parancs nem található" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Végzetes hiba történt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -574,25 +589,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s csomag el lesz távolítva." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s új csomag kerül telepítésre." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s csomag frissítve lesz." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -600,7 +615,7 @@ msgid "" "You have to download a total of %s. " msgstr "Összes letöltendő adatmennyiség: %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -609,35 +624,35 @@ msgstr "" "A frissítés több órát is igénybe vehet és a későbbiek során nem lehet " "bármikor megszakítani." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "%s eltávolítása" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "%s telepítése" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "%s frissítése" @@ -888,13 +903,17 @@ msgid "The list of changes is not available" msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "A módosítások listájának letöltése meghiúsult. Ellenőrizze az " "internetkapcsolatát." diff --git a/po/id.po b/po/id.po index be93a9f1..70ba74e1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-28 18:46+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -251,11 +251,11 @@ msgstr "" msgid "Reading cache" msgstr "Membaca cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +263,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Tidak menemukan mirror yang valid" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +287,11 @@ msgstr "" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Membuat sumber baku?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +304,11 @@ msgstr "" "Haruskah entri baku untuk '%s' ditambahkan? Jika anda pilih 'No' " "pemutakhiran akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Informasi gudang tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +316,11 @@ msgstr "" "Meng-upgrade informasi gudang berakhir di dalam berkas yang tidak benar. " "Silakan laporkan ini sebagai bug." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Sumber dari pihak ketiga dilumpukan" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -331,11 +331,11 @@ msgstr "" "dapat mengaktifkan kembali setelah upgrade dengan alat 'software-properties' " "atau dengan synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Kesalahan pada waktu pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "Terjadi masalah pada waktu pemutakhiran. Ini biasanya karena masalah " "jaringan, silakan periksa koneksi jaringan anda dan ulangi." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Kapasitas cakram tidak mencukupi" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Sistem anda dapat menjadi tidak dapat " "digunakan. Perbaikan sedang berjalan (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Silakan periksa koneksi internet anda atau " "media instalasi dan coba lagi nanti. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,23 +410,23 @@ msgstr "" "Jika anda tidak mengaktifkan komponen 'universe' paket ini akan diajurkan " "untuk penghapusan dalam langkah selanjutnya. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Lewati Langkah Ini" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Hapus" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,31 +435,46 @@ msgstr "" "bawah untuk informasi lebih lanjut. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Memeriksa manajer paket" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Menyiapkan upgrade" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " +"bug. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Informasi paket tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -473,19 +488,19 @@ msgstr "" "Ini mengindikasikan adanya kesalahan serius, silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Menanyakan konfigurasi" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Meng-upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." @@ -506,7 +521,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Mengunduh berkas %li dari %li pada %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Sekitar %li menit lagi" @@ -546,19 +561,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak dapat ditemukan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Terjadi kesalahan fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -573,25 +588,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -599,7 +614,7 @@ msgid "" "You have to download a total of %s. " msgstr "Anda harus mengunduh sebanyak %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -608,34 +623,34 @@ msgstr "" "Upgrade membutuhkan waktu beberapa jam dan tidak dapat dibatalkan setelah " "itu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Hapus %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Instal %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -884,13 +899,17 @@ msgid "The list of changes is not available" msgstr "Senarai dari perubahan belum tersedia. Silakan coba lagi nanti." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Senarai dari perubahan belum tersedia. Silakan coba lagi nanti." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." diff --git a/po/it.po b/po/it.po index 2ef73f9f..33e5f71c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-24 14:01+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -257,11 +257,11 @@ msgstr "" msgid "Reading cache" msgstr "Lettura della cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -269,11 +269,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Non è stato trovato alcun mirror valido" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +294,11 @@ msgstr "" "Scegliendo di no, l'aggiornamento verrà annullato." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +312,11 @@ msgstr "" "Aggiungere le voci predefinite per «%s»? Selezionando «No», l'aggiornamento " "verrà annullato." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Informazioni sul repository non valide" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +324,11 @@ msgstr "" "L'aggiornamento delle informazioni sul repository ha generato un file non " "valido. Notificare questo evento come bug." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Sorgenti di terze parti disabilitate" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -339,11 +339,11 @@ msgstr "" "list». È possibilie abilitarle di nuovo dopo l'aggiornamento con lo " "strumento «software-properties» o con synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Errore durante l'aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +351,11 @@ msgstr "" "Si è verificato un problema durante l'aggiornamento. Solitamente si tratta " "di problemi di rete, controllare la connessione di rete e riprovare." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Spazio libero su disco insufficiente" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -367,15 +367,15 @@ msgstr "" "usando \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Impossibile installare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -388,11 +388,11 @@ msgstr "" "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" "a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +400,11 @@ msgstr "" "Interruzione immediata dell'aggiornamento. Controllare la connessione a " "internet o il supporto di installazione e riprovare. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -420,23 +420,23 @@ msgstr "" "Se non è abilitato il repository «universe», verrà suggerita la rimozione di " "questi pacchetti al prossimo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Salta questo passo" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Rimuovi" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Errore durante il commit" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -445,31 +445,46 @@ msgstr "" "seguente per maggiori informazioni. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Ripristino stato originale del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Controllo gestore dei pacchetti" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Preparazione dell'aggiornamento" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Si è verificato un problema irrisolvibile durante il calcolo " +"dell'aggiornamento. Notificare questo evento come bug. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Aggiornamento delle informazione sui repository" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -482,19 +497,19 @@ msgstr "" "trovare il pacchetto essenziale «%s».\n" "Ciò indica un errore grave, segnalare questo evento come un bug." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Richiesta di conferma" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." @@ -515,7 +530,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Scaricamento del file %li di %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Circa %li minuti rimanenti" @@ -555,19 +570,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Il comando \"diff\" non è stato trovato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Si è verificato un errore fatale" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -583,28 +598,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pacchetto sta per essere rimosso." msgstr[1] "%s pacchetti stanno per essere rimossi." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s nuovo pacchetto sta per essere installato." msgstr[1] "%s nuovi pacchetti stanno per essere installati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pacchetto sta per essere aggiornato." msgstr[1] "%s pacchetti stanno per essere aggiornati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -612,7 +627,7 @@ msgid "" "You have to download a total of %s. " msgstr "È necessario scaricare un totale di %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -621,35 +636,35 @@ msgstr "" "L'aggiornamento può richiedere diverse ore e non può essere annullato in " "nessun momento successivo." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Chiudere tutte le applicazioni e i documenti aperti per prevenire la perdita " "di dati." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Il sistema è aggiornato!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Rimuovere %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Installare %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Aggiornare %s" @@ -902,14 +917,18 @@ msgstr "" "L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Fallito lo scaricamento dell'elenco dei cambiamenti. Verificare la " "connessione ad Internet." diff --git a/po/ja.po b/po/ja.po index 93bd60c3..9bbb7e5a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-24 07:06+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "キャッシュを読み込み中" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "正しいミラーが見つかりません" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -285,11 +285,11 @@ msgstr "" "キャンセルします。" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -302,11 +302,11 @@ msgstr "" "'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" "キャンセルします。" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "リポジトリ情報が無効です" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -314,11 +314,11 @@ msgstr "" "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" "告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "公式ではないソースが無効になりました" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -329,11 +329,11 @@ msgstr "" "アップグレード後に 'ソフトウェアのプロパティ' ツールか Synaptic を使用してく" "ださい。" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "アップデート中にエラー発生" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +341,11 @@ msgstr "" "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" "ネットワーク接続をチェックし、再びアップデートしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "ディスクの空き領域が足りません" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +357,15 @@ msgstr "" "た一時パッケージを削除してください。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +377,11 @@ msgstr "" "アップグレードを中断しました。システムが使用できない状態になっている可能性が" "あります。ただいま修正を実行中です (dpkg --configure -a)。" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "アップグレードをダウンロードできません" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +389,11 @@ msgstr "" "アップグレードを中断しました。インターネット接続またはインストールメディア" "(CD-ROMなど)をチェックし。再試行してください。 " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -408,23 +408,23 @@ msgstr "" "'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" "提案します。 " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "不要なパッケージを削除しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "このステップをスキップ(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "削除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "コミット中にエラー" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,31 +433,44 @@ msgstr "" "ください。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "システムを元に戻し中" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "パッケージマネージャをチェック中" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "アップグレードの準備中" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "算定中に解決できない問題がおきました。バグとして報告してください。 " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "リポジトリ情報をアップデート" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "無効なパッケージ情報" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -469,19 +482,19 @@ msgstr "" "パッケージ情報のアップデートのあと、重要パッケージ '%s' が見つかりません。\n" "このメッセージは深刻なエラーです。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "確認する" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "アップグレード中" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索する" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" @@ -502,7 +515,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "およそ残り %li 分" @@ -542,19 +555,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "'diff' コマンドが見つかりません" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "重大なエラーが発生しました" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -569,25 +582,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s つのパッケージが削除されます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s·つのパッケージがインストールされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s·つのパッケージがアップグレードされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -595,42 +608,42 @@ msgid "" "You have to download a total of %s. " msgstr "全部で %s つのパッケージをダウンロードする必要があります。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "アップグレードには数時間かかり、今後一切キャンセルはできません。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" "さい。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "削除されるパッケージ: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "インストール %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "アップグレード %s" @@ -877,13 +890,17 @@ msgid "The list of changes is not available" msgstr "変更点がまだ取得できません。あとで試してください。" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "変更点がまだ取得できません。あとで試してください。" #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" "い。" diff --git a/po/ka.po b/po/ka.po index 2d4facdb..79769e44 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:19+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -252,11 +252,11 @@ msgstr "" msgid "Reading cache" msgstr "მიმდინარეობს ქეშის წაკითხვა" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "არავითარი გამოსადეგი სერვერის ანარეკლი" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,12 +281,12 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" msgstr "გენერაცია ნაგულისხმევი?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,11 +295,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "რეპოზიტორიების ინფორმაცია არასწორეა" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -307,12 +307,12 @@ msgstr "" "რეპოზიტორიების განახლების შედეგად დაზიანდა ფაილი. შეატყობინეთ ეს როგორხ " "ხარვეზი." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 #, fuzzy msgid "Third party sources disabled" msgstr "გამორთული" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -320,11 +320,11 @@ msgid "" "synaptic." msgstr "-ში სია გამორთული თქვენ პარამეტრები ან." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "განახლებისას მოხდა შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -332,11 +332,11 @@ msgstr "" "განახლებისას მოხდა შეცდომა. ეს როგროც წესი არის კავშირის პრობლემა, შეამოწმეთ " "თქვენი კავშირი და ცადეთ კიდევ ერთხელ." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "დისკზე არ არის საკმარისი თავისუფალი ადგილი" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,16 +345,16 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 #, fuzzy msgid "Could not install the upgrades" msgstr "არა" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -364,23 +364,23 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "ახლა -ში A a." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 #, fuzzy msgid "Could not download the upgrades" msgstr "არა" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "ახლა ან და " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -390,24 +390,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "არა და ახლა n t ჩართული -თვის -ში ნაბიჯი " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "წავშალო მოძველებული პაკეტები?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "ნაბიჯის გა_მოტოვება" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_წაშლა" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 #, fuzzy msgid "Error during commit" msgstr "შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 #, fuzzy msgid "" "Some problem occured during the clean-up. Please see the below message for " @@ -415,31 +415,46 @@ msgid "" msgstr "-თვის ინფორმაცია " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "ვამოწმებ პროგრამულ მენეჯერს" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "განახლების ჩადგმის მომზადება" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ " +"ხარვეზი. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "რეპოზტორიის ინფორმაციის განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "გაფუჭებული პაკეტის შესახებ ინფორმაცია" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -449,21 +464,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, fuzzy msgid "Asking for confirmation" msgstr "-თვის" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "მიმდინარეობს განახლებების ჩაყენება" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 #, fuzzy msgid "Searching for obsolete software" msgstr "ვეძებ -თვის" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 #, fuzzy msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." @@ -485,7 +500,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -523,21 +538,21 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 #, fuzzy msgid "The 'diff' command was not found" msgstr "არა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 #, fuzzy msgid "A fatal error occured" msgstr "A შეცდომა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -548,25 +563,25 @@ msgstr "a და შემცველობა და -ში ახლა თ #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "A არსებითი -სკენ" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -574,41 +589,41 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "საათი და ნებისმიერი დრო." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr " ამოშლა %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "დაყენება %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "ჩასაყენებელი განახლება %s" @@ -860,15 +875,18 @@ msgstr "" "ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." #. Description diff --git a/po/ko.po b/po/ko.po index d04ccfa3..15d3bdd2 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-28 15:14+0000\n" "Last-Translator: darehanl \n" "Language-Team: Korean \n" @@ -245,11 +245,11 @@ msgstr "" msgid "Reading cache" msgstr "캐시를 읽는 중" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -257,11 +257,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "적합한 미러 서버를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,11 +281,11 @@ msgstr "" "'아니오'를 고르면 업데이트가 취소됩니다." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -298,11 +298,11 @@ msgstr "" "'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 고르면 업데이트가 취소됩" "니다." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "저장소 정보가 올바르지 않습니다" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -310,11 +310,11 @@ msgstr "" "저장소 정보를 업그레이드하는 것이 잘못된 파일로 만들어졌습니다. 버그를 보고하" "여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "써드 파티 소스는 이용할 수 없습니다" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -325,11 +325,11 @@ msgstr "" "properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" "니다." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "업데이트 중 오류" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -337,11 +337,11 @@ msgstr "" "업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" "니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "디스크 여유 공간이 충분하지 않습니다." -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +353,15 @@ msgstr "" "에 사용했던 임시 꾸러미들을 삭제하시기 바랍니다." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -373,11 +373,11 @@ msgstr "" "업그레이드가 중지되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " "(dpkg --configure -a)를 실행하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "업그레이드 파일을 다운로드 할 수 없습니다." -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +385,11 @@ msgstr "" "업그레이드가 중지되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" "하십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -404,23 +404,23 @@ msgstr "" "'Universe' 저장소를 활성화하지 않았다면 다음 단계에서 이 꾸러미들을 삭제할 " "수 있습니다. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "못쓰게 된 꾸러미를 삭제하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "이 단계 건너뛰기(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "삭제(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "커밋 도중 오류 발생" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -429,31 +429,46 @@ msgstr "" "보를 얻으실 수 있습니다. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "시스템을 원상태로 복구하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "꾸러미 관리자 확인 중" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "업그레이드를 준비하는 중" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다. " +"버그를 보고하여 주십시오. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "저장소 정보 업데이트 중" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "잘못된 꾸러미 정보" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -466,19 +481,19 @@ msgstr "" "다.\n" "심각한 오류입니다. 버그를 보고하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "확인을 요청하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "업그레이드 하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "못 쓰게 된 소프트웨어를 검색하는 중" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "시스템 업그레이드가 끝났습니다." @@ -499,7 +514,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "내려받는 중, %li의 %li 파일, 속도 %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "%li 분 정도 남았음" @@ -539,19 +554,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "'diff' 명령어를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "심각한 오류 발생" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -565,25 +580,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "꾸러미 %s 개가 삭제될 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "새로운 꾸러미가 %s 개 설치될 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "꾸러미가 %s 개 업그레이드 될 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -591,40 +606,40 @@ msgid "" "You have to download a total of %s. " msgstr "총 %s개의 꾸러미를 다운로드 합니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "업그레이드는 여러 시간이 걸릴 수 있고, 어떤 때에도 취소될 수 없습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "%s 삭제" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "%s 설치" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "%s 업그레이드" @@ -873,13 +888,17 @@ msgid "The list of changes is not available" msgstr "바뀐 목록을 아직 이용할 수 없습니다. 잠시 후에 다시 해주시기 바랍니다." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "바뀐 목록을 아직 이용할 수 없습니다. 잠시 후에 다시 해주시기 바랍니다." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "바뀐 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." diff --git a/po/ku.po b/po/ku.po index 7a35595a..b5e66826 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Jê bibe" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Tê bilindkirin" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." @@ -444,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -482,19 +493,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -504,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket dê were rakirin." msgstr[1] "%s paket dê werin rakirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket dê were sazkirin" msgstr[1] "%s paket dê werin sazkirin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket dê were bilindkirin." msgstr[1] "%s paket dê werin bilindkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -533,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "Pêwîst e tu bi tevahî %s daxî." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "%s rake" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "%s saz bike" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "%s bilind bike" @@ -796,13 +807,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/lt.po b/po/lt.po index 593ffc55..20e16650 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-28 20:07+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "Nuskaitoma talpykla" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,12 +262,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 #, fuzzy msgid "No valid mirror found" msgstr "Nerasta tinkamo įrašo" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -280,11 +280,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Ar sukurti numatytųjų šaltinių sąrašą?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -293,11 +293,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Saugyklų informacija netinkama" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -305,11 +305,11 @@ msgstr "" "Saugyklos informacijos atnaujinimo rezultatas buvo sugadinta byla. " "Praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Trečiųjų šalių šaltiniai išjungti" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -320,11 +320,11 @@ msgstr "" "Juos galėsite vėl įjungti, kai baigsite atnaujinimą su „programų savybių“ " "įrankiu arba „Synaptic“ paketų tvarkykle." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Klaida atnaujinant" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -332,11 +332,11 @@ msgstr "" "Atnaujinant iškilo problema. Tai greičiausiai kokia nors tinklo problema, " "todėl iš naujo patikrinkite tinklo jungtis ir bandykite dar." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Diske nepakanka laisvos vietos" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +365,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. " "Dabar bus vykdomas atkūrimas (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +377,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo " "laikmeną ir bandykite dar. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -396,23 +396,23 @@ msgstr "" "Jei nesate įjungę „universe“ skyriaus, šie paketai bus siūlomi pašalinimui " "kitame žingsnyje. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Praleisti šį žingsnį" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "P_ašalinti" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,31 +421,46 @@ msgstr "" "pranešime. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Perkraunama sistema" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Tikrinama paketų valdyklė" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Ruošiamas atnaujinimas" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " +"tai kaip klaidą. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Netinkama paketo informacija" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -458,19 +473,19 @@ msgstr "" "paketo „%s“.\n" "Tai labai rimta problema, praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Klausiama patvirtinimo" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Atnaujinama" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." @@ -491,7 +506,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -531,19 +546,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Nerasta komanda „diff“" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Įvyko lemtinga klaida" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -559,7 +574,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -567,7 +582,7 @@ msgstr[0] "Bus pašalintas %s paketas." msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -575,7 +590,7 @@ msgstr[0] "Bus įdiegtas %s naujas paketas." msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -583,7 +598,7 @@ msgstr[0] "Bus atnaujintas %s paketas." msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -591,7 +606,7 @@ msgid "" "You have to download a total of %s. " msgstr "Turite atsisiųsti viso %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -599,35 +614,35 @@ msgid "" msgstr "" "Atnaujinimas gali užtrukti keletą valandų ir vėliau jo negalima atšaukti." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Pašalinti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Įdiegti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Atnaujinti %s" @@ -880,13 +895,17 @@ msgid "The list of changes is not available" msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "Nepavyko atsiųsti pakeitimų sąrašo. Patikrinkite Interneto ryšį." #. Description diff --git a/po/mk.po b/po/mk.po index 6ab5bb52..8fee6e29 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -241,11 +241,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -253,11 +253,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -270,12 +270,12 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" msgstr "Врати ги стандардните клучеви" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,43 +284,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "Грешка при отстранување на клучот" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +329,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,21 +346,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -369,55 +369,70 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "Веќе работи друг менаџер за пакети" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Преземам промени" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " +"како бубачка. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -427,20 +442,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "Надградбата е завршена" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -460,7 +475,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -499,19 +514,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -521,7 +536,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -529,7 +544,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -537,7 +552,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -545,7 +560,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -553,40 +568,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -825,14 +840,17 @@ msgid "The list of changes is not available" msgstr "Достапна е нова верзија на Убунту!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "Достапна е нова верзија на Убунту!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." diff --git a/po/ms.po b/po/ms.po index 99f40fc6..1ce703a3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-30 13:49+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -248,11 +248,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -277,11 +277,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -290,21 +290,21 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Sumber ketiga tidak diaktifkan." -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -316,11 +316,11 @@ msgstr "" "selepas penaikkan taraf menggunakan alatan 'software-properties' ataupun " "'synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Ralat semasa pengemaskinian." -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -329,11 +329,11 @@ msgstr "" "yang berkaitan dengan masaalah rangkaian, sila periksa dan cuba lagi " "sambungan rangkaian anda." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Muatak cakera keras tidak mencukupi." -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgstr "" "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Tidak dapat memasang pakej-pakej penaikkan taraf." -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +365,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sistem anda mungkin tidak stabil. " "Sistem 'recovery' telah dijalankan (dpkg --configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +377,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sila semak sambungan 'internet' atau " "media pemasangan anda dan cuba lagi. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -395,54 +395,68 @@ msgstr "" "Jika anda tidak megaktifkan 'universe', pakej-pakej ini akan dicadangkan " "untuk dikeluarkan di peringkat selanjutnya. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Keluarkan pakej-pakej yang sudah luput?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " +"penaikkan. Sila laporkan ini sebagai ralat pepijat. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -452,19 +466,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -484,7 +498,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -522,19 +536,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -544,28 +558,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" msgstr[1] "Satu pakej yang perlu terpaksa dikeluarkan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -573,39 +587,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -837,13 +851,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/nb.po b/po/nb.po index a6d35c5b..92cbc761 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-29 13:06+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -252,11 +252,11 @@ msgstr "" msgid "Reading cache" msgstr "Leser mellomlager" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +264,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Fant ikke noe gyldig speil" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +288,11 @@ msgstr "" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +306,11 @@ msgstr "" "Skal standard linjer for '%s' legges til? Hvis du velger 'Nei' vil " "oppdateringen avbrytes." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Ugyldig informasjon om arkiv" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,11 +318,11 @@ msgstr "" "Oppgradering av kanalinformasjon resulterte i en ugyldig fil. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Tredjepartskilder er deaktivert" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -333,11 +333,11 @@ msgstr "" "aktivere dem etter oppgraderingen ved hjelp av verktøyet 'Egenskaper for " "programvare' eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +346,11 @@ msgstr "" "problem med nettverkstilkoblingen. Vennligst sjekk nettverkstilkoblingen din " "og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Ikke nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +362,15 @@ msgstr "" "bruke 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Kunne ikke installere oppgraderingene" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -382,11 +382,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon " "ble forsøkt kjørt (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Kunne ikke laste ned alle oppgraderingene." -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +394,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Vennligst sjekk internet-tilkoblingen eller " "installasjonsmediet og prøv på nytt. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -413,23 +413,23 @@ msgstr "" "Hvis du ikke har 'universe' aktivert vil disse pakkene bli foreslått fjernet " "i neste steg. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Ønsker du å fjerne utdaterte pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Hopp over dette punktet" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Feil ved commit" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,31 +438,46 @@ msgstr "" "informasjon. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Forbereder oppgraderingen" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " +"rapporter dette som en feil. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +490,19 @@ msgstr "" "pakken '%s'.\n" "Dette indikerer en alvorlig feil, vennligst rapportér denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Spør om bekreftelse" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Oppgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" @@ -508,7 +523,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Laster ned fil %li av %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Rundt %li minutter gjenstår" @@ -548,19 +563,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' ble ikke funnet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "En uopprettelig feil oppsto" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -574,28 +589,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -603,7 +618,7 @@ msgid "" "You have to download a total of %s. " msgstr "Du må laste ned totalt %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -612,34 +627,34 @@ msgstr "" "Oppgraderingen kan ta flere timer og kan ikke avbrytes på noe senere " "tidspunkt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Oppgradér %s" @@ -892,13 +907,17 @@ msgid "The list of changes is not available" msgstr "Listen over endringer er ikke tilgjengelig ennå. Prøv senere." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Listen over endringer er ikke tilgjengelig ennå. Prøv senere." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." diff --git a/po/ne.po b/po/ne.po index 7f90a344..c48ae315 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:43+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -235,11 +235,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,43 +277,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -322,15 +322,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -362,55 +362,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "परिवर्तनहरु डाउनलोड गर्दै" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -420,20 +433,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "स्तरवृद्धि समाप्त" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -453,7 +466,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -492,19 +505,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -514,28 +527,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -543,40 +556,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -813,14 +826,17 @@ msgid "The list of changes is not available" msgstr "युबन्टुको एउटा नयाँ विमोचन उपलब्ध छ!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "युबन्टुको एउटा नयाँ विमोचन उपलब्ध छ!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" #. Description diff --git a/po/nl.po b/po/nl.po index eddb1098..8d758798 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-24 01:32+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -255,11 +255,11 @@ msgstr "" msgid "Reading cache" msgstr "Tijdelijke opslag inlezen" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Geen geldige mirror-server gevonden" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -292,11 +292,11 @@ msgstr "" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -310,11 +310,11 @@ msgstr "" "Moeten de standaardregels voor '%s' worden toegevoegd? Wanneer u 'Nee' " "kiest, zal de update worden geannuleerd." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "De informatie over de pakketbronnen is ongeldig" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -322,11 +322,11 @@ msgstr "" "Het upgraden van de informatie over de pakketbronnen heeft het bestand " "ongeldig gemaakt. Rapporteer dit als een fout." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Pakketbronnen van derden uitgeschakeld" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -337,11 +337,11 @@ msgstr "" "kunt ze na de upgrade weer inschakelen via het menu Systeem -> Beheer -> " "Software-eigenschappen of met het programma Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Fout tijdens het updaten" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +349,11 @@ msgstr "" "Tijdens het updaten is er iets misgegaan. Dit komt meestal door " "netwerkproblemen. Controleer uw netwerkverbinding en probeer opnieuw." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Niet genoeg vrije schijfruimte" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +365,15 @@ msgstr "" "vorige installaties via 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,11 +386,11 @@ msgstr "" "onbruikbare toestand. Er is een hersteloperatie uitgevoerd (dpkg --configure " "-a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Kon de upgrades niet downloaden" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +398,11 @@ msgstr "" "De upgrade wordt nu afgebroken. Controleer uw internetverbinding of het " "installatiemedium en probeer opnieuw. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -417,23 +417,23 @@ msgstr "" "Indien 'universe' niet geactiveerd is zal bij de volgende stap gevraagd " "worden om deze pakketten te verwijderen. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Overbodige pakketten verwijderen?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Deze stap overslaan" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Verwijderen" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Fout bij het toepassen" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,31 +442,46 @@ msgstr "" "voor meer informatie. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Upgrade voorbereiden" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. " +"Gelieve dit als fout te rapporteren. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -479,19 +494,19 @@ msgstr "" "meer gevonden worden.\n" "Dit is een ernstige fout, die gerapporteerd moet worden." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Vragen om bevestiging" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Bezig met upgraden" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Zoeken naar overbodige software" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." @@ -512,7 +527,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Ongeveer %li minuten resterend" @@ -552,19 +567,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "De opdracht 'diff' is niet gevonden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Er is een ernstige fout ontstaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -580,28 +595,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Er zal %s pakket verwijderd worden." msgstr[1] "Er zullen %s pakketten verwijderd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Er zal %s nieuw pakket geïnstalleerd worden." msgstr[1] "Er zullen %s nieuwe pakketten geïnstalleerd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakket zal een upgrade krijgen" msgstr[1] "%s pakketten zullen een upgrade krijgen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -609,7 +624,7 @@ msgid "" "You have to download a total of %s. " msgstr "U moet in totaal %s downloaden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -618,35 +633,35 @@ msgstr "" "Het upgraden kan enkele uren in beslag nemen en kan tussentijds niet worden " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "%s verwijderen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "%s installeren" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "%s upgraden" @@ -898,15 +913,19 @@ msgstr "" "Probeer het later nog eens." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " "Probeer het later nog eens." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Kon de lijst met wijzigingen niet downloaden. Controleer uw " "internetverbinding." diff --git a/po/no.po b/po/no.po index 79473bf7..7a1956a9 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -237,11 +237,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +266,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "Feil under fjerning av nøkkel" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,55 +364,69 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "En annen pakkehåndterer kjører" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Laster ned endringer" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,21 +436,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, fuzzy msgid "Asking for confirmation" msgstr "Undersøker systemkonfigurasjon" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "Oppgradering fullført" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -456,7 +470,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -495,19 +509,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -517,28 +531,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -546,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, fuzzy, python-format msgid "Remove %s" msgstr "Detaljer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, fuzzy, python-format msgid "Install %s" msgstr "_Installer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Oppgradering fullført" @@ -818,14 +832,17 @@ msgid "The list of changes is not available" msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "Feil under nedlasting av endringer. Sjekk tilkoblingen til internett." #. Description diff --git a/po/oc.po b/po/oc.po index 4e9b78bc..ad9915c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-29 08:11+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -235,11 +235,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -247,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +264,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,42 +277,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Error al moment de metre a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Pas pro d'espaci liure" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +321,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Impossible installar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,21 +338,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Impossible descargar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -361,54 +361,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Suprimir" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -418,19 +429,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Mesa a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." @@ -450,7 +461,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -488,19 +499,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -510,28 +521,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -539,39 +550,39 @@ msgid "" "You have to download a total of %s. " msgstr "Debètz telecargar un total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Suprimir %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Installar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Metre a jorn %s" @@ -803,13 +814,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/pa.po b/po/pa.po index 1882b66a..0803c209 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-04-28 23:31+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -230,11 +230,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -242,11 +242,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -259,11 +259,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -272,42 +272,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,54 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,20 +424,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -446,7 +457,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -484,19 +495,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -506,28 +517,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -535,39 +546,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -804,13 +815,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/pl.po b/po/pl.po index 1f4e801b..ef473e6a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:59+0000\n" "Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" @@ -248,11 +248,11 @@ msgstr "" msgid "Reading cache" msgstr "Odczytywanie bufora podręcznego" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Nie odnaleziono poprawnego serwera lustrzanego" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -284,11 +284,11 @@ msgstr "" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -302,11 +302,11 @@ msgstr "" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Błędne informacje o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -314,11 +314,11 @@ msgstr "" "W wyniku aktualizacji informacji o repozytoriach powstał błędny plik. Proszę " "zgłosić ten błąd." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Źródła stron niezależnych zostały wyłączone" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -329,11 +329,11 @@ msgstr "" "włączyć po aktualizacji używając narzędzia \"Właściwości oprogramowania\" " "lub za pomocą Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Błąd podczas aktualizacji" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +341,11 @@ msgstr "" "Wystąpił problem podczas aktualizacji. Zazwyczaj wynika on z problemów z " "siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Zbyt mało miejsca na dysku" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +357,15 @@ msgstr "" "\"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem." -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -378,11 +378,11 @@ msgstr "" "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" "configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +390,11 @@ msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz " "dysk instalacyjny i spróbować ponownie. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -409,23 +409,23 @@ msgstr "" "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " "zasugerowane ich usunięcie. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Usunąć niepotrzebne pakiety?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Pomiń ten krok" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Usuń" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,31 +434,46 @@ msgstr "" "poniższych wiadomościach. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Przygotowywanie aktualizacji" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " +"zgłosić to jako błąd. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +486,19 @@ msgstr "" "być odnaleziony.\n" "To wskazuje na poważny problem, proszę zgłosić ten błąd." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Pytanie o potwierdzenie" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Aktualizacja w toku" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." @@ -504,7 +519,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Pobieranie pliku %li z %li z prędkością %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Około %li minut pozostało" @@ -544,19 +559,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Polecenie \"diff\" nie zostało odnalezione" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Wystąpił błąd krytyczny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -571,7 +586,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -579,7 +594,7 @@ msgstr[0] "%s pakiet zostanie usunięty." msgstr[1] "%s pakiety zostaną usunięte." msgstr[2] "%s pakietów zostanie usuniętych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -587,7 +602,7 @@ msgstr[0] "%s nowy pakiet zostanie zainstalowany." msgstr[1] "%s nowe pakiety zostaną zainstalowane." msgstr[2] "%s nowy pakietów zostanie zainstalowane." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -595,7 +610,7 @@ msgstr[0] "%s pakiet zostanie zaktualizowany." msgstr[1] "%s pakiety zostaną zaktualizowane." msgstr[2] "%s pakietów zostanie zaktualizowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -603,7 +618,7 @@ msgid "" "You have to download a total of %s. " msgstr "Konieczne pobranie ogółem %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -611,35 +626,35 @@ msgid "" msgstr "" "Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Usuń %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Instaluj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Aktualizuj %s" @@ -890,13 +905,17 @@ msgid "The list of changes is not available" msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Nie udało się pobrać informacji o zmianach. Proszę sprawdzić połączenie z " "Internetem." diff --git a/po/pt.po b/po/pt.po index 3d9defe6..73f5368f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-24 10:17+0000\n" "Last-Translator: Joao Carvalhinho \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -250,11 +250,11 @@ msgstr "" msgid "Reading cache" msgstr "A ler a cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrada" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +287,11 @@ msgstr "" "Se escolher \"não\" a actualização irá ser cancelada." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -305,11 +305,11 @@ msgstr "" "Deverão ser adicionadas entradas para '%s'? Se seleccionar 'Não' a " "actualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,11 +317,11 @@ msgstr "" "A actualização da informação de repositório resultou num ficheiro inválido. " "Por favor reporte este erro." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Fontes de terceiros desactivadas" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -332,11 +332,11 @@ msgstr "" "reactivá-las depois da actualização com a ferramenta 'propriedades-software' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Erro durante a actualização" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +345,11 @@ msgstr "" "tipo de problema na rede, por favor verifique a sua ligação à rede e volte a " "tentar." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Não existe espaço livre em disco suficiente" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -361,15 +361,15 @@ msgstr "" "usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Impossível de instalar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -381,11 +381,11 @@ msgstr "" "A actualização abortará agora. O seu sistema poderá estar num estado " "inutilizável. Foi efectuada uma recuperação (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Impossível de descarregar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +393,11 @@ msgstr "" "A actualização abortará agora. Por favor verifique a sua ligação à internet " "ou media de instalação e volte a tentar. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -412,23 +412,23 @@ msgstr "" "Se não tem o repositório 'universe' activo será sugerida a remoção destes " "pacotes no próximo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Saltar Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Erro ao submeter" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -437,32 +437,47 @@ msgstr "" "abaixo para mais informação. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 #, fuzzy msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "A preparar actualização" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Um problema irresolúvel ocorreu ao calcular a actualização. Por favor " +"reporte este erro. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "A Actualizar informação de repositórios" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Informação de pacotes inválida" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +490,19 @@ msgstr "" "pacote essencial '%s'.\n" "Isto indica um erro sério, por favor reporte este problema." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "A pedir confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "A actualizar" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." @@ -508,7 +523,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "A descarregar ficheiro %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Cerca de %li minutos restantes" @@ -548,19 +563,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -575,28 +590,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pacote será removido." msgstr[1] "%s pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s novo pacote será instalado." msgstr[1] "%s novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pacote será actualizado." msgstr[1] "%s pacotes serão actualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -604,7 +619,7 @@ msgid "" "You have to download a total of %s. " msgstr "Tem de efectuar o download de um total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -613,35 +628,35 @@ msgstr "" "A actualização poderá demorar várias horas e não poderá ser cancelada a " "qualquer instante posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -891,14 +906,18 @@ msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Falha a descarregar a lista de alterações. Por favor verifique a sua ligação " "à internet." diff --git a/po/pt_BR.po b/po/pt_BR.po index 6e938da5..91341f94 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-26 22:31+0000\n" "Last-Translator: KurtKraut \n" "Language-Team: Ubuntu-BR \n" @@ -255,11 +255,11 @@ msgstr "" msgid "Reading cache" msgstr "Lendo cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrado" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +291,11 @@ msgstr "" "Se você selecionar 'não' a atualização será cancelada." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar sources padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,11 +309,11 @@ msgstr "" "Entradas padrões para '%s' devem ser adicionadas? Se você escolher 'Não' a " "atualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -321,11 +321,11 @@ msgstr "" "Atualizando a informações de repositórios resultou em um arquivo inválido. " "Por favor reporte isso como um erro." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Fontes de terceiros desabilitadas" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -336,11 +336,11 @@ msgstr "" "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " "programa' ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Erro durante a atualização" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +349,11 @@ msgstr "" "problemas de rede, por favor verifique a sua conexão de rede e tente " "novamente." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Não há espaço suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +365,15 @@ msgstr "" "instalações anteriores usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -385,11 +385,11 @@ msgstr "" "A atualização será abortada agora. Seu sistema pode estar em um estado " "instável. Uma recuperação é executada (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Não foi possível obter as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -397,11 +397,11 @@ msgstr "" "A atualização será abortada agora. Por favor verifique sua conexão à " "Internet ou mídia de instalação e tente de novo. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -416,23 +416,23 @@ msgstr "" "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " "sugeridos à remoção no próximo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Pular Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -441,32 +441,47 @@ msgstr "" "abaixo para maiores informações. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Reiniciando o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Verificando o Gerenciador de Pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Preparando a Atualização" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Um problema sem resolução ocorreu enquanto calculando a atualização. Por " +"favor reporte isto como um erro. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Atualizando informação do repositório" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 #, fuzzy msgid "Invalid package information" msgstr "Informação do pacote inválida" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -479,19 +494,19 @@ msgstr "" "não pôde mais ser encontrado.\n" "Isto indica um sério erro, por favor reporte isso como um erro." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Pedindi por confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Atualizando" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "A Atualização do Sistema está completa." @@ -512,7 +527,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Obtendo arquivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Aproximadamente %li minutos restando" @@ -552,19 +567,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -579,28 +594,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pacote será removido." msgstr[1] "%s pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s novo pacote será instalado." msgstr[1] "%s novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pacote será atualizado." msgstr[1] "%s pacotes serão atualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -608,7 +623,7 @@ msgid "" "You have to download a total of %s. " msgstr "Você precisa obter um total de %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -616,33 +631,33 @@ msgid "" msgstr "" "A atualização pode levar diversas horas e não poderá ser cancelada depois." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Atualizar %s" @@ -895,15 +910,19 @@ msgstr "" "mais tarde." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "A lista de alterações não está disponível ainda. Por favor, tente novamente " "mais tarde." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Não foi possível baixar a lista de mudanças. Por favor, verifique sua " "conexão com a internet." diff --git a/po/ro.po b/po/ro.po index 1cf0af50..306fe47f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-24 17:39+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -253,11 +253,11 @@ msgstr "" msgid "Reading cache" msgstr "Citire cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -265,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -282,11 +282,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,42 +295,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Eroare în timpul actualizării" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Spaţiu liber insuficient" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -339,15 +339,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Nu s-au putut instalat upgrade-urile" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -356,21 +356,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Nu pot descărca actualizările" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -379,55 +379,67 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "Şter_ge" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 #, fuzzy msgid "Restoring original system state" msgstr "Se reface starea iniţială a sistemului" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Se pregăteşte actualizarea" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -437,19 +449,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Se actualizează" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" @@ -469,7 +481,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -507,19 +519,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -529,28 +541,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -558,39 +570,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -827,14 +839,17 @@ msgid "The list of changes is not available" msgstr "Nu există nici un pachet de actualizat." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "Nu există nici un pachet de actualizat." #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." diff --git a/po/ru.po b/po/ru.po index 433c6f3c..6f5cf049 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-25 19:23+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -251,11 +251,11 @@ msgstr "" msgid "Reading cache" msgstr "Чтение кэша" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +263,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Не найдено действующее зеркало" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +287,11 @@ msgstr "" "Ответ 'Нет' отменит обновление." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +304,11 @@ msgstr "" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Информация о репозитории неверна" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +316,11 @@ msgstr "" "В результате обновления информации о репозиториях образовался неверный файл. " "Пожалуйста отправьте отчет об ошибке." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Источники третьих сторон отключены" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -331,11 +331,11 @@ msgstr "" "обновления вы можете снова включить их с помощью утилиты 'software-" "properties' или synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Ошибка при обновлении" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "При обновлении возникла проблема. Обычно это бывает вызвано проблемами в " "сети, проверьте сетевые подключения и повторите попытку." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Недостаточно свободного места на диске" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "предыдущих установок с помощью команды 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Невозможно установить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Обновление прервано. Система, возможно, находится в неработоспособном " "состоянии. Запущено восстановление системы (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Невозможно загрузить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Обновление прервано. Проверьте соединение с Интернет или установочный диск и " "попробуйте снова. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,23 +410,23 @@ msgstr "" "Если у вас не подключен репозиторий 'universe', на следующем шаге вам " "предложат удалить эти пакеты. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Пропустить этот шаг" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Удалить" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Ошибка при фиксировании" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,31 +435,46 @@ msgstr "" "ниже. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Подготовка обновления" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"При подготовке к обновлению системы возникла неразрешимая проблема. " +"Пожалуйста, отправьте отчет об ошибке. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Обновление информации о репозитории" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Неверная информация о пакете" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -472,19 +487,19 @@ msgstr "" "найден.\n" "Это говорит о серьезной проблеме, пожалуйста отправьте отчет об ошибке." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Запрос подтверждения" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Обновление" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Обновление системы завершено." @@ -505,7 +520,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Загрузка файла %li из %li со скоростью %s/с" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Осталось приблизительно %li минут" @@ -545,19 +560,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Не найдена команда 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Произошла неисправимая ошибка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -571,7 +586,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -579,7 +594,7 @@ msgstr[0] "%s пакет будет удален." msgstr[1] "%s пакета будут удалены." msgstr[2] "%s пакетов будут удалены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -587,7 +602,7 @@ msgstr[0] "%s новый пакет будет установлен." msgstr[1] "%s новых пакета будут установлены." msgstr[2] "%s новых пакетов будут установлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -595,7 +610,7 @@ msgstr[0] "%s пакет будет обновлен." msgstr[1] "%s пакета будут обновлены." msgstr[2] "%s пакетов будут обновлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -603,7 +618,7 @@ msgid "" "You have to download a total of %s. " msgstr "Всего требуется загрузить %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -612,34 +627,34 @@ msgstr "" "Обновление может занять несколько часов и не может быть прервано в любой " "момент." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Удалить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Установить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Обновить %s" @@ -888,14 +903,18 @@ msgstr "" "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Не удалось загрузить список изменений. Пожалуйста, проверьте соединение с " "интернет." diff --git a/po/rw.po b/po/rw.po index 6111ed83..f99464e5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:44+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -243,11 +243,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -255,11 +255,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -272,11 +272,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -285,43 +285,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "i Urufunguzo" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -370,55 +370,67 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "Muyobozi ni" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -428,20 +440,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "Byarangiye" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -461,7 +473,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -500,19 +512,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -522,25 +534,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -548,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -820,14 +832,17 @@ msgid "The list of changes is not available" msgstr "ni a Gishya Bya Bihari" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "ni a Gishya Bya Bihari" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" diff --git a/po/sk.po b/po/sk.po index a046cb04..ae65ae2c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-24 17:32+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -248,11 +248,11 @@ msgstr "" msgid "Reading cache" msgstr "Čítam vyrovnávaciu pamäť cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Nebol nájdený vhodný server" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -284,11 +284,11 @@ msgstr "" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -302,11 +302,11 @@ msgstr "" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Neplatná informácia o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -314,11 +314,11 @@ msgstr "" "Aktualizácia informácií o zdrojoch softvéru skončila neplatným súborom. " "Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Zdroje tretích strán sú zakázané" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -329,11 +329,11 @@ msgstr "" "Môžete ich povoliť po upgrade pomocou nástroja 'vlastnosti-softwaru' alebo " "pomocou synapticu." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Chyba počas aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +341,11 @@ msgstr "" "Počas aktualizácie sa objavil problém, ktorý je zvyčajne spôsobený chybou " "sieťového pripojenia, preto skontrolujte vaše pripojenie a skúste znova." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Nedostatok voľného miesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +357,15 @@ msgstr "" "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +377,11 @@ msgstr "" "Aktualizácia teraz skončí. Váš systém môže byť v nepoužiteľnom stave, preto " "bol spustený príkaz na zotavenie sa z tohto stavu (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť požadované balíky" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +389,11 @@ msgstr "" "Aktualizácia bola neočakávane prerušená. Skontrolujte svoje internetové " "pripojenie alebo inštalačné médiá a skúste znova. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -408,23 +408,23 @@ msgstr "" "Pokiaľ nemáte zapnutý komunitou spravovaný zdroj softvéru 'universe', budú " "tieto balíky v ďalšom kroku navrhnuté na odstránenie. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Preskočiť tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Odstrániť" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,31 +433,46 @@ msgstr "" "uvedené správy. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Kontrola správcu balíkov" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Prebieha príprava aktualizácie" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " +"ako chybu. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Aktualizácia informácií o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -470,19 +485,19 @@ msgstr "" "s'.\n" "To znamená závažný problém. Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Požaduje sa potvrdenie" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Prebieha aktualizácia" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." @@ -503,7 +518,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Zostáva %li minút" @@ -543,19 +558,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Príkaz 'diff' nebol nájdený." -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Nastala závažná chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -571,7 +586,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -579,7 +594,7 @@ msgstr[0] "Bude odstránený %s balík." msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -587,7 +602,7 @@ msgstr[0] "Bude nainštalovaný %s nový balík." msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -595,7 +610,7 @@ msgstr[0] "Bude aktualizovaný %s balík." msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -603,41 +618,41 @@ msgid "" "You have to download a total of %s. " msgstr "Musíte stiahnuť celkom %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Odstrániť %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Inštalovať %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Aktualizovať %s" @@ -887,13 +902,17 @@ msgid "The list of changes is not available" msgstr "Zoznam zmien ešte nie je k dispozícii. Skúste neskôr." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Zoznam zmien ešte nie je k dispozícii. Skúste neskôr." #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." diff --git a/po/sr.po b/po/sr.po index b1957968..e063ffb7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-27 12:27+0000\n" "Last-Translator: Dejan Milosavljevic \n" "Language-Team: Serbian \n" @@ -229,11 +229,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,54 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -444,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -482,19 +493,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -504,7 +515,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -512,7 +523,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -520,7 +531,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -528,7 +539,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -536,39 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -799,13 +810,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/sv.po b/po/sv.po index 6537d617..41ec7a4d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:18+0000\n" "Last-Translator: Robin Sonefors \n" "Language-Team: Swedish \n" @@ -255,11 +255,11 @@ msgstr "" msgid "Reading cache" msgstr "Läser cache" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Hittade ingen giltig serverspegel" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +291,11 @@ msgstr "" "Om du väljer \"nej\" kommer uppdateringen avbrytas." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Lägg till standardförråd?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +308,11 @@ msgstr "" "Ska standardposter för \"%s\" läggas till? Om du väljer \"Nej\" kommer " "uppdateringen avbrytas." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Information om förråd ogiltig" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,11 +320,11 @@ msgstr "" "Uppdatering av förrådsinformationen orsakade en ogiltig fil. Var vänlig " "rapportera detta som en bugg." -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Tredjepartskällor inaktiverade" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -335,11 +335,11 @@ msgstr "" "aktivera dem efter uppgraderingen med verktyget \"software-properties\" " "eller med synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Fel vid uppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -348,11 +348,11 @@ msgstr "" "av nätverksproblem, var god kontrollera din nätverksanslutning och försök " "igen." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Inte tillräckligt med ledigt diskutrymme" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +364,15 @@ msgstr "" "använda 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppdateringen?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -384,11 +384,11 @@ msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " "En återställning kördes (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Det gick inte ladda ner uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +396,11 @@ msgstr "" "Uppdateringen avbryts nu. Var god kontrollera din internetanslutning eller " "ditt installationsmedia och försök igen. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -413,23 +413,23 @@ msgstr "" "gemenskapsunderhållna ('universe').Om du inte har 'universe' aktiverat " "kommer dessa paket föreslås för borttagning i nästa steg. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_Hoppa över det här steget" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Ta bort" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "Fel inträffade vid utförandet" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,31 +438,46 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "Återställer systemstatus" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Förbereder uppgraderingen" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "" +"Ett problem som inte gick att lösa uppstod när uppdateringen beräknades. Var " +"vänlig rapportera detta som en bugg. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Ogiltig paketinformation" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +490,19 @@ msgstr "" "nödvändiga paketet \"%s\" längre.\n" "Det här tyder på ett alvarligt fel, var god och rapportera detto som en bugg." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Ber om bekräftelse" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Uppgraderar" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Söker efter föråldrad mjukvara" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." @@ -508,7 +523,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Hämtar hem fil %li av %li i %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "Omkring %li minuter återstår" @@ -548,19 +563,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "Kommandot \"diff\" hittades inte" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Ett kritiskt fel uppstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -575,28 +590,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket kommer att tas bort." msgstr[1] "%s paket kommer att tas bort." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s nytt paket kommer att installeras." msgstr[1] "%s nya paket kommer att installeras." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket kommer att uppgraderas." msgstr[1] "%s paket kommer att uppgraderas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -604,7 +619,7 @@ msgid "" "You have to download a total of %s. " msgstr "Du behöver ladda ner totalt %s." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -612,17 +627,17 @@ msgid "" msgstr "" "Uppdateringen kan ta flera timmar och kan inte avbrytas någon gång senare." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att undvika dataförlust." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 #, fuzzy msgid "" "There are no upgrades available for your system. The upgrade will now be " @@ -631,17 +646,17 @@ msgstr "" "Det finns %s uppdateringar tillgängliga för ditt system, som kräver " "att %s data hämtas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "Ta bort %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "Installera %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "Uppgradera %s" @@ -895,13 +910,17 @@ msgid "The list of changes is not available" msgstr "Listan med ändringar är inte tillgänglig än. Försök igen senare" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "Listan med ändringar är inte tillgänglig än. Försök igen senare" #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Misslyckades med att hämta listan med ändringar. Kontrollera din " "internetanslutning." diff --git a/po/th.po b/po/th.po index f90a2d0b..4362b371 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-24 16:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -242,11 +242,11 @@ msgstr "" msgid "Reading cache" msgstr "กำลังอ่านจากที่เก็บชั่วคราว" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -254,11 +254,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "ไม่เจอเซิรฟ์เวอร์เสริม(mirror)" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -277,11 +277,11 @@ msgstr "" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "สร้าง default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -293,21 +293,21 @@ msgstr "" "\n" "ควรเพิ่มรายการสำหรับ '%s' หรือไม่?ถ้าคุณเลือก 'No' การปรับปรุงจะถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บข้อมูลใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "แหล่งอื่นๆใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -318,11 +318,11 @@ msgstr "" "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรม synaptic" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "เกิดข้อผิดพลาดขณะปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -330,11 +330,11 @@ msgstr "" "มีปัญหาเกิดขึ้นขณะทำการปรับปรุง โดยปกติแล้วจะเป็นปัญหาด้านเครือข่าย " "กรุณาตรวจสอบการสื่อสารในเครือข่ายของคุณแล้วลองใหม่อีกที" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "ไม่มีพื้นที่ว่างในดิสก์เพียงพอ" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgstr "" "เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +365,11 @@ msgstr "" "การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" "configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +377,11 @@ msgstr "" "การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " "mediaและลองอีกครั้ง " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -395,55 +395,68 @@ msgstr "" "\\n\n" "ถ้าคุณไม่ได้เลือกใช้แหล่งข้อมูล 'universe' แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "_ข้ามขั้นตอนนี้" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "เ_อาออก" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 #, fuzzy msgid "Restoring original system state" msgstr "เริ่มระบบใหม่อีกครั้ง" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "กำลังเตรียมปรับปรุงรุ่น" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -455,19 +468,19 @@ msgstr "" "หลังจากการปรับปรุงข้อมูลของแพจเกจ แพจเกจที่จำเป็น '%s'ได้หายไป\n" "นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานว่าเป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "_ถามการยืนยันจากคุณก่อน" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "กำลังปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" @@ -488,7 +501,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li ที่ %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "เหลือประมาณ %li นาที" @@ -528,19 +541,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "ไม่เจอคำสั่ง 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "เกิดข้อผิดพลาดอย่างร้ายแรง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -554,25 +567,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s แพกเกจจะถูกลบออก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s แพกเกจใหม่จะถูกติดตั้ง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s แพกเกจจะถูกปรับปรุง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -580,40 +593,40 @@ msgid "" "You have to download a total of %s. " msgstr "คุณจะต้องดาวน์โหลดทั้งหมด %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "การปรับปรุงอาจจะใช้เวลานานหลายชั่วโมงและไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "ลบออก %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "ติดตั้ง %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "ปรับปรุงรุ่น %s" @@ -852,13 +865,17 @@ msgid "The list of changes is not available" msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" diff --git a/po/tr.po b/po/tr.po index 24f41801..e63176a2 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Özgur KIRCALI \n" "Language-Team: Turkish \n" @@ -239,11 +239,11 @@ msgstr "" msgid "Reading cache" msgstr "Önbellek okunuyor" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -251,11 +251,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "Geçerli yansı bulunamadı" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -268,11 +268,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -285,32 +285,32 @@ msgstr "" "'%s' için varsayılan girişler eklensin mi? Eğer 'Hayır'ı seçerseniz, " "güncelleştirme iptal edilecektir." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Üçüncü parti kaynaklar devredışı bırakıldı" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Güncelleştirme sırasında hata" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -318,11 +318,11 @@ msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı kontrol edin ve yeniden deneyin." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -331,15 +331,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -348,11 +348,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -360,11 +360,11 @@ msgstr "" "Yükseltme şimdi iptal edilecek. Lütfen internet bağlantınızı veya kurulum " "ortamınızı kontrol edin ve yeniden deneyin. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -373,54 +373,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "Bu Adımı _Atla" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "_Kaldır" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,19 +441,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "Yükseltiliyor" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." @@ -463,7 +474,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -501,19 +512,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "'diff' komutu bulunamadı" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -523,25 +534,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -549,39 +560,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "%s'i kur" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "%s'i yükselt" @@ -815,13 +826,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/uk.po b/po/uk.po index 948bd485..c49963d0 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Serhey Kusyumoff \n" "Language-Team: Ukrainian \n" @@ -238,11 +238,11 @@ msgstr "" msgid "Reading cache" msgstr "Зчитування кешу" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -250,12 +250,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 #, fuzzy msgid "No valid mirror found" msgstr "Не знайдено" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -268,11 +268,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -281,43 +281,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Помилка в даних про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "Помилка підчас поновлення" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Недостатньо місця на диску" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -326,15 +326,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати апгрейд системи?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "Неможливо провести апргрейд системи" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -347,11 +347,11 @@ msgstr "" "Виконайте команду 'sudo apt-get install -f', або скористайдесь програмою " "Synaptic для налаштування системи." -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "Неможливо завантажити пакунки для апргрейду системи" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -359,11 +359,11 @@ msgstr "" "Апргрейд системи щойно перервано. Будь ласка, перевірте зєднання з " "інтернетом чи носії та спробуйте знов. " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -372,24 +372,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 #, fuzzy msgid "Remove obsolete packages?" msgstr "Видалити непотрібні пакунки?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -398,32 +398,45 @@ msgstr "" "нижче. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 #, fuzzy msgid "Restoring original system state" msgstr "Перезавантаження системи" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Підготовка до апгрейду системи" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "Отримання інформації про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -433,20 +446,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "Запит підтвердження" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "Оновлення завершено" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "Пошук програм, що не використовуються" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "Апргрейд системи завершено." @@ -467,7 +480,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Завантажується файл %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -506,19 +519,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "Виникла невиправна помилка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -531,7 +544,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -539,7 +552,7 @@ msgstr[0] "%s пакунків буде видалено." msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -547,7 +560,7 @@ msgstr[0] "%s пакунків буде встановлено." msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -555,7 +568,7 @@ msgstr[0] "буде проведено апргрейд %s пакунків." msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -563,7 +576,7 @@ msgid "" "You have to download a total of %s. " msgstr "Потрібно завантажити всього %s пакунків." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -572,34 +585,34 @@ msgstr "" "Апрейд може продовжуватись декілька годин, і не може бути перервано протягом " "всього часу." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, fuzzy, python-format msgid "Remove %s" msgstr "Видалити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, fuzzy, python-format msgid "Install %s" msgstr "Встановити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Апргрейд %s" @@ -846,14 +859,17 @@ msgid "The list of changes is not available" msgstr "Доступний новий випуск Ubuntu!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "Доступний новий випуск Ubuntu!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет." diff --git a/po/update-manager.pot b/po/update-manager.pot index 345bc877..cab1f2e7 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -228,11 +228,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,54 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -443,7 +454,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -481,19 +492,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -503,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -532,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -795,13 +806,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/ur.po b/po/ur.po index c3bfe406..1f7e0712 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -229,11 +229,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,54 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -444,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -482,19 +493,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -504,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -533,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -796,13 +807,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/urd.po b/po/urd.po index 0785bdeb..7e1aa49d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -229,11 +229,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,54 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -444,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -482,19 +493,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -504,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -533,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -796,13 +807,15 @@ msgid "The list of changes is not available" msgstr "" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/vi.po b/po/vi.po index 86dc3aea..76827897 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -232,11 +232,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,43 +274,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -319,15 +319,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -336,21 +336,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -359,55 +359,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "Một bộ quản lý gói khác đang chạy" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "Đang tải các thay đổi" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,20 +430,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "Nâng cấp xong" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -450,7 +463,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -489,19 +502,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -511,25 +524,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -537,40 +550,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -807,14 +820,17 @@ msgid "The list of changes is not available" msgstr "Có một bản phát hành Ubuntu mới công bố." #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "Có một bản phát hành Ubuntu mới công bố." #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." diff --git a/po/xh.po b/po/xh.po index 4afa8fb2..f49116ef 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-04-20 19:15+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -229,11 +229,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,54 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -412,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -444,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -482,19 +493,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -504,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -533,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -797,13 +808,16 @@ msgid "The list of changes is not available" msgstr "Kukho i-%i yohlaziyo ekhoyo" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "Kukho i-%i yohlaziyo ekhoyo" #: ../UpdateManager/UpdateManager.py:215 msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "" #. Description diff --git a/po/zh_CN.po b/po/zh_CN.po index 00acfbf0..a8f7a3f5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-30 14:16+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -247,11 +247,11 @@ msgstr "" msgid "Reading cache" msgstr "正在读取缓存" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -259,11 +259,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "未找到可用的镜像" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -280,11 +280,11 @@ msgstr "" "如果选'no'更新将被取消." #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "生成默认的源?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -296,21 +296,21 @@ msgstr "" "\n" "添加用于'%s'的缺省条目?如果选择'No',升级将被取消." -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "源的信息无效" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升级源的信息时产生一个无效文件。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "第三方源被禁用" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -320,21 +320,21 @@ msgstr "" "源列表中一些第三方源被禁用.你可以在升级后用\"软件属性\"工具或新立得包管理器来" "重新启用它们." -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "升级时出错" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "升级时候出错。这通常是一些网络问题,请检查你的网络连接后再试。" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "磁盘空间不足" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgstr "" "get clean'命令来删除之前安装的临时软件包。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "无法安装升级" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,21 +365,21 @@ msgstr "" "升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" "a)。" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "无法下载升级包" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -392,54 +392,67 @@ msgstr "" "\n" "如果你没有启用'社区维护'源,下一步这些包将被建议移除. " -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "跳过这个步骤(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "删除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "确认时出错" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "正在检查软件包管理器" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "正在准备升级" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。 " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "更新源的信息" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "无效的包信息" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -451,19 +464,19 @@ msgstr "" "包信息被更新后核心包'%s'没有找到.\n" "这标志着一个严重的错误,请报告bug." -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "请求确认" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "正在更新" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "寻找陈旧的软件包" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "系统更新完毕" @@ -484,7 +497,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "正在下载文件%li/%li速度是%s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, fuzzy, python-format msgid "About %s remaining" msgstr "大约还要%li分钟" @@ -524,19 +537,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "外部命令“diff”没有找到" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "出现致命错误" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -550,25 +563,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s软件包将被删除。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s新的软件包将被安装。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s软件包将被升级" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -576,40 +589,40 @@ msgid "" "You have to download a total of %s. " msgstr "你下载了总体的%s。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "升级会持续几个小时且不能在稍后的任何时候被终止" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "您的系统已为最新" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "删除%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "安装%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "升级%s" @@ -847,13 +860,17 @@ msgid "The list of changes is not available" msgstr "变动列表尚不可用。请稍后再试。" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "变动列表尚不可用。请稍后再试。" #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "无法下载更新列表。请检查您的网络连接。" #. Description diff --git a/po/zh_HK.po b/po/zh_HK.po index 2f54ef54..cd767a16 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-23 19:45+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -232,11 +232,11 @@ msgstr "" msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +261,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,43 +274,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 #, fuzzy msgid "Error during update" msgstr "移除密碼匙時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -319,15 +319,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -336,21 +336,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -359,55 +359,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 #, fuzzy msgid "Checking package manager" msgstr "另一個套件管理員正在執行中" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "正在下載更改紀錄" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "你選定的密碼匙無法移除,請匯報問題。 " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,20 +430,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Upgrading" msgstr "完成升級" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "" @@ -450,7 +463,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -489,19 +502,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 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 aborts " @@ -511,28 +524,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, python-format msgid "" "\n" @@ -540,40 +553,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 #, fuzzy msgid "Your system is up-to-date" msgstr "系統已經在最新狀態!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "" @@ -810,14 +823,17 @@ msgid "The list of changes is not available" msgstr "Ubuntu 已推出新版本!" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." -msgstr "" +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "Ubuntu 已推出新版本!" #: ../UpdateManager/UpdateManager.py:215 #, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。" #. Description diff --git a/po/zh_TW.po b/po/zh_TW.po index 4a83550e..fdfa2fc9 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 14:45+0200\n" +"POT-Creation-Date: 2006-10-02 18:41+0200\n" "PO-Revision-Date: 2006-05-31 12:00+0000\n" "Last-Translator: PCMan \n" "Language-Team: Chinese (Taiwan) \n" @@ -240,11 +240,11 @@ msgstr "" msgid "Reading cache" msgstr "正在讀取快取" -#: ../DistUpgrade/DistUpgradeControler.py:151 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:152 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,11 +252,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:244 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" msgstr "找不到有效的 mirror" -#: ../DistUpgrade/DistUpgradeControler.py:245 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -275,11 +275,11 @@ msgstr "" "如果選擇「否」,則更新會被取消。" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:262 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "產生預設的來源?" -#: ../DistUpgrade/DistUpgradeControler.py:263 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -291,21 +291,21 @@ msgstr "" "\n" "需要加入預設的 '%s' 項目嗎?如果你選擇「否」,更新將會被取消。" -#: ../DistUpgrade/DistUpgradeControler.py:297 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "無效的套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:298 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升級套件庫時導致無效的檔案。請匯報問題。" -#: ../DistUpgrade/DistUpgradeControler.py:304 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "停用第三方來源" -#: ../DistUpgrade/DistUpgradeControler.py:305 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -315,21 +315,21 @@ msgstr "" "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" "properties' 工具或 synaptic升級後,你可以重新啟用它。" -#: ../DistUpgrade/DistUpgradeControler.py:354 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:355 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網路問題,試檢查網路連線及再試。" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -340,15 +340,15 @@ msgstr "" "clean'來移除先前安裝套件時的暫存檔。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:424 +#: ../DistUpgrade/DistUpgradeControler.py:428 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:444 +#: ../DistUpgrade/DistUpgradeControler.py:448 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:449 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -360,21 +360,21 @@ msgstr "" "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" "configure -a)。" -#: ../DistUpgrade/DistUpgradeControler.py:463 +#: ../DistUpgrade/DistUpgradeControler.py:467 msgid "Could not download the upgrades" msgstr "無法下載升級套件" -#: ../DistUpgrade/DistUpgradeControler.py:464 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常及再試 " -#: ../DistUpgrade/DistUpgradeControler.py:500 +#: ../DistUpgrade/DistUpgradeControler.py:504 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:501 +#: ../DistUpgrade/DistUpgradeControler.py:505 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -383,54 +383,67 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:536 +#: ../DistUpgrade/DistUpgradeControler.py:540 msgid "Remove obsolete packages?" msgstr "移除不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:537 +#: ../DistUpgrade/DistUpgradeControler.py:541 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:547 +#: ../DistUpgrade/DistUpgradeControler.py:551 msgid "Error during commit" msgstr "提交時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:548 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "Restoring original system state" msgstr "恢復原先的系統狀態" -#: ../DistUpgrade/DistUpgradeControler.py:616 +#: ../DistUpgrade/DistUpgradeControler.py:620 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:651 -#: ../DistUpgrade/DistUpgradeControler.py:686 +#: ../DistUpgrade/DistUpgradeControler.py:655 +#: ../DistUpgrade/DistUpgradeControler.py:697 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:659 +#, fuzzy +msgid "Preparing the upgrade failed" +msgstr "正準備升級" + +#: ../DistUpgrade/DistUpgradeControler.py:660 +#, fuzzy +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/dist-" +"upgrade/ in the bugreport." +msgstr "計算升級時發生無法解決的問題,請匯報問題。 " + +#: ../DistUpgrade/DistUpgradeControler.py:683 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:708 msgid "Invalid package information" msgstr "無效的套件資訊" -#: ../DistUpgrade/DistUpgradeControler.py:698 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -440,19 +453,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:710 +#: ../DistUpgrade/DistUpgradeControler.py:721 msgid "Asking for confirmation" msgstr "詢問以確認" -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:732 msgid "Searching for obsolete software" msgstr "尋搜不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "System upgrade is complete." msgstr "系統升級完成。" @@ -473,7 +486,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "正在下載檔案 %li/%li,速度在 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:248 #, python-format msgid "About %s remaining" msgstr "" @@ -513,19 +526,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will loose all customizations, that have been made by yourself or by a " -"script, if you replace the file by its latest version." +"You will lose any local changes to this file if you replace this file with " +"the latest version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:215 msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:354 msgid "A fatal error occured" msgstr "發生嚴重錯誤" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -539,28 +552,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:486 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s 個套件將會移除。" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:491 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s 個新套件將會安裝。" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:497 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s 個套件將會升級。" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:502 #, fuzzy, python-format msgid "" "\n" @@ -568,40 +581,40 @@ msgid "" "You have to download a total of %s. " msgstr "您總共需要下載 %s。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:508 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "升級可能需要數小時及無法在稍後任何時間取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:511 msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #: ../UpdateManager/UpdateManager.py:604 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:534 #, python-format msgid "Remove %s" msgstr "移除 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 #, python-format msgid "Install %s" msgstr "安裝 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:538 #, python-format msgid "Upgrade %s" msgstr "升級 %s" @@ -840,13 +853,17 @@ msgid "The list of changes is not available" msgstr "修改紀錄不存在,請稍後再試。" #: ../UpdateManager/UpdateManager.py:210 -msgid "The list of changes is not available yet. Please try again later." +#, fuzzy +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." msgstr "修改紀錄不存在,請稍後再試。" #: ../UpdateManager/UpdateManager.py:215 +#, fuzzy msgid "" -"Failed to download the list of changes. Please check your Internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." msgstr "無法下載更動列表。請檢查網路連線是否正常。" #. Description diff --git a/update-manager b/update-manager index f67ebd50..34128972 100644 --- a/update-manager +++ b/update-manager @@ -48,14 +48,14 @@ if __name__ == "__main__": parser = OptionParser() parser.add_option ("-c", "--check-dist-upgrades", action="store_true", dest="check_dist_upgrades", default=False, - help="Check if a new distribution release is available") + help=_("Check if a new distribution release is available")) parser.add_option ("-d", "--devel-release", action="store_true", dest="devel_release", default=False, - help="Check if upgrading to the latest devel release " - "is possible") + help=_("Check if upgrading to the latest devel release " + "is possible")) parser.add_option ("--dist-upgrade","--dist-ugprade", action="store_true", dest="dist_upgrade", default=False, - help="Try to run a dist-upgrade") + help=_("Try to run a dist-upgrade")) (options, args) = parser.parse_args() -- cgit v1.2.3 From 7e0a76008e37d04416a7c2a5c5280864b4bf7649 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 2 Oct 2006 20:48:13 +0200 Subject: * added missing python-vte dependency --- debian/changelog | 6 ++++++ debian/control | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index a8c8c707..046c9008 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +update-manager (0.44.15) edgy; urgency=low + + * added missing python-vte dependency (lp: #63609) + + -- + update-manager (0.44.14) edgy; urgency=low * fix some incorrect i18n markings (lp: #62681) diff --git a/debian/control b/debian/control index e3c72b8d..f2fe41c3 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Standards-Version: 3.6.2 Package: update-manager Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus +Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus, python-vte Recommends: python-gnome2 Description: GNOME application that manages apt updates This is the GNOME apt update manager. It checks for updates and lets the user -- cgit v1.2.3 From b83fcc42a4370fae179c143b371029556306d6d5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 2 Oct 2006 20:49:41 +0200 Subject: * added missing gksu dependency (this should become a recommends later) --- debian/changelog | 1 + debian/control | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 046c9008..1493bbef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ update-manager (0.44.15) edgy; urgency=low * added missing python-vte dependency (lp: #63609) + * added missing gksu dependency (lp: #63572) -- diff --git a/debian/control b/debian/control index f2fe41c3..7ed4c7a5 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Standards-Version: 3.6.2 Package: update-manager Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus, python-vte +Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus, python-vte, gksu Recommends: python-gnome2 Description: GNOME application that manages apt updates This is the GNOME apt update manager. It checks for updates and lets the user -- cgit v1.2.3 From 34083e823a767755aa55a202f037d83e085fc3d5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 11:55:07 +0200 Subject: * DistUpgrade/DistUpgrade.cfg: - don't auto-remove xchat --- DistUpgrade/DistUpgrade.cfg | 2 +- debian/changelog | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index b25def9a..c83f9014 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -20,7 +20,7 @@ KeepInstalledSection=translations [ubuntu-desktop] KeyDependencies=gdm, gnome-panel, ubuntu-artwork # those pkgs will be marked remove right after the distUpgrade in the cache -PostUpgradeRemove=xchat, xscreensaver +PostUpgradeRemove=xscreensaver [kubuntu-desktop] KeyDependencies=kdm, kicker, kubuntu-artwork-usplash diff --git a/debian/changelog b/debian/changelog index 1493bbef..3f23a557 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ update-manager (0.44.15) edgy; urgency=low * added missing python-vte dependency (lp: #63609) * added missing gksu dependency (lp: #63572) + * don't remove xchat automatically anymore on upgrade (leftover + from breezy->dapper) (lp: #63881) -- -- cgit v1.2.3 From 636b6a1241f1317f95d0f9a9de87355f4c81b0c6 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 12:09:32 +0200 Subject: * UpdateManager/UpdateManager.py: - only show the dist-upgrade dialog if anything would have to be delted --- UpdateManager/UpdateManager.py | 6 ++++-- debian/changelog | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 1a4c7c40..ab1d8a95 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -114,10 +114,12 @@ class MyCache(apt.Cache): def saveDistUpgrade(self): """ this functions mimics a upgrade but will never remove anything """ self._depcache.Upgrade(True) + wouldDelete = self._depcache.DelCount if self._depcache.DelCount > 0: self.clear() assert self._depcache.BrokenCount == 0 and self._depcache.DelCount == 0 self._depcache.Upgrade() + return wouldDelete def get_changelog(self, name, lock): # don't touch the gui in this function, it needs to be thread-safe @@ -250,7 +252,7 @@ class UpdateList: self.held_back = [] # do the upgrade - cache.saveDistUpgrade() + self.distUpgradeWouldDelete = cache.saveDistUpgrade() # sort by origin for pkg in cache: @@ -911,7 +913,7 @@ class UpdateManager(SimpleGladeApp): def check_all_updates_installable(self): """ Check if all available updates can be installed and suggest to run a distribution upgrade if not """ - if self.list.keepcount > 0: + if self.list.distUpgradeWouldDelete > 0: self.dialog_dist_upgrade.set_transient_for(self.window_main) res = self.dialog_dist_upgrade.run() self.dialog_dist_upgrade.hide() diff --git a/debian/changelog b/debian/changelog index 3f23a557..fcd765db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ update-manager (0.44.15) edgy; urgency=low * added missing gksu dependency (lp: #63572) * don't remove xchat automatically anymore on upgrade (leftover from breezy->dapper) (lp: #63881) + * do not come up with bogus dist-upgrade suggestions -- -- cgit v1.2.3 From b471fffffd13becd2425e65a22c0ba74668e8808 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 12:38:02 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - fix for bad grammar --- DistUpgrade/DistUpgradeViewGtk.py | 5 +++-- debian/changelog | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 1744a0f2..e77fe858 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -200,8 +200,9 @@ class GtkInstallProgressAdapter(InstallProgress): logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current) #self.expander.set_expanded(True) prim = _("Replace the customized configuration file\n'%s'?") % current - sec = _("You will lose any local changes to this file " - "if you replace this file with the latest version.") + sec = _("You will lose any changes you have made to this " + "configuration file if you choose to replace it with " + "a newer version.") markup = "%s \n\n%s" % (prim, sec) self.parent.label_conffile.set_markup(markup) self.parent.dialog_conffile.set_transient_for(self.parent.window_main) diff --git a/debian/changelog b/debian/changelog index fcd765db..eecc7ff5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ update-manager (0.44.15) edgy; urgency=low * don't remove xchat automatically anymore on upgrade (leftover from breezy->dapper) (lp: #63881) * do not come up with bogus dist-upgrade suggestions + * fix bad english grammar (lp: #63761) -- -- cgit v1.2.3 From 533db41cd76a89a2a893c00980e537d3af34c769 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 12:45:51 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - fix incorrect variable name --- DistUpgrade/DistUpgradeCache.py | 2 +- debian/changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 3d10c707..01305d32 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -177,7 +177,7 @@ class MyCache(apt.Cache): self.markInstall(basepkg, "python2.4->python upgrade rule") except SystemError, e: - logging.debug("Failed to apply python2.4->python install: %s (%s)" % (newpkg, e)) + logging.debug("Failed to apply python2.4->python install: %s (%s)" % (basepkg, e)) # deal with *gar*gar* hpijs if (self.has_key("hpijs") and self["hpijs"].isInstalled and not self["hpijs"].markedUpgrade): diff --git a/debian/changelog b/debian/changelog index eecc7ff5..8a5fe80a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ update-manager (0.44.15) edgy; urgency=low from breezy->dapper) (lp: #63881) * do not come up with bogus dist-upgrade suggestions * fix bad english grammar (lp: #63761) + * fix in the edgyUpdates quirks handler (lp: #63723) -- -- cgit v1.2.3 From e6d17f29049c81ea4064dd928b026ef68726354d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 13:17:16 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - catch systemerror exceptions in _tryMarkObsoleteForRemoval() --- DistUpgrade/DistUpgradeCache.py | 23 ++++++++++++++--------- debian/changelog | 1 + 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 01305d32..1a7911c0 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -307,8 +307,8 @@ class MyCache(apt.Cache): logging.debug("guessing '%s' as missing meta-pkg" % key) try: self[key].markInstall() - except SystemError: - logging.error("failed to mark '%s' for install" % key) + except SystemError, e: + logging.error("failed to mark '%s' for install (%s)" % (key,e)) view.error(_("Can't install '%s'" % key), _("It was impossible to install a " "required package. Please report " @@ -340,13 +340,18 @@ class MyCache(apt.Cache): # if it dosn't remove other packages depending on it # that are not obsolete as well self.create_snapshot() - self[pkgname].markDelete() - for pkg in self.getChanges(): - if pkg.name not in remove_candidates or \ - pkg.name in foreign_pkgs or \ - self._inRemovalBlacklist(pkg.name): - self.restore_snapshot() - return False + try: + self[pkgname].markDelete() + for pkg in self.getChanges(): + if pkg.name not in remove_candidates or \ + pkg.name in foreign_pkgs or \ + self._inRemovalBlacklist(pkg.name): + self.restore_snapshot() + return False + except SystemError,e: + loggging.warning("_tryMarkObsoleteForRemoval failed for '%s' (%s)" % (pkgname,e)) + self.restore_snapshot() + return False return True def _getObsoletesPkgs(self): diff --git a/debian/changelog b/debian/changelog index 8a5fe80a..c078cfc8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ update-manager (0.44.15) edgy; urgency=low * do not come up with bogus dist-upgrade suggestions * fix bad english grammar (lp: #63761) * fix in the edgyUpdates quirks handler (lp: #63723) + * catch error from _tryMarkObsoleteForRemoval() (lp: #63617) -- -- cgit v1.2.3 From ab2952e77ef993eff352295ba981e22ec6a1008f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 14:05:41 +0200 Subject: * po/pl.po, po/ro.po: - fix plural forms * SoftwareProperties/SoftwareProperties.py: - xml-escape comments before rendering them on a gtktreeview --- SoftwareProperties/SoftwareProperties.py | 6 +++--- debian/changelog | 2 ++ po/pl.po | 4 ++-- po/ro.po | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py index 14ddeefc..983a8cce 100644 --- a/SoftwareProperties/SoftwareProperties.py +++ b/SoftwareProperties/SoftwareProperties.py @@ -33,8 +33,7 @@ from gettext import gettext as _ import os import string import re - -#sys.path.append("@prefix/share/update-manager/python") +from xml.sax.saxutils import escape from UpdateManager.Common.SimpleGladeApp import SimpleGladeApp from UpdateManager.Common.HelpViewer import HelpViewer @@ -46,6 +45,7 @@ import dialog_add_sources_list from dialog_apt_key import apt_key from utils import * + (LIST_MARKUP, LIST_ENABLED, LIST_ENTRY_OBJ) = range(3) CONF_MAP = { @@ -701,7 +701,7 @@ class SoftwareProperties(SimpleGladeApp): if source.template == None: if source.comment: - contents = "%s" % source.comment + contents = "%s" % escape(source.comment) # Only show the components if there are more than one if len(source.comps) > 1: for c in source.comps: diff --git a/debian/changelog b/debian/changelog index c078cfc8..cfc806ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ update-manager (0.44.15) edgy; urgency=low * fix bad english grammar (lp: #63761) * fix in the edgyUpdates quirks handler (lp: #63723) * catch error from _tryMarkObsoleteForRemoval() (lp: #63617) + * fix plural forms for ro, pl (lp: #46421) + * properly escape comments before displaying them (lp: #63475) -- diff --git a/po/pl.po b/po/pl.po index ef473e6a..26856cee 100644 --- a/po/pl.po +++ b/po/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" diff --git a/po/ro.po b/po/ro.po index 306fe47f..0bd1db76 100644 --- a/po/ro.po +++ b/po/ro.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n %\n" +"Plural-Forms: nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?1:2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -- cgit v1.2.3 From be3c5263985338a286e959add9fd618ba7f1d99e Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 14:13:06 +0200 Subject: * data/channels/Ubuntu.info.in: - akward grammar --- data/channels/Ubuntu.info | 22 +++++++++++----------- data/channels/Ubuntu.info.in | 8 ++++---- debian/changelog | 2 +- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/data/channels/Ubuntu.info b/data/channels/Ubuntu.info index 4588a9b1..2908e85b 100644 --- a/data/channels/Ubuntu.info +++ b/data/channels/Ubuntu.info @@ -8,7 +8,7 @@ MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 6.10 'Edgy Eft' Component: main CompDescription: Officially supported -CompDescriptionLong: By Canonical supported Open Source software +CompDescriptionLong: Canonical supported Open Source software Component: universe CompDescription: Community maintained CompDescriptionLong: Community maintained Open Source software @@ -17,7 +17,7 @@ CompDescription: Non-free drivers CompDescriptionLong: Proprietary drivers for devices Component: multiverse CompDescription: Restricted software -CompDescriptionLong: By copyright or legal issues restricted software +CompDescriptionLong: Software restricted by copyright or legal issues Suite: edgy MatchName: .* @@ -25,7 +25,7 @@ BaseURI: cdrom:\[Ubuntu.*6.10 Description: Cdrom with Ubuntu 6.10 'Edgy Eft' Available: False Component: main -CompDescription: Oficially supported +CompDescription: Officially supported Component: restricted CompDescription: Restricted copyright @@ -59,7 +59,7 @@ MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 6.06 LTS 'Dapper Drake' Component: main CompDescription: Officially supported -CompDescriptionLong: By Canonical supported Open Source software +CompDescriptionLong: Canonical supported Open Source software Component: universe CompDescription: Community maintained (universe) CompDescriptionLong: Community maintained Open Source software @@ -68,7 +68,7 @@ CompDescription: Non-free drivers CompDescriptionLong: Proprietary drivers for devices Component: multiverse CompDescription: Restricted software (Multiverse) -CompDescriptionLong: By copyright or legal issues restricted software +CompDescriptionLong: Software restricted by copyright or legal issues Suite: dapper MatchName: .* @@ -76,7 +76,7 @@ BaseURI: cdrom:\[Ubuntu.*6.06 Description: Cdrom with Ubuntu 6.06 LTS 'Dapper Drake' Available: False Component: main -CompDescription: Oficially supported +CompDescription: Officially supported Component: restricted CompDescription: Restricted copyright @@ -123,7 +123,7 @@ BaseURI: cdrom:\[Ubuntu.*5.10 Description: Cdrom with Ubuntu 5.10 'Breezy Badger' Available: False Component: main -CompDescription: Oficially supported +CompDescription: Officially supported Component: restricted CompDescription: Restricted copyright @@ -151,7 +151,7 @@ MatchURI: archive.ubuntu.com/ubuntu MirrorsFile: /usr/share/update-manager/mirrors.cfg Description: Ubuntu 5.04 'Hoary Hedgehog' Component: main -CompDescription: Oficially supported +CompDescription: Officially supported Component: restricted CompDescription: Restricted copyright Component: universe @@ -165,7 +165,7 @@ BaseURI: cdrom:\[Ubuntu.*5.04 Description: Cdrom with Ubuntu 5.04 'Hoary Hedgehog' Available: False Component: main -CompDescription: Oficially supported +CompDescription: Officially supported Component: restricted CompDescription: Restricted copyright @@ -192,7 +192,7 @@ BaseURI: http://archive.ubuntu.com/ubuntu/ MatchURI: archive.ubuntu.com/ubuntu Description: Ubuntu 4.10 'Warty Warthog' Component: main -CompDescription: No longer oficially supported +CompDescription: No longer officially supported Component: restricted CompDescription: Restricted copyright Component: universe @@ -206,7 +206,7 @@ BaseURI: cdrom:\[Ubuntu.*4.10 Description: Cdrom with Ubuntu 4.10 'Warty Warthog' Available: False Component: main -CompDescription: No longer oficially supported +CompDescription: No longer officially supported Component: restricted CompDescription: Restricted copyright diff --git a/data/channels/Ubuntu.info.in b/data/channels/Ubuntu.info.in index 1afc66c9..f3cce4f7 100644 --- a/data/channels/Ubuntu.info.in +++ b/data/channels/Ubuntu.info.in @@ -8,7 +8,7 @@ MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 6.10 'Edgy Eft' Component: main _CompDescription: Officially supported -_CompDescriptionLong: By Canonical supported Open Source software +_CompDescriptionLong: Canonical supported Open Source software Component: universe _CompDescription: Community maintained _CompDescriptionLong: Community maintained Open Source software @@ -17,7 +17,7 @@ _CompDescription: Non-free drivers _CompDescriptionLong: Proprietary drivers for devices Component: multiverse _CompDescription: Restricted software -_CompDescriptionLong: By copyright or legal issues restricted software +_CompDescriptionLong: Software restricted by copyright or legal issues Suite: edgy MatchName: .* @@ -59,7 +59,7 @@ MirrorsFile: /usr/share/update-manager/mirrors.cfg _Description: Ubuntu 6.06 LTS 'Dapper Drake' Component: main _CompDescription: Officially supported -_CompDescriptionLong: By Canonical supported Open Source software +_CompDescriptionLong: Canonical supported Open Source software Component: universe _CompDescription: Community maintained (universe) _CompDescriptionLong: Community maintained Open Source software @@ -68,7 +68,7 @@ _CompDescription: Non-free drivers _CompDescriptionLong: Proprietary drivers for devices Component: multiverse _CompDescription: Restricted software (Multiverse) -_CompDescriptionLong: By copyright or legal issues restricted software +_CompDescriptionLong: Software restricted by copyright or legal issues Suite: dapper MatchName: .* diff --git a/debian/changelog b/debian/changelog index cfc806ce..6bedba40 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,7 +5,7 @@ update-manager (0.44.15) edgy; urgency=low * don't remove xchat automatically anymore on upgrade (leftover from breezy->dapper) (lp: #63881) * do not come up with bogus dist-upgrade suggestions - * fix bad english grammar (lp: #63761) + * fix bad english grammar (lp: #63761, #63474) * fix in the edgyUpdates quirks handler (lp: #63723) * catch error from _tryMarkObsoleteForRemoval() (lp: #63617) * fix plural forms for ro, pl (lp: #46421) -- cgit v1.2.3 From 6bc9ba7df538a541965d610490c19dd329496f53 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 20:06:55 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - log free diskspace --- DistUpgrade/Changelog | 2 ++ DistUpgrade/DistUpgradeControler.py | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 5f7ba584..bfd8d4bd 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-04: + - improve the space checking/logging 2006-09-29: - typo fix (thanks to Jane Silber) (lp: #62946) 2006-09-28: diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 1f948d1f..7b35f3c8 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -372,6 +372,18 @@ class DistUpgradeControler(object): "packages of former installations using " "'sudo apt-get clean'.") + # gather/log some staticts + mnt_map = {} + for d in ["/","/usr","/var","/boot"]: + st = os.statvfs(d) + free = st[statvfs.F_BAVAIL]*st[statvfs.F_FRSIZE] + if st in mnt_map: + logging.debug("Dir %s mounted on %s" % (d,mnt_map[st])) + else: + logging.debug("Free space on %s: %s" % (d,free)) + mnt_map[st] = d + del mnt_map + # first check for /var (or where the archives are downloaded too) archivedir = apt_pkg.Config.FindDir("Dir::Cache::archives") st_archivedir = os.statvfs(archivedir) -- cgit v1.2.3 From 3371259be1e936405b16bc447d6e90aab4809f81 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 20:55:22 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - protect against KeyErrors as well --- DistUpgrade/DistUpgradeCache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 1a7911c0..7d0d27e0 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -348,7 +348,7 @@ class MyCache(apt.Cache): self._inRemovalBlacklist(pkg.name): self.restore_snapshot() return False - except SystemError,e: + except (SystemError,KeyError),e: loggging.warning("_tryMarkObsoleteForRemoval failed for '%s' (%s)" % (pkgname,e)) self.restore_snapshot() return False -- cgit v1.2.3 From 408753014a2ffe1c52a0941e9db10b912e69a6ab Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 4 Oct 2006 21:26:42 +0200 Subject: * DistUpgrade/DistUpgradeView.py: - show the dsl download time first and then the modem time --- DistUpgrade/DistUpgradeView.py | 4 ++-- debian/changelog | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py index a9cd16d7..40617774 100644 --- a/DistUpgrade/DistUpgradeView.py +++ b/DistUpgrade/DistUpgradeView.py @@ -35,8 +35,8 @@ def estimatedDownloadTime(requiredDownload): """ get the estimated download time """ timeModem = requiredDownload/(56*1024/8) # 56 kbit timeDSL = requiredDownload/(1024*1024/8) # 1Mbit = 1024 kbit - s= _("This download will take about %s with a 56k modem and about %s with " - "a 1Mbit DSL connection" % (FuzzyTimeToStr(timeModem), FuzzyTimeToStr(timeDSL))) + s= _("This download will take about %s with a 1Mbit DSL connection " + "and about %s with a 56k modem" % (FuzzyTimeToStr(timeDSL),FuzzyTimeToStr(timeModem))) return s diff --git a/debian/changelog b/debian/changelog index 6bedba40..afc3c0a0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,7 +11,7 @@ update-manager (0.44.15) edgy; urgency=low * fix plural forms for ro, pl (lp: #46421) * properly escape comments before displaying them (lp: #63475) - -- + -- Michael Vogt Wed, 4 Oct 2006 21:10:40 +0200 update-manager (0.44.14) edgy; urgency=low -- cgit v1.2.3 From 6b4f894acf07ee65b217dcdff5366d2bf4912d94 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 6 Oct 2006 12:29:50 +0200 Subject: * DistUpgrade/DistUpgradeViewText.py: - added for text-mode installs --- DistUpgrade/DistUpgrade.cfg | 1 + DistUpgrade/DistUpgradeViewText.py | 196 +++++++++++++++++++++++++++++++++++++ 2 files changed, 197 insertions(+) create mode 100644 DistUpgrade/DistUpgradeViewText.py diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index c83f9014..f399a1f5 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -1,6 +1,7 @@ [View] View=DistUpgradeViewGtk #View=DistUpgradeViewNonInteractive +#View=DistUpgradeViewText # Distro contains global information about the upgrade [Distro] diff --git a/DistUpgrade/DistUpgradeViewText.py b/DistUpgrade/DistUpgradeViewText.py new file mode 100644 index 00000000..b3bd61e3 --- /dev/null +++ b/DistUpgrade/DistUpgradeViewText.py @@ -0,0 +1,196 @@ +# DistUpgradeViewText.py +# +# Copyright (c) 2004-2006 Canonical +# +# Author: Michael Vogt +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA + +import sys +import logging +import time +import subprocess + +import apt +import apt_pkg +import os + +from apt.progress import InstallProgress +from DistUpgradeView import DistUpgradeView, FuzzyTimeToStr, estimatedDownloadTime + +import gettext +from gettext import gettext as _ + +class TextCdromProgressAdapter(apt.progress.CdromProgress): + """ Report the cdrom add progress """ + def update(self, text, step): + """ update is called regularly so that the gui can be redrawn """ + if text: + print "%s (%f)" % (text, step/float(self.totalSteps)*100) + def askCdromName(self): + return (False, "") + def changeCdrom(self): + return False + + +class DistUpgradeViewText(DistUpgradeView): + " text frontend of the distUpgrade tool " + def __init__(self, datadir=None): + if not datadir: + localedir=os.path.join(os.getcwd(),"mo") + else: + localedir="/usr/share/locale/update-manager" + + try: + gettext.bindtextdomain("update-manager", localedir) + gettext.textdomain("update-manager") + except Exception, e: + logging.warning("Error setting locales (%s)" % e) + + self.last_step = 0 # keep a record of the latest step + self._opCacheProgress = apt.progress.OpTextProgress() + self._fetchProgress = apt.progress.TextFetchProgress() + self._cdromProgress = TextCdromProgressAdapter() + self._installProgress = apt.progress.InstallProgress() + sys.excepthook = self._handleException + + def _handleException(self, type, value, tb): + import traceback + lines = traceback.format_exception(type, value, tb) + logging.error("not handled expection:\n%s" % "\n".join(lines)) + self.error(_("A fatal error occured"), + _("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 aborts now.\n" + "Your original sources.list was saved in " + "/etc/apt/sources.list.distUpgrade."), + "\n".join(lines)) + sys.exit(1) + + def getFetchProgress(self): + return self._fetchProgress + def getInstallProgress(self, cache): + self._installProgress._cache = cache + return self._installProgress + def getOpCacheProgress(self): + return self._opCacheProgress + def getCdromProgress(self): + return self._cdromProgress + def updateStatus(self, msg): + print msg + def abort(self): + print _("Aborting") + def setStep(self, step): + self.last_step = step + def information(self, summary, msg, extended_msg=None): + print summary + print msg + if extended_msg: + print extended_msg + def error(self, summary, msg, extended_msg=None): + print summary + print msg + if extended_msg: + print extended_msg + return False + def confirmChanges(self, summary, changes, downloadSize, actions=None): + DistUpgradeView.confirmChanges(self, summary, changes, downloadSize, actions) + pkgs_remove = len(self.toRemove) + pkgs_inst = len(self.toInstall) + pkgs_upgrade = len(self.toUpgrade) + msg = "" + + if pkgs_remove > 0: + # FIXME: make those two seperate lines to make it clear + # that the "%" applies to the result of ngettext + msg += gettext.ngettext("%d package is going to be removed.", + "%d packages are going to be removed.", + pkgs_remove) % pkgs_remove + msg += " " + if pkgs_inst > 0: + msg += gettext.ngettext("%d new package is going to be " + "installed.", + "%d new packages are going to be " + "installed.",pkgs_inst) % pkgs_inst + msg += " " + if pkgs_upgrade > 0: + msg += gettext.ngettext("%d package is going to be upgraded.", + "%d packages are going to be upgraded.", + pkgs_upgrade) % pkgs_upgrade + msg +=" " + if downloadSize > 0: + msg += _("\n\nYou have to download a total of %s. ") %\ + apt_pkg.SizeToStr(downloadSize) + msg += estimatedDownloadTime(downloadSize) + msg += "." + if (pkgs_upgrade + pkgs_inst + pkgs_remove) > 100: + msg += "\n\n%s" % _("Fetching and installing the upgrade can take several hours and "\ + "cannot be canceled at any time later.") + + # Show an error if no actions are planned + if (pkgs_upgrade + pkgs_inst + pkgs_remove) < 1: + # FIXME: this should go into DistUpgradeController + summary = _("Your system is up-to-date") + msg = _("There are no upgrades available for your system. " + "The upgrade will now be canceled.") + self.error(summary, msg) + return False + + return self.askYesNoQuestion(summary, msg) + + def askYesNoQuestion(self, summary, msg): + print summary + print msg + print _("Continue [Yn] "), + res = sys.stdin.readline() + if res.strip().lower().startswith("y"): + return True + return False + + def confirmRestart(self): + return self.askYesNoQuestion(_("Restart required"), + _("To fully ugprade, please restart")) + + +if __name__ == "__main__": + + view = DistUpgradeViewText() + view.confirmChanges("xx",[], 100) + sys.exit(0) + + fp = apt.progress.TextFetchProgress() + ip = apt.progress.InstallProgress() + + cache = apt.Cache() + for pkg in sys.argv[1:]: + cache[pkg].markInstall() + cache.commit(fp,ip) + + #sys.exit(0) + view.getTerminal().call(["dpkg","--configure","-a"]) + #view.getTerminal().call(["ls","-R","/usr"]) + view.error("short","long", + "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" + "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" + "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" + "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" + "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" + "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" + "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" + ) + view.confirmChanges("xx",[], 100) + print view.askYesNoQuestion("hello", "Icecream?") -- cgit v1.2.3 From cab619af6ad5ce8f2ed9d599e54bfad8d57c3f60 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 6 Oct 2006 15:32:03 +0200 Subject: * UpdateManager/UpdateManager.py: - fix proxy usage (fetch it from gconf) --- UpdateManager/UpdateManager.py | 19 ++++++++++++++++++- debian/changelog | 6 ++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index ab1d8a95..6fed3517 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -383,10 +383,27 @@ class UpdateManager(SimpleGladeApp): self.button_help.set_sensitive(False) self.gconfclient = gconf.client_get_default() + self.init_proxy() + # restore state self.restore_state() self.window_main.show() + def init_proxy(self): + if os.getenv("http_proxy"): + return + if self.gconfclient.get_bool("/system/http_proxy/use_http_proxy"): + host = self.gconfclient.get_string("/system/http_proxy/host") + port = self.gconfclient.get_int("/system/http_proxy/port") + use_auth = self.gconfclient.get_bool("/system/http_proxy/use_authentication") + if use_auth: + auth_user = self.gconfclient.get_string("/system/http_proxy/authentication_user") + auth_pw = self.gconfclient.get_string("/system/http_proxy/authentication_password") + proxy = "http://%s:%s@%s:%s/" % (auth_user,auth_pass,host, port) + else: + proxy = "http://%s:%s/" % (host, port) + os.putenv("http_proxy",proxy) + def header_column_func(self, cell_layout, renderer, model, iter): pkg = model.get_value(iter, LIST_PKG) if pkg == None: @@ -836,7 +853,7 @@ class UpdateManager(SimpleGladeApp): dialog.set_markup(msg) dialog.run() dialog.destroy() - + def on_button_dist_upgrade_clicked(self, button): #print "on_button_dist_upgrade_clicked" fetcher = DistUpgradeFetcher(self, self.new_dist) diff --git a/debian/changelog b/debian/changelog index afc3c0a0..4da39b63 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +update-manager (0.44.16) edgy; urgency=low + + * fix proxy use in user-mode + + -- Michael Vogt Fri, 6 Oct 2006 15:17:37 +0200 + update-manager (0.44.15) edgy; urgency=low * added missing python-vte dependency (lp: #63609) -- cgit v1.2.3 From f086a0da7c5c77ae68797d3b4fbd543222976523 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 6 Oct 2006 23:04:16 +0200 Subject: * UpdateManager/Common/aptsources.py: - fix crash for corner case sources.list layout (lp #64159) * UpdateManager/UpdateManager.py: - get gconf proxy too --- DistUpgrade/Changelog | 2 ++ UpdateManager/Common/aptsources.py | 7 +++++++ UpdateManager/UpdateManager.py | 43 +++++++++++++++++++------------------- debian/changelog | 2 +- 4 files changed, 31 insertions(+), 23 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index bfd8d4bd..ece5feda 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-06: + - fix source.list rewrite corner case bug (#64159) 2006-10-04: - improve the space checking/logging 2006-09-29: diff --git a/UpdateManager/Common/aptsources.py b/UpdateManager/Common/aptsources.py index 06d83e01..34b5b967 100644 --- a/UpdateManager/Common/aptsources.py +++ b/UpdateManager/Common/aptsources.py @@ -606,8 +606,15 @@ class Distribution: a repository could be splitted into different apt lines. If not add the component """ + # if we don't that distro, just reutnr (can happen for e.g. + # dapper-update only in deb-src + if not comps_per_dist.has_key(source.dist): + return + # if we have seen this component already for this distro, + # return (nothing to do if comp in comps_per_dist[source.dist]: return + # add it source.comps.append(comp) comps_per_dist[source.dist].add(comp) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 6fed3517..e659843a 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -44,13 +44,13 @@ import string import sys import os import os.path -import urllib2 import re import locale import tempfile import pango import subprocess import pwd +import urllib2 import time import thread import xml.sax.saxutils @@ -355,26 +355,6 @@ class UpdateManager(SimpleGladeApp): self.treeview_update.connect("button-press-event", self.show_context_menu) - # proxy stuff - # FIXME: move this into it's own function - SYNAPTIC_CONF_FILE = "%s/.synaptic/synaptic.conf" % pwd.getpwuid(0)[5] - if os.path.exists(SYNAPTIC_CONF_FILE): - cnf = apt_pkg.newConfiguration() - apt_pkg.ReadConfigFile(cnf, SYNAPTIC_CONF_FILE) - use_proxy = cnf.FindB("Synaptic::useProxy", False) - if use_proxy: - proxy_host = cnf.Find("Synaptic::httpProxy") - proxy_port = str(cnf.FindI("Synaptic::httpProxyPort")) - if proxy_host and proxy_port: - # FIXME: set the proxy for libapt here as well (e.g. for the - # DistUpgradeFetcher - proxy_support = urllib2.ProxyHandler({"http":"http://%s:%s" % (proxy_host, proxy_port)}) - opener = urllib2.build_opener(proxy_support) - urllib2.install_opener(opener) - # install a proxy environment too - if not os.environ.has_key("http_proxy"): - os.putenv("http_proxy", - "http://%s:%s/" % (proxy_host, proxy_port)) # setup the help viewer and disable the help button if there # is no viewer available @@ -390,9 +370,24 @@ class UpdateManager(SimpleGladeApp): self.window_main.show() def init_proxy(self): + # proxy settings, first check for http_proxy environment (always wins), + # then look into synaptics conffile, then into gconf if os.getenv("http_proxy"): return - if self.gconfclient.get_bool("/system/http_proxy/use_http_proxy"): + SYNAPTIC_CONF_FILE = "%s/.synaptic/synaptic.conf" % pwd.getpwuid(0)[5] + proxy = None + if os.path.exists(SYNAPTIC_CONF_FILE): + cnf = apt_pkg.newConfiguration() + apt_pkg.ReadConfigFile(cnf, SYNAPTIC_CONF_FILE) + use_proxy = cnf.FindB("Synaptic::useProxy", False) + if use_proxy: + proxy_host = cnf.Find("Synaptic::httpProxy") + proxy_port = str(cnf.FindI("Synaptic::httpProxyPort")) + if proxy_host and proxy_port: + # FIXME: set the proxy for libapt here as well (e.g. for the + # DistUpgradeFetcher + proxy = "http://%s:%s/" % (proxy_host, proxy_port) + elif self.gconfclient.get_bool("/system/http_proxy/use_http_proxy"): host = self.gconfclient.get_string("/system/http_proxy/host") port = self.gconfclient.get_int("/system/http_proxy/port") use_auth = self.gconfclient.get_bool("/system/http_proxy/use_authentication") @@ -402,6 +397,10 @@ class UpdateManager(SimpleGladeApp): proxy = "http://%s:%s@%s:%s/" % (auth_user,auth_pass,host, port) else: proxy = "http://%s:%s/" % (host, port) + if proxy: + proxy_support = urllib2.ProxyHandler({"http":proxy}) + opener = urllib2.build_opener(proxy_support) + urllib2.install_opener(opener) os.putenv("http_proxy",proxy) def header_column_func(self, cell_layout, renderer, model, iter): diff --git a/debian/changelog b/debian/changelog index 4da39b63..1beb54ae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ update-manager (0.44.16) edgy; urgency=low - * fix proxy use in user-mode + * fix proxy usage when runing in non-root mode (lp: #40626) -- Michael Vogt Fri, 6 Oct 2006 15:17:37 +0200 -- cgit v1.2.3 From 62568bc42e8c29d608d952ebe51d2a8ba6ba0b8d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 6 Oct 2006 23:18:05 +0200 Subject: * po/*: - imported rosetta translations --- po/am.po | 1428 ++++++++++++++++++++++++++++++++++++++++++++++ po/ar.po | 474 ++++++++-------- po/be.po | 1462 +++++++++++++++++++++++++++++++++++++++++++++++ po/bg.po | 395 ++++++------- po/bn.po | 332 +++++------ po/br.po | 233 +++----- po/ca.po | 381 ++++++------- po/cs.po | 572 +++++++++---------- po/da.po | 909 ++++++++++++++---------------- po/de.po | 669 ++++++++++------------ po/el.po | 660 ++++++++++------------ po/en_AU.po | 945 ++++++++++++++++--------------- po/en_CA.po | 338 +++++------ po/en_GB.po | 1037 +++++++++++++++++----------------- po/eo.po | 1445 +++++++++++++++++++++++++++++++++++++++++++++++ po/es.po | 797 ++++++++++++-------------- po/et.po | 1432 ++++++++++++++++++++++++++++++++++++++++++++++ po/eu.po | 1441 +++++++++++++++++++++++++++++++++++++++++++++++ po/fa.po | 1421 ++++++++++++++++++++++++++++++++++++++++++++++ po/fi.po | 864 +++++++++++++--------------- po/fr.po | 840 ++++++++++++--------------- po/fur.po | 239 +++----- po/gl.po | 1436 +++++++++++++++++++++++----------------------- po/he.po | 704 +++++++++++------------ po/hi.po | 259 +++------ po/hr.po | 543 ++++++++---------- po/hu.po | 626 +++++++++------------ po/id.po | 323 +++++------ po/it.po | 917 ++++++++++++++---------------- po/ja.po | 678 +++++++++------------- po/ka.po | 272 ++++----- po/ko.po | 990 ++++++++++++-------------------- po/ku.po | 710 ++++++++++++----------- po/lt.po | 344 +++++------- po/lv.po | 1436 ++++++++++++++++++++++++++++++++++++++++++++++ po/mk.po | 558 +++++++++--------- po/ms.po | 293 ++++------ po/nb.po | 423 ++++++-------- po/ne.po | 372 ++++++------ po/nl.po | 407 ++++++-------- po/nn.po | 1451 +++++++++++++++++++++++++++++++++++++++++++++++ po/no.po | 158 +++--- po/oc.po | 370 +++++------- po/pa.po | 239 +++----- po/pl.po | 1108 ++++++++++++++++++++---------------- po/pt.po | 669 ++++++++++------------ po/pt_BR.po | 1125 +++++++++++++++++++----------------- po/qu.po | 1424 ++++++++++++++++++++++++++++++++++++++++++++++ po/ro.po | 761 ++++++++++++------------- po/ru.po | 731 +++++++++++------------- po/rw.po | 298 ++++------ po/sk.po | 443 +++++++-------- po/sl.po | 1466 +++++++++++++++++++++++++++++++++++++++++++++++ po/sq.po | 1446 +++++++++++++++++++++++++++++++++++++++++++++++ po/sr.po | 299 ++++------ po/sv.po | 1501 +++++++++++++++++++++++++++---------------------- po/ta.po | 1430 ++++++++++++++++++++++++++++++++++++++++++++++ po/th.po | 717 +++++++++++------------ po/tr.po | 746 ++++++++++++------------ po/uk.po | 1083 ++++++++++++++--------------------- po/update-manager.pot | 148 ++--- po/ur.po | 233 +++----- po/urd.po | 148 ++--- po/vi.po | 343 +++++------ po/xh.po | 243 +++----- po/zh_CN.po | 623 ++++++++------------ po/zh_HK.po | 1018 +++++++++++++-------------------- po/zh_TW.po | 968 +++++++++++++++---------------- 68 files changed, 32501 insertions(+), 18293 deletions(-) create mode 100644 po/am.po create mode 100644 po/be.po create mode 100644 po/eo.po create mode 100644 po/et.po create mode 100644 po/eu.po create mode 100644 po/fa.po create mode 100644 po/lv.po create mode 100644 po/nn.po create mode 100644 po/qu.po create mode 100644 po/sl.po create mode 100644 po/sq.po create mode 100644 po/ta.po diff --git a/po/am.po b/po/am.po new file mode 100644 index 00000000..9f034eba --- /dev/null +++ b/po/am.po @@ -0,0 +1,1428 @@ +# Amharic translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-06-11 10:15+0000\n" +"Last-Translator: Habte \n" +"Language-Team: Amharic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "በየቀኑ" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "በየሁለት ቀን" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "በየሳምንቱ" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "በየሁለት ሳምንት" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "ከአንድ ሳምንት በሓላ" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "ከሁለት ሳምንት በሓላ" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "ከአንድ ወር በሓላ" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +#, fuzzy +msgid "Import key" +msgstr "ቁልፉን አምጣ" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +#, fuzzy +msgid "Error importing selected file" +msgstr "ሰህተት የመረጡትን ፋይል ለማምጣት" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +#, fuzzy +msgid "Error removing the key" +msgstr "ቁለፉን የማጥፋት ሰህተት" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +#, fuzzy +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "የመረጡትን ቁለፍ ማጥፋት አይቻልም፣ እባክዎን ይህንን ሰህተት ያመለከቱ" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/ar.po b/po/ar.po index 407b7b39..a932a7d5 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:46+0000\n" -"Last-Translator: Jadmadi \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-08-05 12:39+0000\n" +"Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,6 @@ msgstr "بعد شهر" msgid "After %s days" msgstr "بعد %s يوم" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -108,7 +105,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "استيراد المفتاح" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" @@ -123,8 +120,11 @@ msgid "Error removing the key" msgstr "خطاء في ازالة المفتاح" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +#, fuzzy +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" +"إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -140,30 +140,34 @@ msgstr "الرجاء ادخال اسم القرص" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "الرجاء ادخال القرص في الجهاز" +msgstr "الرجاء ادخال القرص في الجهاز:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "" +msgstr "الرزم المكسورة" #: ../DistUpgrade/DistUpgradeCache.py:92 +#, fuzzy msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" +"هذا النظام يحتوي على رزم مكسورة لا يمكن إصلاحها من هذا البرنامج, الرجاء " +"العمل على إصلاحها أولا بواسطة apt-get أو synaptic قبل الإستمرار" #: ../DistUpgrade/DistUpgradeCache.py:207 +#, fuzzy msgid "Can't upgrade required meta-packages" -msgstr "" +msgstr "لا يمكن تحديث الرزم العليا المطلوبة" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "" +msgstr "سيكون من الضروري إزالة رزم مهمة" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 +#, fuzzy msgid "Could not calculate the upgrade" -msgstr "" +msgstr "لم يكن ممكنا إحتساب التحديث" #: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" @@ -173,10 +177,10 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 +#, fuzzy msgid "Error authenticating some packages" -msgstr "" +msgstr "خطأ في التحقق من هوية بعض الرزم" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -188,15 +192,16 @@ msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "" +msgstr "تعذّر تثبيت '%s'" #: ../DistUpgrade/DistUpgradeCache.py:313 +#, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" +"لم يكن بالإمكان تثبيت إحدى الرزم المطلوبة. الرجاء التبليغ عن هذا كخطأ برمجي. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -226,7 +231,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "قراءة من الكاش" +msgstr "جاري القراءة من الكاش" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" @@ -241,8 +246,9 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:248 +#, fuzzy msgid "No valid mirror found" -msgstr "" +msgstr "لم يتم العثور على مرآه صالحة" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -256,7 +262,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -272,17 +277,20 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "importing" +msgstr "معلومات المستودع غير صالحة" #: ../DistUpgrade/DistUpgradeControler.py:302 +#, fuzzy msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"تحديث معلومات المستودعادت أدت إلى إنتاج ملف غير صالح, الرجاء التبليغ عن هذا " +"كخطأ برمجي." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "مصدر الطرف الثالث غير مفعل" +msgstr "مصادر الطرف الثالث غير مفعلة" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -293,7 +301,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" -msgstr "خطاء خلال التحديث" +msgstr "خطأ خلال التحديث" #: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" @@ -313,16 +321,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "" +msgstr "لم يكن ممكنا تثبيت التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +338,25 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 +#, fuzzy msgid "Could not download the upgrades" -msgstr "" +msgstr "لم يكن ممكنا تنزيل التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 +#, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" +"سيتم إلغاء التحديث الآن, الرجاء التأكد من إتصالك للإنترنت أو وسيط التثبيت " +"والمحاولة ثانيا. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +365,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 +#, fuzzy msgid "Remove obsolete packages?" -msgstr "" +msgstr "هل تود إزالة الرزم الملغية?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 +#, fuzzy msgid "_Skip This Step" -msgstr "" +msgstr "_تجاهل هذه الخطوة" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "" +msgstr "_إزالة" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 +#, fuzzy msgid "Error during commit" -msgstr "" +msgstr "خطأ أثناء التفعيل" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "" +msgstr "جاري التأكد من مدير الحزم" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "حاليا في عملية تحديث معلومات المستودع" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "معلومات الرزمة غير صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,27 +434,27 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 +#, fuzzy msgid "Asking for confirmation" -msgstr "" +msgstr "حاليا في عملية طلب التأكيد" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "" +msgstr "جاري عملية التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "جاري عملية البحث عن البرامج الملغية" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "" +msgstr "إنتهت عملية تحديث النظام." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 -#, python-format +#, fuzzy msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "الرجاء ادراج '%s' في السوّاقة '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -454,7 +466,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -466,15 +478,14 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "" +msgstr "جاري تطبيق التغييرات" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "لم يمكن تثبيت '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -482,7 +493,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -492,29 +502,29 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "لم يمكن العثور على أمر 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#, fuzzy msgid "A fatal error occured" -msgstr "" +msgstr "وقع خطأ شديد" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -522,7 +532,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -530,7 +540,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -538,7 +548,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -546,42 +556,42 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "" +msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +#, fuzzy msgid "Your system is up-to-date" -msgstr "" +msgstr "إن نظامك الآن محدث" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 -#, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, fuzzy msgid "Remove %s" -msgstr "" +msgstr "إزالة %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" -msgstr "" +msgstr "تثبيت %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "" +msgstr "تحديث %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format @@ -604,27 +614,27 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "" +msgstr "مطلوب إعادة تشغيل النظام" #: ../DistUpgrade/DistUpgradeView.py:110 +#, fuzzy msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" +"لقد تم إنهاء التحديث, من المطلوب إعادة تشغيل النظام, هل تود القيام بذلك الآن?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -640,27 +650,29 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" +msgstr "إعادة تشغيل النظام من أجل إنهاء التحديث" #: ../DistUpgrade/DistUpgrade.glade.h:6 +#, fuzzy msgid "Start the upgrade?" -msgstr "" +msgstr "إبدأ التحديث?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 +#, fuzzy msgid "Cleaning up" -msgstr "" +msgstr "جاري عملية التنظيف" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" -msgstr "" +msgstr "التّفاصيل" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "الفرق بين الملفات" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" @@ -668,19 +680,19 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "" +msgstr "جاري تعديل قنوات البرامج" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "" +msgstr "جاري تحضير التحديث" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "جاري إعادة تشغيل النظام" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" -msgstr "" +msgstr "شاشة طرفية" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" @@ -692,23 +704,23 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "_اترك" #: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" -msgstr "" +msgstr "_استبدل" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "_بلغ عن خطأ برمجي" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "" +msgstr "_أعد التَشغيل اﻵن" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "" +msgstr "_تابع التحديث" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -716,67 +728,68 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "لم يمكن العثور على ملاحظات الإصدار" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "قد يكون الخادم مضغوطا فوق طاقته. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "لم يمكن تنزيل ملاحظات الإصدار" #: ../UpdateManager/DistUpgradeFetcher.py:80 +#, fuzzy msgid "Please check your internet connection." -msgstr "" +msgstr "الرجاء التأكد من إتصالك بالإنترنت" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "لم يكن ممكنا تشغيل أداة التحديث" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "" +msgstr "هذا على الأغلب خطأ برمجي في أداة التحديث, الرجاء التبليغ عنه" #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "" +msgstr "جاري تنزيل أداة التحديث" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "سوف تدلك أداة التحديث أثناء عملية التحديث" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "توقيع أداة تحديث" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "" +msgstr "أداة تحديث" #: ../UpdateManager/DistUpgradeFetcher.py:208 +#, fuzzy msgid "Failed to fetch" -msgstr "" +msgstr "فشل في الإحضار" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" +msgstr "لقد فشل إحضار التحديث, قد تكون هناك مشكلة في الشبكة. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "فشل في الإستخلاص" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" +msgstr "لقد فشل إستخلاص التحديث, قد تكون هناك مشكلة في الشبكة أو الخادم. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "فشل في التأكد" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" @@ -785,8 +798,9 @@ msgid "" msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 +#, fuzzy msgid "Authentication failed" -msgstr "" +msgstr "خطأ في إثبات الهوية" #: ../UpdateManager/DistUpgradeFetcher.py:229 msgid "" @@ -804,74 +818,69 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" -msgstr "" +msgstr "الإصدار %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 -#, python-format +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, fuzzy msgid "Download size: %s" -msgstr "" +msgstr "حجم التنزيل: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -879,79 +888,73 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "الرجاء الإنتظار, قد يستغرق هذا وقتا" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "" +msgstr "لقد انتهت عملية التحديث" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "فهرس البرامج تالف" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -978,8 +981,9 @@ msgid "Starting update manager" msgstr "" #: ../data/glade/UpdateManager.glade.h:7 +#, fuzzy msgid "Changes" -msgstr "" +msgstr "تغييرات" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" @@ -995,11 +999,11 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" -msgstr "" +msgstr "الوصف" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "" +msgstr "ملاحظات الإصدار" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1011,11 +1015,12 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "إظهار تقدّم الملفات المفردة" #: ../data/glade/UpdateManager.glade.h:17 +#, fuzzy msgid "Software Updates" -msgstr "" +msgstr "تحديثات البرامج" #: ../data/glade/UpdateManager.glade.h:18 msgid "" @@ -1024,8 +1029,9 @@ msgid "" msgstr "" #: ../data/glade/UpdateManager.glade.h:19 +#, fuzzy msgid "U_pgrade" -msgstr "" +msgstr "ت_حديث" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" @@ -1033,7 +1039,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_تحقق" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" @@ -1041,11 +1047,11 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_أخفي هذة المعلومات في المستقبل" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" -msgstr "" +msgstr "_ثبت التحديثات" #: ../data/glade/UpdateManager.glade.h:25 msgid "changes" @@ -1064,8 +1070,9 @@ msgid "CDROM/DVD" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:4 +#, fuzzy msgid "Internet updates" -msgstr "" +msgstr "تحديثات الإنترنت" #: ../data/glade/SoftwareProperties.glade.h:5 msgid "Internet" @@ -1088,7 +1095,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" -msgstr "" +msgstr "إثبات الهوية" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" @@ -1103,8 +1110,9 @@ msgid "Import the public key from a trusted software provider" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 +#, fuzzy msgid "Internet Updates" -msgstr "" +msgstr "تحديثات الإنترنت" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" @@ -1143,7 +1151,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" -msgstr "" +msgstr "_تحقق من وجود التحديثات تلقائيا" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" @@ -1151,7 +1159,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "" +msgstr "_إستورد ملف المفاتيح" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" @@ -1169,7 +1177,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" -msgstr "" +msgstr "تعليق" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" @@ -1184,8 +1192,9 @@ msgid "Type:" msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +#, fuzzy msgid "URI:" -msgstr "" +msgstr "العنوان العالمي URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" @@ -1205,6 +1214,8 @@ msgid "" "Binary\n" "Source" msgstr "" +"المصدر\n" +"الثنائي" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" @@ -1212,7 +1223,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "جاري مسح القرص المدمج" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" @@ -1220,15 +1231,15 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" -msgstr "" +msgstr "_إعادة التحميل" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "أظهر و ثبت التحديثات الموجودة" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "" +msgstr "مدير التحديث" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1253,7 +1264,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "أظهر تفاصيل تحديث" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" @@ -1267,238 +1278,193 @@ msgstr "" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "مساحة النافذة" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "" +msgstr "مدعوم بشكل رسمي" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "" +msgstr "حقوق نقل محدودة" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/be.po b/po/be.po new file mode 100644 index 00000000..ba7dd450 --- /dev/null +++ b/po/be.po @@ -0,0 +1,1462 @@ +# Belarusian translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-07-06 06:10+0000\n" +"Last-Translator: Alexander Nyakhaychyk \n" +"Language-Team: Belarusian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Штодзённа" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Кожныя два дні" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Штотыдзень" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Кожныя два тыдні" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Кожныя %s дні" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Пасьля тыдня" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Пасьля двух тыдняў" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Пасьля аднаго месяца" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Пасьля %s дзён" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Імпартаваць ключ" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Памылка імпартаваньня выбранага файла" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "Выбраны файл можа быць пашкоджаны, альбо не зьяўляецца ключом PGP." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Памылка выдаленьня ключа" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Выбраны ключ ня можа быць выдалены. Калі ласка, дашліце баг-рэпорт аб гэтым." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Калі ласка, задайце назву для дыска" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "Калі ласка, устаўце дыск у дыскавод:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Пакеты з памылкай" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" +"Вашая сыстэма ўтрымлівае пакеты з зламанымі залежнасьцямі, якія немагчыма " +"выправіць у гэтай праграме. Калі ласка, спачатку выпраўце іх з дапамогай " +"synaptic ці apt-get перш чым працягваць." + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "Немагчыма абнавіць неабходныя мэтапакеты" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "Трэба было-б выдаліць абавязковы пакет" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "Немагчыма падлічыць абнаўленьне" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" +"Немагчыма аўтэнтыфікаваць некаторыя пакеты. Гэта можа быць з-за часовай " +"праблемы зь сеткай. Вы можаце паспрабаваць паўтарыць дзеяньне пазьней. " +"Глядзіце ніжэй сьпіс неаўтэнтыфікаваных пакетаў." + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "Немагчыма ўсталяваць \"%s\"" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Немагчыма ўсталяваць патрэбны пакет. Калі ласка, паведаміце аб гэтай " +"памылцы. " + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "Немагчыма вызначыць мэта-пакет" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "Чытаньне кэша" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "Ня знойдзены правільны люстраны сэрвэр" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "Стварыць прадвызначаны сьпіс крыніц?" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" +"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для " +"\"%s\".\n" +"\n" +"Ці мусяць быць дададзены прадвызначаныя запісы для \"%s\"? Калі вы вылучыце " +"\"Не\", абнаўленьне будзе скасавана." + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "Нерэчаісныя зьвесткі аб сховішчы" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" +"Вынік абнаўленьня зьвестак аб сховішчаў меў вынікам нерэчаісны файл. Калі " +"ласка, паведаміце аб гэтым, як аб памылцы." + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "Зыходнікі ад трэціх бакоў - адключаныя" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "Памылка ў час абналеньня" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" +"Узьнікла памылка ў час абнаўленьня. Звычайна гэта праблемы зь сеткай, калі " +"ласка, праверце вашае сеткавае далуэньне й паўтарыце спробу." + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "Бракуе дыскавае прасторы" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" +"Абнаўленьне спынена. Калі ласка, вызваліце ня менш за %s дыскавае прасторы " +"на %s. Спусташыце Сьметніцу й выдаліце часовыя пакеты былых усталёвак з " +"дапамогай загаду \"sudo apt-get clean\"." + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "Ці жадаеце пачаць абнаўленьне?" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "Немагчыма ўсталяваць абнаўленьні" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "Немагчыма зпампаваць абнаўленьні" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" +"Абнаўленьне спынена. Калі ласка, праверце вашае сеткавае далучэньне альбо " +"носьбіты ўсталёўкі й паўтарыце спробу. " + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "Выдаліць састарэлыя пакеты?" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "Аб_мінуць гэты крок" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "В_ыдаліць" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "Памылка ў час зацьвярджэньня" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" +"Узьніклі нейкія памылкі ў час ачысткі. Калі ласка, паглядзіце зьмешчанае " +"ніжэй паведамленьне. " + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "Праверка кіраўніка пакетаў" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "Абнаўленьне зьвестак сховішча" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "Недзеяздольныя зьвесткі пра пакет" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "Запыт пацьвярджэньня" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "Абнаўленьне" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "Калі ласка, устаўце \"%s\" у прыладу \"%s\"" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "Зьдзяйсьненьне зьменаў" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "Немагчыма ўсталяваць \"%s\"" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "Ня знойдзена праграма \"diff\"" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "Узьнікла невыправімая памылка" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "Усталёўка %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "Абнаўленьне %s" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "Патрабуецца перагрузка" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" +"Абнаўленьне скончана й патрабуецца перагрузка сыстэмы. Ці жадаеце зрабіць яе " +"зараз?" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr " " + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" +"Скасаваць працэс абнаўленьня?\n" +"\n" +"Сыстэма можа патрапіць у нестабільны стан, калі вы скасуеце абнаўленьне. " +"Вельмі пажадана дачакацца канца абнаўленьня." + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "Перагрузіце сыстэму для завяршэньня абнаўленьня" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "Пачаць абнаўленьне?" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "Ачышчэньне" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "Па_ведаміць пра памылку" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "Пера_грузіць" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "Пра_цягваць абнаўленьне" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "Немагчыма адшукаць нататкі выпуску" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "Паслужнік можа быць звыш нагружаны. " + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "Немагчыма зпампаваць нататкі рэдакцыі" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "Калі ласка, праверце вашае далучэньне да інтэрнэту." + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "Немагчыма запусьціць сродак абнаўленьня" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" +"Верагодна, гэта выклікана памылкай у сродку абнаўленьня. Калі ласка, " +"паведаміце пра гэта як пра памылку." + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "Пампаваньне сродка абнаўленьня" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "Вэрсія %s: \n" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "Абнаўленьне завершана" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "Ваш дыстрыбутыў больш не падтрымліваецца" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "Пашкоджаны індэкс праграм" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/bg.po b/po/bg.po index 4c9510c4..2cc30edc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:40+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" @@ -55,15 +55,13 @@ msgstr "След един месец" msgid "After %s days" msgstr "След %s дни" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "_Инсталиране на актуализациите" +msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,20 +116,21 @@ msgstr "Грешка при внасяне на избрания файл" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Избраният файл или не е GPG файл, или е повреден." +msgstr "Избраният файл може да не е GPG файл ключ или може да е повреден." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Грешка при премахване на ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"Ключът, който сте избрали, не може да бъде премахнат. Докладвайте това като " +"Ключът, който избрахте не може да бъде премахнат. Докладвайте това като " "грешка." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -171,7 +169,6 @@ msgstr "Не може да бъдат надградени изисквани м msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" @@ -185,9 +182,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " -"това като грешка. " +"това като грешка." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" @@ -215,7 +211,6 @@ msgstr "" "Не можеше да бъде инсталиран нужен пакет. Моля, докладвайте това като " "грешка! " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" @@ -288,7 +283,6 @@ msgstr "" "изберете \"Да\", всички записи \"%s \" ще бъдат актуализирани на \"%s\".\n" "Ако изберете \"Не\", актуализирането ще бъде отменено." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" @@ -301,8 +295,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за \"%s" -"\".\n" +"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за " +"\"%s\".\n" "\n" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." @@ -358,16 +352,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Не можеше да бъдат инсталирани надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +372,11 @@ msgstr "" "Надграждането сега ще бъде прекратено. Системата Ви може да е в " "неизползваемо състояние. Бе изпълнено възстановяване (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Не можеше да бъдат свалени надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +384,11 @@ msgstr "" "Надграждането се прекратява. Моля, проверете Интернет връзката или " "инсталационния носител и опитайте отново! " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -404,23 +397,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Премахване на остарелите пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "П_рескачане на стъпката" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Премахване" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Грешка при прехвърляне" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -428,29 +421,27 @@ msgstr "" "Имаше проблем при почистването. Моля, вижте съобщението по-долу за повече " "информация! " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Рестартиране на системата" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Проверка на диспечера на пакети" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Подготвяне на надграждането" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -458,19 +449,19 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " -"това като грешка. " +"това като грешка." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Актуализиране информацията от хранилището" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 #, fuzzy msgid "Invalid package information" msgstr "Невалидна информация за пакет" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -482,23 +473,22 @@ msgstr "" "бъде открит.\n" "Това показва сериозна грешка. Моля, съобщете за това!" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Запитване за потвърждение" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -510,24 +500,23 @@ msgid "Fetching is complete" msgstr "Актуализацията е завършена" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Изтегляне на файл %li от общо %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Прилагане на промените" @@ -543,9 +532,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -555,64 +543,66 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Командата \"diff\" не бе намерена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Възникна фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-upgrade." -"log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. Надграждането " -"сега ще бъде прекратено.\n" -"Оригиналният \"sources.list\" was saved inбе съхранен в \"/etc/apt/sources." -"list.distUpgrade\"." +"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-" +"upgrade.log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. " +"Надграждането сега ще бъде прекратено.\n" +"Оригиналният \"sources.list\" was saved inбе съхранен в " +"\"/etc/apt/sources.list.distUpgrade\"." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Трябва да изтеглите данни общо %s." +msgstr "" +"\n" +"\n" +"Трябва да изтеглите данни общо %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -621,35 +611,34 @@ msgstr "" "Надграждането може да отнеме няколко часа, като не може да бъде отменено по-" "нататък." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Премахване на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Инсталиране на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Надграждане на %s" @@ -675,12 +664,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -695,7 +683,6 @@ msgstr "Надграждането е завършено и има нужда о #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -809,7 +796,6 @@ msgstr "Не можеше да бъдат свалени бележките къ msgid "Please check your internet connection." msgstr "Моля, проверете Интернет връзката си!" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не може да бъде стартирана помощната програма за надграждане." @@ -886,28 +872,28 @@ msgstr "" "мрежата или сървъра. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Сваляне на файл %li от %li при %s/сек" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Списъкът с промените още не е наличен. Моля, опитайте по-късно!" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Списъкът с промените още не е наличен. Моля, опитайте по-късно!" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -916,104 +902,99 @@ msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 Състарени версии" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Поднови надграждането" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Версия %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Сваляне на списъка с промени..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Проверка" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Размер за изтегляне: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Можете да инсталирате %s актуализация" msgstr[1] "Можете да инсталирате %s актуализации" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Моля, изчакайте! Това може да отнеме известно време." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Актуализацията е завършена" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Нова версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Версия %s: \n" +msgstr "Версия %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуция вече не се поддържа" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1023,17 +1004,16 @@ msgstr "" "Надградете до по-късна версия на Ubuntu Linux. Вижте http://www.ubuntu.com " "за повече информация за надграждането!" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1043,23 +1023,19 @@ msgstr "" "ползвайте диспечера на пакети \"Synaptic\" или първо задействайте \"sudo apt-" "get install -f\" в терминален прозорец, за да поправите този проблем!" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1133,7 +1109,7 @@ msgstr "Показване напредъка на отделните файло #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "Актуализации на софтуера" +msgstr "Обновления на програмите" #: ../data/glade/UpdateManager.glade.h:18 msgid "" @@ -1213,7 +1189,7 @@ msgstr "Добавяне на Cdrom" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" -msgstr "Идентифициране" +msgstr "Идентификация" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" @@ -1335,15 +1311,15 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Добавете пълния APT ред за канала, който искате да добавите\n" +"Добавете пълния APT ред за канала, който искате да " +"добавите\n" "\n" "APT редът съдържа вида, местонахождението и компонентите за даден канал. " "Например „deb http://ftp.debian.org sarge main“." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" -msgstr "Ред за APT:" +msgstr "APT ред:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 msgid "" @@ -1377,7 +1353,7 @@ msgstr "Показване и инсталация на наличните ак #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "Диспечер на актуализациите" +msgstr "Управление на обновленията" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1432,254 +1408,215 @@ msgstr "Размерът на прозореца" msgid "Configure the sources for installable software and updates" msgstr "Настройка на софтуерните канали и актуализациите по Интернет" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 актуализации" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Поддържани от обществото (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Допринесен софтуер" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Поддържани от обществото (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Несвободни (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Несвободни (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Ограничен за изнасяне от САЩ софтуер" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 актуализации" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официално поддържани" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 актуализации" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободни (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официално поддържан" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограничени авторски права" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 обновления по сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 обновления" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" актуализации на сигурността" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестване)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабилен)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-съвместим софтуер с несвободни зависимости" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Ограничен за изнасяне от САЩ софтуер" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Сваляне на файл %li от %li при неизвестна скорост" @@ -1700,8 +1637,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Надграждане до Ubuntu 6.06 LTS" +#~ "Надграждане до Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1731,13 +1667,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Някои актуализации изискват премахването на допълнителен софтуер. " #~ "Използвайте функцията „Маркиране на всички актуализации” на Диспечера на " -#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в " -#~ "терминален прозорец, за да актуализирате напълно системата си." +#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в терминален " +#~ "прозорец, за да актуализирате напълно системата си." #~ msgid "The following updates will be skipped:" #~ msgstr "Следните актуализации ще бъдат пропуснати:" @@ -1758,8 +1694,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Покажи детайлите" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "Позволено е да оперира само един диспечер на софтуера в даден момент" +#~ msgstr "Позволено е да оперира само един диспечер на софтуера в даден момент" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1794,9 +1729,10 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "Edit Channel" #~ msgstr "Редакция на канал" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Добави канал" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Добави канал" +#~ msgstr[1] "_Добави канали" #~ msgid "_Custom" #~ msgstr "_Лично" @@ -1866,16 +1802,16 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "" #~ "Ключове за идентификация\n" #~ "\n" -#~ "Може да добавяте и премахвате ключове за идентификация през този " -#~ "прозорец. Ключът прави възможна проверката на цялостта на софтуера, който " -#~ "сваляте от интернет." +#~ "Може да добавяте и премахвате ключове за идентификация през този прозорец. " +#~ "Ключът прави възможна проверката на цялостта на софтуера, който сваляте от " +#~ "интернет." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, " -#~ "че сте получили ключа по сигурен канал и че можете да се доверите на " +#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, че " +#~ "сте получили ключа по сигурен канал и че можете да се доверите на " #~ "собственика. " #~ msgid "Add repository..." @@ -1903,8 +1839,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Максимален размер в Мб:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Възвръщане на стандартните ключове идващи с дистрибуцията. Това няма да " #~ "промени потребителските инсталирани ключове." @@ -1936,13 +1872,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Налични обновления\n" #~ "\n" -#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като " -#~ "натиснете бутона „Инсталиране“." +#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като натиснете " +#~ "бутона „Инсталиране“." #~ msgid "Cancel downloading the changelog" #~ msgstr "Отказ на свалянето на дневника на промените" @@ -2018,8 +1954,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr[1] "Избрахте всички %s пакета за обновяване, с общ размер %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избрахте %s от %s пакет за обновяване, с размер %s" #~ msgstr[1] "Избрахте %s от %s пакета за обновяване, с общ размер %s" @@ -2027,11 +1962,11 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Обновленията се прилагат." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Може да стартирате само една програма за управление на пакетите. " -#~ "Затворете другата програма първо." +#~ "Може да стартирате само една програма за управление на пакетите. Затворете " +#~ "другата програма първо." #~ msgid "Updating package list..." #~ msgstr "Обновяване на списъка с пакетите..." @@ -2044,25 +1979,25 @@ msgstr "Софтуер несъвместим с DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще " -#~ "бъдат спрени поправките по сигурността и други критични обновления. Вижте " +#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще бъдат " +#~ "спрени поправките по сигурността и други критични обновления. Вижте " #~ "http://www.ubuntulinux.org за повече информация." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Има нова версия на Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Излезнала е нова версия с кодовото име „%s“. Вижте http://www.ubuntulinux." -#~ "org за информация по обновяването." +#~ "Излезнала е нова версия с кодовото име „%s“. Вижте " +#~ "http://www.ubuntulinux.org за информация по обновяването." #~ msgid "Never show this message again" #~ msgstr "Без да се показва това съобщение отново" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Няма открити промени. Сървърът може би не е обновен." +#~ msgstr "Няма открити промени. Сървърът може би не е обновен." \ No newline at end of file diff --git a/po/bn.po b/po/bn.po index 1a22b0e9..d9b5c84e 100644 --- a/po/bn.po +++ b/po/bn.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-26 12:09+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" @@ -55,15 +55,13 @@ msgstr "এক মাস পর" msgid "After %s days" msgstr "%s দিন পর" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "আপডেট ইন্সটল করো (_I)" +msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,11 +121,12 @@ msgid "Error removing the key" msgstr "কী সরাতে সমস্যা হয়েছে" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -164,7 +162,6 @@ msgstr "দরকারী meta-packages আপগ্রেড করতে প msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -199,10 +195,9 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ হিসাবে " -"রিপোর্ট করুন। " +"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ " +"হিসাবে রিপোর্ট করুন। " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" @@ -263,7 +258,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" @@ -276,11 +270,11 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে পাওয়া যায় " -"নি।\n" +"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে " +"পাওয়া যায় নি।\n" "\n" -"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " -"হবে।" +"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট " +"বাতিল হবে।" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -291,8 +285,8 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " -"হিসাবে রিপোর্ট করুন।" +"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে " +"বাগ হিসাবে রিপোর্ট করুন।" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -314,8 +308,8 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " -"আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" +"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ " +"করে আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -329,16 +323,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,23 +340,23 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " -"করুন এবং আবার চেষ্টা করুন। " +"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া " +"পরীক্ষা করুন এবং আবার চেষ্টা করুন। " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -372,66 +365,64 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "এই ধাপটি এড়িয়ে যাও (_এ)" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "সরাও (_স)" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "আপগ্রেড প্রস্তুত করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -441,23 +432,22 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "তথ্যের জন্য জিজ্ঞাসা" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -469,24 +459,23 @@ msgid "Fetching is complete" msgstr "আপডেট সম্পন্ন" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "%li of %li ফাইল ডাউনলোড করছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "%li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "%li of %li ফাইল ডাউনলোড করছে" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "পরিবর্তনগুলো প্রয়োগ করছি" @@ -502,9 +491,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -514,102 +502,104 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "'diff' কমান্ডটি পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "আপনাকে সর্বমোট %s ডাউনলোড করতে হবে।" +msgstr "" +"\n" +"\n" +"আপনাকে সর্বমোট %s ডাউনলোড করতে হবে। " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" +msgstr "" +"আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s মুছো" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s ইন্সটল" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s আপগ্রেড" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "%li দিন %li ঘন্টা %li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "%li ঘন্টা %li মিিনিট বাকি আছে" @@ -624,12 +614,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -639,12 +628,12 @@ msgstr "রিবুট করা প্রয়োজন" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" +msgstr "" +"আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -753,7 +742,6 @@ msgstr "রিলিজ নোট ডাউনলোড করা যায় ন msgid "Please check your internet connection." msgstr "অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "আপগ্রেড টুলটি চালানো যায় নি" @@ -795,7 +783,9 @@ msgstr "এক্সট্রাক্ট করতে ব্যর্থ" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে পারে। " +msgstr "" +"আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে " +"পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -807,8 +797,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা " -"থাকতে পারে। " +"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে " +"সমস্যা থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -830,164 +820,155 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "পরিবর্তনের তালিকা এখনে উপস্হিত নয়। অনুগ্রহ করে পরে আবার চেষ্টা করুন।" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "পরিবর্তনের তালিকা এখনে উপস্হিত নয়। অনুগ্রহ করে পরে আবার চেষ্টা করুন।" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ " +"পরীক্ষা করুন।" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "পুনরায় আপগ্রেড শুরু (_R)" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "ভার্সন %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "পরিবর্তনের তালিকা ডাউনলোড করা হচ্ছ..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "পরীক্ষা করো (_C)" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "ডাউনলোড এর আকার: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "আপনি %s আপডেট ইনস্টল করতে পারেন" msgstr[1] "আপনি %s আপডেট ইনস্টল করতে পারেন" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "অনুগ্রহ করে অপেক্ষা করুন, এটি কিছুটা সময় নিতে পারে।" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "আপডেট সম্পন্ন" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "নতুন ভার্সন: %s (আকার: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "ভার্সন %s: \n" +msgstr "ভার্সন %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "আপনার ডিস্ট্রিবিউশনটি আর সমর্থিত নয়" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1325,245 +1306,201 @@ msgstr "উইনডোর আকার" msgid "Configure the sources for installable software and updates" msgstr "সফ্টওয়্যার চ্যানেল এবং ইন্টারনেট আপডেট কনফিগার" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "উবুন্টু ৫.১০ আপডেট" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "ডেবিয়ান ৩.১ \"সার্জ\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "ডেবিয়ান ৩.১ \"Sarge\" নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "ডেবিয়ান \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "ডেবিয়ান \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1609,6 +1546,7 @@ msgstr "" #~ msgid "The following updates will be skipped:" #~ msgstr "নিম্নের আপডেটগুলো বাদ দেয়া হবে:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "%li সেকেন্ড বাকি আছে" @@ -1616,7 +1554,8 @@ msgstr "" #~ msgstr "ডাউনলোড সম্পন্ন" #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" +#~ msgstr "" +#~ "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" #~ msgid "Upgrading Ubuntu" #~ msgstr "উবুন্টু আপগ্রেড করছি" @@ -1633,8 +1572,8 @@ msgstr "" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে বন্ধ " -#~ "করুন।" +#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে " +#~ "বন্ধ করুন।" #~ msgid "Channels" #~ msgstr "চ্যানেল" @@ -1663,9 +1602,10 @@ msgstr "" #~ msgid "Edit Channel" #~ msgstr "চ্যানেন সম্পাদন" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "চ্যানেল যোগ (_A)" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "চ্যানেল যোগ (_A)" +#~ msgstr[1] "চ্যানেল যোগ (_A)" #~ msgid "_Custom" #~ msgstr "নিজ হাতে (_C)" @@ -1680,4 +1620,4 @@ msgstr "" #~ msgstr "উবুন্টু ৬.০৬ আপডেট" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" +#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" \ No newline at end of file diff --git a/po/br.po b/po/br.po index 2ab541d1..2bb246dc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -55,7 +55,6 @@ msgstr "" msgid "After %s days" msgstr "War-lerc'h %s devezh" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Fazi en ur zilemel an alc'hwezh" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "N'eus ket tu da zilemel an alc'whezh ho peus dibabet. Kelaouit eo ur bug " "marplij." @@ -164,7 +162,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -200,7 +196,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -260,7 +255,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -317,16 +311,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +328,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,65 +351,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -426,23 +417,22 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -458,7 +448,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -470,7 +460,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -486,7 +475,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -496,50 +484,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -547,39 +534,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -605,12 +591,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -625,7 +610,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -731,7 +715,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -805,153 +788,142 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1274,232 +1246,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/ca.po b/po/ca.po index c930b461..d79e8ab3 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-29 21:18+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Després d'un mes" msgid "After %s days" msgstr "Després de %s dies" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "_Instal·la les actualitzacions" +msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,9 +68,8 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -81,7 +78,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Servidor més proper" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" @@ -127,13 +124,14 @@ msgid "Error removing the key" msgstr "S'ha produït un error en esborrar la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La clau que heu seleccionat no es pot esborrar. Notifiqueu-ho com a error de " "programació." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -172,7 +170,6 @@ msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" @@ -186,9 +183,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " -"de l'error. " +"de l'error." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" @@ -216,7 +212,6 @@ msgstr "" "No s'ha pogut instal·lar un dels paquets sol·licitats. Envieu un informe amb " "els error. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -283,10 +278,9 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "Voleu generar les fonts per defecte?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -347,21 +341,20 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a %s." -"\r\n" +"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a " +"%s. \n" "Buideu la vostra paperera i esborreu els paquets temporals utilitzant 'sudo " "apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -373,11 +366,11 @@ msgstr "" "L'actualització s'ha cancel·lat. El vostre sistema ha pogut quedar " "inservible. S'ha executat una recuperació del sistema (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "No s'han pogut descarregar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +378,11 @@ msgstr "" "S'ha cancel·lat l'actualització. Comproveu la vostra connexió a Internet o " "el mitjà d'instal·lació i torneu-ho a provar. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -401,53 +394,51 @@ msgstr "" "Aquests paquets instal·lats ja no es mantindran de manera oficial i només " "els mantindrà la comunitat Ubuntu ('universe').\n" "\n" -"Si no teniu activat 'universe' se us sugerirà que els desintal·leu. " +"Si no teniu activat 'universe' se us sugerirà que els desintal·leu." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Voleu esborrar els paquets obsolets?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Omet aquest pas" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "Esbo_rra" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "S'està preparant l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -455,17 +446,17 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " -"de l'error. " +"de l'error." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "S'està actualitzant la informació del dipòsit" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "La informació del paquet no és valida" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,23 +466,22 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Actualitzant" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -503,24 +493,23 @@ msgid "Fetching is complete" msgstr "S'ha completat l'actualització" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "S'està descarregant el fitxer %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "Queden uns %li minuts" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "S'està descarregant el fitxer %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "S'estan aplicant els canvis" @@ -536,9 +525,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -548,58 +536,60 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'ordre 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "S'ha produït un error greu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Heu de descarregar un total de %s." +msgstr "" +"\n" +"\n" +"Heu de descarregar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -608,46 +598,45 @@ msgstr "" "L'actualització pot durar algunes hores i no la podreu cancel·lar un cop " "hagi començat." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Esborra %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instal·la %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Queden uns %li dies %li hores %li minuts" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Queden unes %li hores %li minuts" @@ -662,12 +651,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -684,7 +672,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -704,7 +691,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicieu el sistema per a completar l'actualització" +msgstr "" +"Reinicieu el sistema per a completar l'actualització" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -797,7 +785,6 @@ msgstr "No s'han pogut descarregar les notes de la versió" msgid "Please check your internet connection." msgstr "Comproveu la vostra connexió a Internet" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No es pot executar l'eina d'actualització" @@ -863,28 +850,28 @@ msgid "" msgstr "" #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "La llista de canvis encara no està disponible. Proveu-ho després." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "La llista de canvis encara no està disponible. Proveu-ho després." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -893,104 +880,99 @@ msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Debian Stable Security Updates" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "_Instal·la les actualitzacions" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Reprén l'actualització" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "_Instal·la les actualitzacions" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versió %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "S'està descarregant la llista de canvis..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Comprova" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Mida de la descàrrega: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podeu instal·lar %s actualització" msgstr[1] "Podeu instal·lar %s actualitzacions" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Espereu, això pot tardar una estona." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "S'ha completat l'actualització" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "S'estan comprovant les actualitzacions..." -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versió nova: %s (Mida: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Versió %s: \n" +msgstr "Versió %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "La vostra distribució ja no es mantindrà més" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1000,17 +982,16 @@ msgstr "" "sistema a la darrera versió d'Ubuntu. Vegeu http://www.ubuntu.com per a més " "informació." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1020,23 +1001,19 @@ msgstr "" "utilitzeu el gestor de paquets \"Synaptic\" o executeu \"sudo apt-get " "install -f\" en un terminal." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1400,258 +1377,218 @@ msgstr "La mida de la finestra" msgid "Configure the sources for installable software and updates" msgstr "Configura els canals de programari i les actualitzacions d'Internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualitzacions d'Ubuntu 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Programari de la comunitat" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Paquets sense llicència lliure (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Programari amb restriccions d'exportació als EUA" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualitzacions d'Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Paquets mantinguts oficialment (Main)" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualitzacions d'Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Algun programari ja no es mantindrà oficialment" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Paquets amb restriccions per copyright (Restricted)" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualitzacions d'Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualitzacions de seguretat de Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programari compatible DFSG amb dependències no lliures" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Programari amb restriccions d'exportació als EUA" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "" -#~ "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" +#~ msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" #, fuzzy #~ msgid "Normal updates" @@ -1704,8 +1641,8 @@ msgstr "Programari no compatible DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algunes actualitzacions requereixen la desinstal·lació de programari " #~ "adicional. Per actualitzar completament el vostre sistema utilitzeu la " @@ -1715,6 +1652,7 @@ msgstr "Programari no compatible DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Les següents actualitzacions s'ometran:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Queden uns %li segons" @@ -1769,9 +1707,10 @@ msgstr "Programari no compatible DFSG" #~ msgid "Edit Channel" #~ msgstr "Edita el canal" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Afegeix el canal" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Afegeix el canal" +#~ msgstr[1] "_Afegeix els canals" #~ msgid "_Custom" #~ msgstr "_Personalitza" @@ -1824,9 +1763,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "" #~ "Claus d'autenticació\n" #~ "\n" -#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus " -#~ "d'autenticació. Les claus permeten comprovar la integritat del programari " -#~ "que descarregueu." +#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus d'autenticació. " +#~ "Les claus permeten comprovar la integritat del programari que descarregueu." #~ msgid "" #~ "Enter the complete APT line of the repository that you want to " @@ -1839,15 +1777,15 @@ msgstr "Programari no compatible DFSG" #~ "Introduïu la línia APT del dipòsit que voleu afegir\n" #~ "\n" #~ "La línia APT conté el tipus, la ubicació i el contingut del dipòsit; per " -#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar " -#~ "una descripció més detallada de la sintaxi en la documentació." +#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar una " +#~ "descripció més detallada de la sintaxi en la documentació." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner." +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner." #~ msgstr "" -#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut " -#~ "la clau per un canal segur i que confieu en el propietari." +#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut la " +#~ "clau per un canal segur i que confieu en el propietari." #~ msgid "Add repository..." #~ msgstr "Afegeix un dipòsit..." @@ -1880,11 +1818,11 @@ msgstr "Programari no compatible DFSG" #~ msgstr "Restaura les claus per defecte" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restaura les claus per defecte de la distribució. Això no afecta les " -#~ "claus instal·lades per l'usuari." +#~ "Restaura les claus per defecte de la distribució. Això no afecta les claus " +#~ "instal·lades per l'usuari." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Fixa la mida _màxima de memòria cau per als paquets descarregats" @@ -1916,8 +1854,8 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualitzacions disponibles\n" #~ "\n" @@ -1929,8 +1867,8 @@ msgstr "Programari no compatible DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "S'estan descarregant els canvis\n" +#~ "S'estan descarregant els " +#~ "canvis\n" #~ "\n" #~ "Es necessita obtenir els canvis des del servidor central" @@ -2019,8 +1957,7 @@ msgstr "Programari no compatible DFSG" #~ "Heu seleccionat els %s paquets actualitzats, la mida total és de %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Heu seleccionat %s paquet actualitzat de %s, la mida és de $s" #~ msgstr[1] "" #~ "Heu seleccionat %s paquets actualitzats de %s, la mida total és de %s" @@ -2035,8 +1972,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "S'està executant un altre gestor de paquets" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Només podeu executar un gestor de paquets a la vegada. Tanqueu l'altra " #~ "aplicació." @@ -2058,24 +1995,24 @@ msgstr "Programari no compatible DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Actualitzeu el sistema amb una versió més nova d'Ubuntu Linux. La vostra " #~ "versió ja no disposarà de més actualitzacions de seguretat ni d'altres " -#~ "actualitzacions crítiques. Si voleu més informació, visiteu http://www." -#~ "ubuntulinux.org/." +#~ "actualitzacions crítiques. Si voleu més informació, visiteu " +#~ "http://www.ubuntulinux.org/." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ja disposeu del nou llançament d'Ubuntu" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Ja disposeu del nou llançament d'Ubuntu amb el nom en clau '%s'. Si " -#~ "necessiteu instruccions per a actualitzar el sistema, visiteu http://www." -#~ "ubuntulinux.org/." +#~ "necessiteu instruccions per a actualitzar el sistema, visiteu " +#~ "http://www.ubuntulinux.org/." #~ msgid "Never show this message again" #~ msgstr "No tornis a mostrar aquest missatge" @@ -2083,4 +2020,4 @@ msgstr "Programari no compatible DFSG" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" #~ "No s'han trobat els canvis. Pot ser que el servidor encara no s'hagi " -#~ "actualitzat." +#~ "actualitzat." \ No newline at end of file diff --git a/po/cs.po b/po/cs.po index 1edefee8..a794a893 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-25 18:52+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,57 +56,54 @@ msgstr "Po měsíci" msgid "After %s days" msgstr "Po %s dnech" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Instaluji aktualizace" +msgstr "%s aktualizace" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Hlavní server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server pro %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Nejbližší server" #: ../SoftwareProperties/SoftwareProperties.py:345 +#, fuzzy msgid "Custom servers" -msgstr "" +msgstr "Uživatelem vybrané servery" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Aktualizace softwaru" +msgstr "Softwarový kanál" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Aktivní" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Zdrojový kód)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Zdrojový kód" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -125,11 +122,12 @@ msgid "Error removing the key" msgstr "Chyba při odstraňování klíče" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -156,8 +154,9 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Váš systém obsahuje poškozené balíky, které nemohou být tímto programem " -"opraveny. Před pokračováním oje prosím pravte použitím synaptic nebo apt-get." +"Váš systém obsahuje poškozené balíčky, které nemohou být tímto programem " +"opraveny. Před pokračováním je prosím opravte použitím programu synaptic " +"nebo apt-get." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -167,7 +166,6 @@ msgstr "Nemohu aktualizovat požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Základní balík by musel být odstraněn" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" @@ -181,9 +179,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Při výpočtu aktualizace nastal neřešitelný problém. Prosím oznamte to jako " -"chybu. " +"chybu.\n" +"\n" +"Prosím oznamte tuto chybu jako problém balíčku 'update-manager' a přiložte " +"soubory v adresáři /var/log/dist-upgrade/ k vašemu chybovému hlášení." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba při ověření některých balíků" @@ -210,7 +210,6 @@ msgid "" msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" @@ -225,14 +224,14 @@ msgid "" "before proceeding." msgstr "" "Váš systém neobsahuje žádný z balíků ubuntu-desktop, kubuntu-desktop nebo " -"edubuntu-desktop a nebylo možné zjistit jakou verzi ubuntu používáte.\n" -" Před pokračováním si prosím nainstalujte si jeden z výše uvedených balíků " +"edubuntu-desktop a nebylo možné zjistit jakou verzi Ubuntu používáte.\n" +" Před pokračováním si prosím nainstalujte jeden z výše uvedených balíků " "pomocí synaptic nebo apt-get." #: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" -msgstr "Chyba stahování" +msgstr "Chyba při přidávání CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -243,6 +242,12 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Vyskytla se chyba při přidávání CD, přechod na vyšší verzi bude přerušen. " +"Prosím nahlaste tuto situaci jako chybu, pokud používáte správné CD s " +"Ubuntu.\n" +"\n" +"Chybová zpráva byla:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -250,7 +255,7 @@ msgstr "Probíhá čtení cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Stáhnout ze sítě nějaká data pro přechod na vyšší verzi?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -259,6 +264,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Při přechodu na vyšší verzi můžete použít síť pro zjištění nejnovějších " +"aktualizací a pro stažení balíčků, které nejsou na aktuálním CD.\n" +"Pokud máte levné připojení k síti, můžete zde odpovědět 'Ano'. Pokud je vaše " +"síťové připojené nákladné, zvolte 'Ne'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -275,8 +284,14 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"Během prohledávání informací o repozitářích nebylo nalezeno žádné zrcadlo " +"pro aktualizace. Toto se může stát, pokud používáte interní zrcadlo nebo " +"pokud jsou informace o zrcadle zastaralé.\n" +"\n" +"Přejete si i přesto přepsat váš 'sources.list'? Zvolíte-li 'Ano', budou " +"všechny položky '%s' aktualizovány na '%s'.\n" +"Zvolíte-li 'Ne', aktualizace bude zrušena." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vytvořit standardní zdroje?" @@ -289,6 +304,11 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"Po prohledání vašeho 'sources.list' nebyla pro '%s' nalezena žádná " +"odpovídající položka.\n" +"\n" +"Chcete přidat výchozí položky pro '%s'? Zvolíte-li 'Ne', aktualizace bude " +"zrušena." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -312,6 +332,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" +"Některé položky třetích stran ve vašem sources.list byly vyřazeny. Tyto " +"položky můžete opět povolit po přechodu na novou verzi za pomocí nástroje " +"'software-propertie' nebo pomocí synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -336,17 +359,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"Aktualizace bude nyní přerušena. Prosím, uvolněte nejméně %s místa na %s. " +"Vyprázdněte váš koš a odstraňte dočasné balíčky z dřívějších instalací " +"pomocí 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Nelze nainstalovat aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -357,13 +382,16 @@ msgid "" msgstr "" "Aktualizace byla předčasně ukončena. Váš systém může být v nepoužitelném " "stavu. Zkuste ho prosím opravit pomocí 'sudo apt-get install -f' nebo " -"Synaptic." +"Synaptic.\n" +"\n" +"Prosím nahlaste tuto chybu balíčku 'update-manager' a přiložte soubory z " +"adresáře /var/log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Nelze stáhnout aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -371,11 +399,11 @@ msgstr "" "Aktualizace byla předčasně ukončena. Prosím zkontrolujte si připojení k " "internetu nebo instalační médium a zkuste to znovu. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Podpora pro některé aplikace byla ukončena" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -383,24 +411,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. již dále neposkytuje podporu pro následující balíčky " +"softwaru. Stále můžete získat podporu komunity.\n" +"\n" +"Pokud nemáte povolen software spravovaný komunitou (universe), tyto balíčky " +"budou navrhnuty k odstranění v dalším kroku." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Odebrat zastaralé balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Přeskočit tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Odebrat" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Chyba při zaznamenávání" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -408,29 +441,27 @@ msgstr "" "Během čištění nastal nějaký problém. Pro více informací si prosím " "prohléhněte níže uvedenou zprávu. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Stahuji backport '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Kontroluje se manažer balíků" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Připravuje se upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -438,17 +469,17 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Při výpočtu aktualizace nastal neřešitelný problém. Prosím oznamte to jako " -"chybu. " +"chybu." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Aktualizují se informace o úložišti" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "Neplatná informace o balíčcích" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -457,24 +488,28 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"Poté co byly aktualizovány informaco o balíčcích, nebyl nalezen nezbytný " +"balík '%s'.\n" +"Toto ukazuje na závažný problém, prosím nahlašte toto jako chybu balíku " +"'update-manager' a přiložte k hlášení o chybě soubory v adresáři " +"/var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Požaduje se potvrzení" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Probíhá upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Vyhledáván zastaralý software" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Upgrade systému je dokončen." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -486,24 +521,23 @@ msgid "Fetching is complete" msgstr "Aktualizace je dokončena" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "Zhruba %li minut zbývá" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Stahuji soubor %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Provádím změny" @@ -518,10 +552,12 @@ 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 bugreport." msgstr "" +"Aktualizace se přerušila. Nahlašte prosím tuto chybu jako chybu balíku " +"'update-manager' a přiložte k chybovému hlášení soubory z adresáře " +"/var/log/dist-upgrade/." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -531,130 +567,132 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Příkaz \"diff\" nebyl nalezen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Nastala fatální chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosím oznamte toto jako chybu a do zprávy připojte soubory /var/log/dist-" "upgrade.log a /var/log/dist-upgrade-apt.log. Přechod na novou verzi bbude " -"nyní předčasně ukončen. Váš původní sources.list byl uložen do /etc/apt/" -"sources.list.distUpgrade." +"nyní předčasně ukončen. Váš původní sources.list byl uložen do " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s balík bude odstraněn." msgstr[1] "%s balíky budou odstraněny." msgstr[2] "%s balíků bude odstraněno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s nový balík bude nainstalován." msgstr[1] "%s nové balíky budou nainstalovány." msgstr[2] "%s nových balíků bude nainstalováno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s balík bude nahrazen vyšší verzí." msgstr[1] "%s balíky budou nahrazeny vyšší verzí." msgstr[2] "%s balíky bude nahrazeno vyšší verzí." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Bude staženo celkem %s." +msgstr "" +"\n" +"\n" +"Bude staženo celkem %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Upgrade může trvat několik hodin a nesmí být později přerušen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Pro váš počítač nejsou k dispozici žádné aktualizace. Aktualizace bude nyní " +"ukončena." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Odstranit %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Nainstalovat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "Upgradovat %s" +msgstr "Aktualizovat %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Zhruba %li hodin %li minut zbývá" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" -msgstr "Zhruba %li hodin %li minut zbývá" +msgstr "Zbývá zhruba %li hodin %li minut" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minut" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li sekund" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -665,12 +703,12 @@ msgstr "Vyžadován restartovat" msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"Upgrade byl dokončen a je třeba restartovat systém. Chcete restartovat nyní?" +"Aktualizace byla dokončena a je třeba restartovat systém. Chcete restartovat " +"nyní?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -783,11 +821,9 @@ msgstr "Nelze stáhnout poznámky k vydání." msgid "Please check your internet connection." msgstr "Prosím zkontrolujte své internetové připojení." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 -#, fuzzy msgid "Could not run the upgrade tool" -msgstr "Nelze nainstalovat upgrady" +msgstr "Nemohu spustit aktualizační nástroj" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" @@ -833,6 +869,7 @@ msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Rozbalování aktualizace selhalo. Může být problém se sítí nebo serverem. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -856,30 +893,30 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" +"Autentizace aktualizace selhala. Může být problém se sítí nebo serverem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Stahuji %li. soubor z %li rychlostí %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Stahuji %li. soubor z %li rychlostí %s/s" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." +msgstr "Seznam změn není dostupný." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -887,64 +924,58 @@ msgid "" msgstr "" "Selhalo stažení seznamu změn. Prosím zkontrolujte své internetové připojení." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" +msgstr "Důležité bezpečnostní aktualizace" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Doporučené aktualizace" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" -msgstr "Instaluji aktualizace" +msgstr "Navrhnuté aktualizace" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 Backports" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Pokračovat v upgradu" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Instaluji aktualizace" +msgstr "Ostatní aktualizace" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Verze %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Stahuji seznam změn ..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Zkontrolovat" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Stahovaná velikost: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -952,40 +983,39 @@ msgstr[0] "Můžete instalovat %s aktualizaci" msgstr[1] "Můžete instalovat %s aktualizace" msgstr[2] "Můžete instalovat %s aktualizací" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Prosím čekejte, může to nějakou dobu trvat." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Aktualizace je dokončena" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Zkontrolovat dostupné aktualizace" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verze: %s (Velikost: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Verze %s: \n" +msgstr "Verze %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Velikost: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Vaše distribude už není podporovaná" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -995,44 +1025,42 @@ msgstr "" "Přejděte na další verzi Ubuntu Linuxu. Pro více informací o přechodu na " "vyšší verzi se podívejte na http://www.ubuntu.com." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Nové vydání distribuce '%s' je k dispozici" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "Seznam softwaru je poškozen" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" +"Není možné nainstalovat nebo odinstalovat žádný program. Prosím použijte " +"správce balíčků \"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get " +"install -f\" pro opravu tohoto problému." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1070,7 +1098,7 @@ msgstr "Změny" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Změny a popis aktualizace" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1138,33 +1166,31 @@ msgid "_Install Updates" msgstr "Na_instalovat Aktualizace" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Změny" +msgstr "změny" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "aktualizace" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Síťové aktualizace" +msgstr "Automatické aktualizace" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Síťové aktualizace" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Síťové aktualizace" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 +#, fuzzy msgid "" "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 " @@ -1174,6 +1200,12 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Zúčastněte se, prosím, utkání oblíbenosti aby Ubuntu lépe poznalo zvyky " +"uživatelů. Pokud tak učiníte, seznam nainstalovaného software a četnost " +"použití bude každý týden anonymně odesílána projektu Ubuntu.\n" +"\n" +"Výsledky jsou použity ke zlepšení podpory pro oblíbené aplikace a řazení ve " +"výsledcích vyhledávání." #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy @@ -1189,9 +1221,8 @@ msgid "D_elete downloaded software files:" msgstr "_Smazat stažené soubory programů:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Stahování bylo dokončeno" +msgstr "Stáhnout z:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1219,39 +1250,36 @@ msgstr "Obnovit původní klíče vaší distribuce" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Vlastnosti softwaru" +msgstr "Zdroje softwaru" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Zdrojový kód" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistiky" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Odeslat statistické informace" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Třetí strana" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Zkontrolovat aktualizace automaticky" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Stáhnout aktualizace na pozadí, ale neinstalovat je." +msgstr "Stá_hnout aktualizace automaticky, ale neinstalovat je" #: ../data/glade/SoftwareProperties.glade.h:25 -#, fuzzy msgid "_Import Key File" -msgstr "Importovat klíč" +msgstr "_Importovat klíč" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" @@ -1292,7 +1320,7 @@ msgstr "Typ:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 msgid "URI:" -msgstr "Adresa:" +msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy @@ -1303,8 +1331,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadejte úplný řádek pro cestu APT kanálu, který chcete přidat\n" +"Zadejte úplný řádek pro cestu APT kanálu, který chcete " +"přidat\n" "\n" "Řádek pro APT obsahuje typ, umístění a součásti kanálu, např. \"deb " "http://ftp.debian.org sarge main\"." @@ -1323,7 +1351,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Upravit zdroj" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1331,7 +1359,7 @@ msgstr "Prohledávám CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "Přid_at zdroj" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1391,256 +1419,200 @@ msgid "The window size" msgstr "Velikost okna" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Konfigurovat kanály softwaru a internetové aktualizace" +msgstr "Konfigurovat zdroje pro instalovatelný software a aktualizace" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 Aktualizace" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Udržováno komunitou (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Nesvobodný (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cdrom s Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Udržováno komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Udržováno komunitou (Universe)" +msgstr "Udržováno komunitou (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Udržováno komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Nesvobodný (Multiverse)" +msgstr "Nesvobodné ovladače" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Nesvobodný (Multiverse)" +msgstr "Omezený software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Cdrom s Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualizace" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Cdrom s Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálně podporováno" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" +msgstr "Ubuntu 5.04 Bezpečnostní aktualizace" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 Aktualizace" +msgstr "Ubuntu 5.04 Aktualizace" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržováno komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nesvobodný (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cdrom s Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Oficiálně podporované" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Omezeno copyrightem" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" +msgstr "Ubuntu 4.10 Bezpečnostní aktualizace" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 Aktualizace" +msgstr "Ubuntu 4.10 Aktualizace" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Bezpoečnostní Aktualizace" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "DFSG-kompatibilní software s Non-free závislostmi" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Žádný DFSG kompatibilní Software" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Stahuji %li. soubor z %li neznámou rychlostí" @@ -1657,20 +1629,16 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgid "Your system has already been upgraded." #~ msgstr "Váš systém byl již upgradován." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Přechází se na Ubuntu 6.06 LTS" +#~ "Přechází se na Ubuntu 6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" +#~ msgstr "Důležité bezpečnostní aktualizace Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Upgradovat na poslední verzi Ubuntu" +#~ msgstr "Aktualizace Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Nelze nainstalovat všechny dostupné aktualizace" @@ -1683,8 +1651,8 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "" #~ "Prozkoumává se systém\n" #~ "\n" -#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti " -#~ "a poskytují nové funkce." +#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti a " +#~ "poskytují nové funkce." #~ msgid "Oficially supported" #~ msgstr "Oficiálně podporované" @@ -1692,6 +1660,7 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Následující aktualizace budou přeskočeny:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zhruba %li sekund zbývá" @@ -1738,7 +1707,7 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "Zdroje" #~ msgid "Components" -#~ msgstr "Součásti:" +#~ msgstr "Součásti" #~ msgid "Add Channel" #~ msgstr "Přidat zdroj" @@ -1746,16 +1715,17 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgid "Edit Channel" #~ msgstr "Editvat zdroj" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Přidat kanál" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Přidat kanál" +#~ msgstr[1] "_Přidat kanály" +#~ msgstr[2] "_Přidat kanály" #~ msgid "_Custom" #~ msgstr "_Uživatelský" -#, fuzzy #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS aktualizace" +#~ msgstr "Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Security Updates" #~ msgstr "Ubuntu 6.06 LTS bezpečnostní aktualizace" @@ -1767,14 +1737,14 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "Ubuntu 6.06 LTS backporty" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka " -#~ "pro upgrade.\n" +#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka pro " +#~ "upgrade.\n" #~ msgid "Sections" #~ msgstr "Sekce" #~ msgid "Sections:" -#~ msgstr "Sekce:" +#~ msgstr "Sekce:" \ No newline at end of file diff --git a/po/da.po b/po/da.po index a2ead496..d74b0d31 100644 --- a/po/da.po +++ b/po/da.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:41+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -23,89 +23,85 @@ msgstr "Dagligt" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "Hver 2. dag" +msgstr "Hver anden dag" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "Ugentligt" +msgstr "Ugenligt" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "Hver 2. uge" +msgstr "Hver anden uge" #: ../SoftwareProperties/SoftwareProperties.py:144 -#, fuzzy, python-format +#, fuzzy msgid "Every %s days" msgstr "Hver %s. dag" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "Efter 1 uge" +msgstr "Efter en uge" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "Efter 2 uger" +msgstr "Efter to uger" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "Efter 1 måned" +msgstr "Efter en måned" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" -msgstr "Efter %s dag(e)" +msgstr "Efter %s dage" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "_Installer Opdateringer" +msgstr "%s opdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Hovedserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server for %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Nærmeste server" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Brugerdefinerede servere" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Opdateringer" +msgstr "Softwarekanal" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Aktiv" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Kildetekst)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Kildetekst" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -113,35 +109,36 @@ msgstr "Importér nøgle" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Fejl under importering af den valgte fil" +msgstr "Fejl ved importering af den valgte fil" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Den valgte fil er ikke en GPG-nøglefil eller den er i stykker." +msgstr "Den valgte fil er ikke en GPG-nøglefil eller den kan være ødelagt." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Fejl ved fjernelse af nøgle" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"Den valgte nøgle kunne ikke fjernes. Rapporter venligst dette som en fejl." +"Den valgte nøgle kunne ikke fjernes. Rapportér venligst dette som en fejl." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Fejl ved scanning af CD\n" +"Fejl ved gennemsøgning af cd\n" "\n" "%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "Indtast venligst et navn til disken" +msgstr "Indtast venligst et navn for disken" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" @@ -156,36 +153,33 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Dit system indeholder ødelagte pakker som ikke kan repareres med dette " -"program. Reparer dem venligst med synaptic eller apt-get før du fortsætter." +"Dit system indeholder ødelagte pakker som ikke kunne repareres med dette " +"program. Reparér dem venligst med synaptic eller apt-get, før du fortsætter." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "Kan ikke opgradere de krævede meta-pakker" +msgstr "Kan ikke opgradere de krævede metapakker" #: ../DistUpgrade/DistUpgradeCache.py:217 -#, fuzzy msgid "A essential package would have to be removed" -msgstr "Det ville være nødvendigt at fjerne en vigtig pakke" +msgstr "Det ville være nødvendigt at fjerne en vital pakke" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 -#, fuzzy msgid "Could not calculate the upgrade" -msgstr "Kunne ikke udregne opgraderingen" +msgstr "Kunne ikke beregne opgraderingen" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Der forekom et uløseligt problem under beregningen af opgraderingen. " -"Rapportér venligst dette som en fejl. " +"Der opstod et uløseligt problem under beregningen af opgraderingen.\n" +"\n" +"Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " +"filerne i /var/log/dist-upgrade/ i fejlrapporten." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" @@ -196,31 +190,28 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"Nogle pakker kunne ikke godkendes. Det kan være et problem med netværket. " -"Det anbefales du prøver igen senere. Se længere nede for en liste over " -"pakker som ikke kunne godkendes." +"Nogle pakker kunne ikke godkendes. Det kan være et problem med netværket. Du " +"kan prøve igen senere. Se nedenfor en liste over pakker som ikke kunne " +"godkendes." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "Kan ikke installere '%s'" +msgstr "Kan ikke installere \"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Det var umuligt at installere en påkrævet pakke. Rapporter venligst dette " +"Det var umuligt at installere en påkrævet pakke. Rapportér venligst dette " "som en fejl. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 -#, fuzzy msgid "Can't guess meta-package" -msgstr "Kan ikke gætte meta-pakke" +msgstr "Kan ikke gætte metapakke" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -228,16 +219,16 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Dit system indeholder ikke en af pakkerne ubuntu-desktop, kubuntu-desktop " -"eller edubuntu-desktop, og det var ikke muligt at finde ud af hvilken " -"version af Ubuntu du kører.\n" -" Installer venligst en af pakkerne nævnt herover ved hjælp af Synaptic eller " -"apt-get før du fortsætter." +"Dit system indeholder ikke en ubuntu-desktop, kubuntu-desktop eller edubuntu-" +"desktop-pakke, og det var ikke muligt at genkende hvilken Ubuntu-version du " +"kører.\n" +"\n" +"Installér venligst en af pakkerne nævnt herover ved hjælp af synaptic eller " +"apt-get, før du fortsætter." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Fejl ved hentning" +msgstr "Kunne ikke tilføje cd" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -248,14 +239,19 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Der opstod en fejl ved tilføjelse af cd'en, opgraderingen afbrydes. " +"Rapportér venligst dette som en fejl, hvis dette er en gyldig Ubuntu cd.\n" +"\n" +"Fejlmeddelelsen var:\n" +"\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "Læser cache-mellemlager" +msgstr "Læser mellemlager" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Hent data fra netværket til opgraderingen?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -264,10 +260,15 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Opgraderingen kan bruge netværket til at søge efter de seneste opdateringer " +"og hente pakker som ikke er på den nuværende cd.\n" +"\n" +"Hvis du har en hurtig eller billig netværksforbindelse, bør du svare \"Ja\" " +"her. Hvis forbindelsen er dyr i anvendelse, bør du svare \"Nej\"." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "" +msgstr "Intet gyldigt spejl fundet" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -280,11 +281,17 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"Intet spejl for opdateringen blev fundet under indlæsning af din " +"arkivinformation. Dette kan ske hvis du kører et internt spejl eller hvis " +"spejlinformationen er forældet.\n" +"\n" +"Vil du genskrive din \"sources.list\"-fil alligevel? Hvis du vælger \"Ja\" " +"her, vil alle linjer \"%s\" blive erstattet af \"%s\".\n" +"Hvis du vælger \"Nej\", vil opdateringen blive annulleret." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "Generér standardkilder?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -294,22 +301,27 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"Efter indlæsning af din \"sources.list\", blev der ikke fundet en gyldig " +"linje for \"%s\".\n" +"\n" +"Skal standardlinjer for \"%s\" tilføjes? Hvis du vælger \"Nej\", vil " +"opdateringen blive annulleret." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "Arkivinformation ugyldig." +msgstr "Arkivinformation ugyldig" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Opgradering af arkivet resulterede i en ødelagt fil. raporter venligst dette " -"som en fejl." +"Opgradering af arkivet resulterede i en ødelagt fil. Rapportér venligst " +"dette som en fejl." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "Trediepartskilder er fravalgt" +msgstr "Tredjepartskilder er deaktiveret" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -317,6 +329,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" +"Nogle tredjepartselementer i din sources.list blev deaktiveret. Du kan " +"genaktivere dem efter opgraderingen med \"software-properties\"-værktøjet " +"eller med synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -327,12 +342,12 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"En fejl forekom under opdateringen. Dette skyldes som regel et " +"En fejl opstod under opdateringen. Dette skyldes som regel et " "netværksproblem, tjek venligst din netværksforbindelse og prøv igen." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" -msgstr "Der er ikke nok fri diskplads" +msgstr "Ikke tilstrækkeligt ledig diskplads" #: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format @@ -345,17 +360,15 @@ msgstr "" "papirkurv og fjern midlertidige pakker fra tidligere installationer ved at " "køre 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -363,27 +376,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Upgraderingen afbrydes nu. Dit system kan forekomme ustabilt. En oprydning " -"blev foretaget (dpkg --configura -a)." +"Opgraderingen afbrydes nu. Dit system kan være i en ubrugelig tilstand. En " +"genskabelse blev kørt (dpkg --configura -a).\n" +"\n" +"Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " +"filerne i /var/log/dist-upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"Opgraderingen afbryder nu. Tjek venligst din internetforbindelse eller dit " +"Opgraderingen afbrydes nu. Tjek venligst din internetforbindelse eller dit " "installationsmedie og prøv igen. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Support stoppede for nogle programmer" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -391,31 +406,30 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Disse installerede pakker er ikke længere officielt understøttet, og er nu " -"kun understøttet af brugerne ('universe').↵\n" -"↵\n" -"Hvis du ikke har slået 'universe' til, vil fjernelsen af disse pakker blive " -"foreslået i det næste trin. " +"Canonical Ltd. yder ikke længere support på de følgende softwarepakker. Du " +"kan stadig få hjælp fra fællesskabet.\n" +"\n" +"Hvis du ikke har slået software vedligeholdt af fællesskabet (universe) til, " +"vil disse pakker blive foreslået fjernet i det næste trin." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 #, fuzzy msgid "_Skip This Step" msgstr "_Spring dette trin over" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:551 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "Fejl under udførsel" +msgstr "Fejl under gennemførelse" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -423,29 +437,27 @@ msgstr "" "Et problem opstod under oprydningen. Se venligst længere nede for mere " "information. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "Genstarter oprindelig systemtilstand" +msgstr "Genskaber oprindelig systemtilstand" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Henter tilbageportering af \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Klargør opgraderingen" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -453,17 +465,17 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Der forekom et uløseligt problem under beregningen af opgraderingen. " -"Rapportér venligst dette som en fejl. " +"Rapportér venligst dette som en fejl." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "Ugyldig pakkeinformation" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -472,218 +484,223 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"Efter din pakkeinformation blev opdateret, kan den vitale pakke \"%s\" ikke " +"længere findes.\n" +"Dette indikerer en kritisk fejl, rapportér venligst denne fejl mod \"update-" +"manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " +"fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "" +msgstr "Anmoder om bekræftelse" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Opgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Indsæt venligst '%s' i drevet '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Opdatering udført" +msgstr "Hentning er gennemført" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "Henter fil %li af %li fra %s/s" +msgstr "Henter fil %li af %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Tid tilbage(ca.): %li minutter" +msgstr "Omkring %s tilbage" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Henter fil %li af %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "Udfører ændringer" +msgstr "Anvender ændringer" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "Kunne ikke installere '%s'" +msgstr "Kunne ikke installere \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-" +"manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " +"fejlrapporten." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Udskift opsætningsfilen\n" -"'%s'?" +"Udskift den tilpassede konfigurationsfil\n" +"\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "Kommandoen 'diff' blev ikke fundet" +msgstr "Kommandoen \"diff\" blev ikke fundet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "En alvorlig fejl opstod" +msgstr "Der opstod en alvorlig fejl" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Raporter venligst dette som en fejl og inkuder filerne /var/log/dist-upgrade." -"log og /var/log/dist-upgrade-apt.log i din raportering. Opgraderingen " -"afbryder nu.\n" -"Din originale fil sources.list blev gemt i /etc/apt/sources.list.distUpgrade." +"Rapportér venligst dette som en fejl og inkludér filerne /var/log/dist-" +"upgrade/main.log og /var/log/dist-upgrade/apt.log in din rapport. " +"Opgraderingen afbrydes nu.\n" +"Din oprindelige sources.list blev gemt i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s pakke vil blive fjernet." -msgstr[1] "%s pakker vil blive fjernet." +msgstr[0] "%d pakke vil blive fjernet." +msgstr[1] "%d pakker vil blive fjernet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s ny pakke vil blive installeret." -msgstr[1] "%s nye pakker vil blive installeret." +msgstr[0] "%d ny pakke vil blive installeret." +msgstr[1] "%d nye pakker vil blive installeret." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s pakke vil blive opgraderet." -msgstr[1] "%s pakker vil bliver opgraderet." +msgstr[0] "%d pakke vil blive opgraderet." +msgstr[1] "%d pakker vil blive opgraderet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Der skal i alt hentes %s." +msgstr "" +"\n" +"\n" +"Du skal hente i alt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "Opgraderingen kan tage flere timer og kan ikke fortrydes senere." +msgstr "" +"Hentning og installation af opgraderingen kan tage flere timer og kan ikke " +"afbrydes senere." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Der er ingen opgraderinger tilgængelige for dit system. Opgraderingen vil nu " +"blive afbrudt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" -msgstr "Installer %s" +msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "Opgrader %s" +msgstr "Opgradér %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Tid tilbage(ca.): %li dage %li timer %li minutter" +msgstr "%li dage %li timer %li minutter" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Tid tilbage(ca.): %li timer %li minutter" +msgstr "%li timer %li minutter" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutter" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li sekunder" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "Genstart af maskinen er påkrævet" +msgstr "Genstart af maskinen påkrævet" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"Opgraderingen er afsluttet og et genstart af maskinen er påkrævet. Vil du " +"Opgraderingen er afsluttet og en genstart af maskinen er påkrævet. Vil du " "gøre dette nu?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -698,20 +715,20 @@ msgid "" msgstr "" "Afbryd den igangværende opgradering?\n" "\n" -"Systemet kan være i en ubrugelig tilstand hvis du afbryder opgraderingen. " +"Systemet kan være i en ubrugelig tilstand, hvis du afbryder opgraderingen. " "Det anbefales kraftigt at du fortsætter opgraderingen." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Genstart systemet for at afslutte opgraderingen" +msgstr "Genstart systemet for at færdiggøre opgraderingen" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Start opgraderinegn?" +msgstr "Start opgraderingen?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Opgraderer Ubuntu til version 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -731,13 +748,12 @@ msgid "Fetching and installing the upgrades" msgstr "Henter og installerer opgraderingerne" #: ../DistUpgrade/DistUpgrade.glade.h:12 -#, fuzzy msgid "Modifying the software channels" -msgstr "Konfigurer softwarekanalerne" +msgstr "Ændrer softwarekanalerne" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "Klargør opgraderingen" +msgstr "Klargører opgraderingen" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" @@ -766,7 +782,7 @@ msgstr "_Erstat" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "_Rapporter fejl" +msgstr "_Rapportér fejl" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -797,7 +813,6 @@ msgstr "Kunne ikke hente udgivelsesnoterne" msgid "Please check your internet connection." msgstr "Undersøg venligst din internetforbindelse" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke køre opgraderingsværktøjet" @@ -815,15 +830,15 @@ msgstr "Henter opgraderingsværktøjet" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "Opgraderingsværktøjet vil guide dig igennem opgraderings processen." +msgstr "Opgraderingsværktøjet vil guide dig igennem opgraderingsprocessen." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "Opgrader værkstøjets signatur." +msgstr "Signatur på opgraderingsværktøj" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "Opgraderingesværktøj" +msgstr "Opgraderingsværktøj" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" @@ -832,7 +847,8 @@ msgstr "Fejl ved hentning" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" -"Hentning af opgraderingen fejlede. Det kan være være et netværksproblem. " +"Hentning af opgraderingen fejlede. Det skyldes muligvis et problem med " +"netværket. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -843,21 +859,20 @@ msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Udpakningen af opgraderingen fejlede. Det kan være et problem med netværket " -"eller med serveren. " +"Udpakningen af opgraderingen fejlede. Det skyldes muligvis et problem med " +"netværket eller serveren. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" msgstr "Efterprøvning fejlede" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Efterprøvning af opgraderingen fejlede. Det er muligvis en fejl i netværket " -"eller på serveren. " +"Efterprøvning af opgraderingen fejlede. Det skyldes muligvis et problem med " +"netværket eller serveren. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -868,32 +883,31 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Godkendelse af opgraderingen fejlede. Der er muligvis et problem med " -"netværket eller med serveren. " +"Godkendelse af opgraderingen fejlede. Det skyldes muligvis et problem med " +"netværket eller serveren. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Henter fil %li af %li med %s/s" +msgstr "Henter fil %(current)li af %(total)li med %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Henter fil %li af %li med %s/s" +msgstr "Henter fil %(current)li af %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." +msgstr "Listen med ændringer er ikke tilgængelig" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -902,157 +916,139 @@ msgstr "" "Fejl ved hentning af ændringslisten. Undersøg venligst din " "internetforbindelse." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" +msgstr "Vigtige sikkerhedsopdateringer" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Anbefalede opdateringer" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "_Installer Opdateringer" +msgstr "Foreslåede opdateringer" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Tilbageporteringer" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Genoptag opgradering" +msgstr "Distributionsopdateringer" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "_Installer Opdateringer" +msgstr "Andre opdateringer" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Henter listen med ændringer..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "_Fjern alle afkrydsninger" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Tjek" +msgstr "_Afkryds alle" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "Overføringsstørelse: %s" +msgstr "Overføringsstørrelse: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s opdatering" msgstr[1] "Du kan installere %s opdateringer" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Vent venligst, dette kan tage et stykke tid." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "Opdatering udført" +msgstr "Opdatering er gennemført" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "_Installer Opdateringer" +msgstr "Leder efter opdateringer" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Ny version: %s (Size: %s)" +msgstr "Fra version %(old_version)s til %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Version %s: \n" +msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Størrelse: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" -msgstr "Din distribution understøtes ikke længere" +msgstr "Din distribution understøttes ikke længere" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -"Du vil ikke modtage yderligere sikkerhedrettelser eller krittiske " -"opdateringer. Opgrader til en senere version af Ubuntu Linux. Se http://www." -"ubuntu.com (engalsk) for mere informaiton om opgradering." +"Du vil ikke modtage yderligere sikkerhedrettelser eller kritiske " +"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se " +"http://www.ubuntu.com (engelsk) for mere information om opgradering." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Ny distributionsudgivelse \"%s\" er tilgængelig" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "Software indexet er i stykker" +msgstr "Softwareindekset er ødelagt" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -"Det er umuligt at installere eller fjerne software. Brug venligst " -"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -f" -"\" i en terminal for at ordne dette problem først." +"Det er ikke muligt at installere eller fjerne software. Brug venligst " +"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -" +"f\" i en terminal for at fikse dette problem først." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Intet" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1061,26 +1057,24 @@ msgid "" msgstr "" "Du må undersøge for opdateringer manuelt\n" "\n" -"Dit system undersøger ikke automatisk om der er kommet nye opdateringer. Du " -"kan indstille denne adfærd i \"System\" -> \"Administration\" -> \"Software " -"Properties\"." +"Dit system søger ikke automatisk efter nye opdateringer. Du kan indstille " +"denne adfærd i Softwarekilder under Internetopdateringer-" +"fanebladet." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Hold dit system opdateret" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Fejl ved scanning af CD\n" -"\n" +"Ikke alle opdateringer kan installeres \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Start opgraderinegn?" +msgstr "Starter opdateringshåndtering" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1088,17 +1082,15 @@ msgstr "Ændringer" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Ændringer og beskrivelse af opdateringen" #: ../data/glade/UpdateManager.glade.h:9 -#, fuzzy msgid "Chec_k" -msgstr "_Tjek" +msgstr "_Kontrollér" #: ../data/glade/UpdateManager.glade.h:10 -#, fuzzy msgid "Check the software channels for new updates" -msgstr "Undersøg softwarekanalerne for nye opdateringer" +msgstr "Kontrollér softwarekanalerne for nye opdateringer" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1116,6 +1108,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Kør en distributionsopgradering, for at installere så mange opdateringer som " +"muligt.\n" +"\n" +"Dette kan skyldes en ufærdig opgradering, uofficielle softwarepakker eller " +"hvis der køres en udviklingsversion." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1123,7 +1120,7 @@ msgstr "Vis fremgang for enkelte filer" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "Opdateringer" +msgstr "Softwareopdateringer" #: ../data/glade/UpdateManager.glade.h:18 msgid "" @@ -1135,55 +1132,51 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "_Opgrader" +msgstr "O_pgradér" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "Opgrader til seneste version af Ubuntu" +msgstr "Opgradér til seneste version af Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Tjek" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Genoptag opgradering" +msgstr "_Distributionsopgradering" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "_Skjul denne information for fremtiden" +msgstr "_Skjul denne information i fremtiden" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" -msgstr "_Installer Opdateringer" +msgstr "_Installér opdateringer" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Ændringer" +msgstr "ændringer" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "opdateringer" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internetopdateringer" +msgstr "Automatiske opdateringer" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "Cd-rom/dvd" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Internetopdateringer" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internetopdateringer" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1195,30 +1188,33 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Tag venligst del i populariteteskonkurrencen, for at forbedre " +"brugeroplevelsen af Ubuntu. Hvis du vælger at gøre dette, fremsendes der på " +"ugentlig basis en anonym liste over installeret software og hvor ofte det " +"anvendes.\n" +"\n" +"Resultaterne anvendes til at forbedre supporten for populære programmer og " +"prioriterer programmerne i søgeresultaterne." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Tilføj _CD-ROM" +msgstr "Tilføj cd-rom" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" msgstr "Godkendelse" #: ../data/glade/SoftwareProperties.glade.h:11 -#, fuzzy msgid "D_elete downloaded software files:" -msgstr "_Slet overførte softwarefiler:" +msgstr "Sl_et hentede softwarefiler:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Overførsel fuldført" +msgstr "Hent fra:" #: ../data/glade/SoftwareProperties.glade.h:13 -#, fuzzy msgid "Import the public key from a trusted software provider" -msgstr "Importer den offentlige nøgle fra en betroet softwareleverandør" +msgstr "Importér den offentlige nøgle fra en betroet softwareleverandør" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" @@ -1230,11 +1226,11 @@ msgid "" "automatically" msgstr "" "Kun sikkerhedsopdateringer fra de officielle Ubuntu-servere vil blive " -"installeret automatisk." +"installeret automatisk" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" -msgstr "Gendan _standard" +msgstr "Gendan stan_darder" #: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" @@ -1242,46 +1238,42 @@ msgstr "Gendan standardnøglerne for din distribution" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Softwareinstillinger" +msgstr "Softwarekilder" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Kildetekst" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistikker" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Indsend statistisk information" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Tredjepart" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" -msgstr "_Kontroller automatisk om der er nye opdateringer" +msgstr "_Undersøg automatisk efter opdateringer" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Hent opdateringer i baggrunden, men installer dem ikke" +msgstr "_Hent automatisk opdateringer, men installér dem ikke" #: ../data/glade/SoftwareProperties.glade.h:25 -#, fuzzy msgid "_Import Key File" -msgstr "Importér nøgle" +msgstr "_Importér nøglefil" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "_Installer sikkerhedsopdateringer automatisk uden bekræftelse" +msgstr "_Installér sikkerhedsopdateringer automatisk uden bekræftelse" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1290,12 +1282,13 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Kanalinformationen er forældet\n" +"Informationer omkring tilgængeligt software er forældede\n" "\n" -"Du er nødt til at genopfriske kanalinformationen for at installere softwarre " -"og opdateringer fra nyligt tilføjede eller ændrede kanaler. \n" +"For at installere software og opdateringer fra nyligt tilføjede eller " +"ændrede kilder, er du nødt til at genopfriske informationer omkring " +"tilgængeligt software.\n" "\n" -"Du skal bruge en aktiv internetforbindelse for at fortsætte." +"Du skal bruge en fungerende internetforbindelse for at fortsætte." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1326,6 +1319,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" +"Indtast en komplet APT-linje for det arkiv du ønsker at tilføje som " +"kilde\n" +"\n" +"APT-linjen indeholder typen, placeringen og komponenter for arkivet, f.eks. " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1342,15 +1340,15 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Redigér kilde" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "Skanner CD-ROM" +msgstr "Undersøger cd-rom" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "_Tilføj kilde" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1358,7 +1356,7 @@ msgstr "_Genindlæs" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "Vis og installer tilgængelige opdateringer" +msgstr "Vis og installér tilgængelige opdateringer" #: ../data/update-manager.desktop.in.h:2 #, fuzzy @@ -1370,24 +1368,22 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"Undersøg automatisk om der er en ny version af din distribution tilgængelig, " -"og tilbyd at opgradere (hvis det er muligt)." +"Undersøg automatisk om en ny version den nuværende distribution er " +"tilgængelig, og tilbyd at opgradere (hvis det er muligt)." #: ../data/update-manager.schemas.in.h:2 -#, fuzzy msgid "Check for new distribution releases" -msgstr "Undersøg om der er en ny distributionsudgivelse" +msgstr "Undersøg om der er nye distributionsudgivelser" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" "Hvis automatisk undersøgelse for opdateringer er slået fra, er du nødt til " -"at opdatere kanallisten manuelt. Denne indstilling tillader at påmindelsen " -"skjules i dette tilfælde." +"at genopfriske kanallisten manuelt. Denne indstilling tillader at " +"påmindelsen skjules i det tilfælde." #: ../data/update-manager.schemas.in.h:4 #, fuzzy @@ -1400,16 +1396,14 @@ msgstr "Vis detaljer for opdatering" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Gemmer størrelsen på opdateringshåndteringens dialog" +msgstr "Størrelsen på opdateringshåndteringens vindue" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Gemmer tilstanden for udfolderen der indeholder listen med ændringer og " -"beskrivelsen af dem." +"Tilstanden for udfolderen der indeholder listen med ændringer og beskrivelser" #: ../data/update-manager.schemas.in.h:8 #, fuzzy @@ -1417,269 +1411,202 @@ msgid "The window size" msgstr "Vinduesstørrelsen" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Konfigurer softwarekanaler og internetopdateringer" +msgstr "Konfigurér kilderne for installérbar software og opdateringer" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 Opdateringer" +msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Vedligeholdt af fællesskabet (Universe)" +msgstr "Vedligeholdt af fællesskabet" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Proprietære drivere til enheder" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Ikke frit programmel (Multiverse)" +msgstr "Ikke-frit software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Vedligeholdt af fællesskabet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Vedligeholdt af fællesskabet (Universe)" +msgstr "Vedligeholdt af fællesskabet (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Vedligeholdt af fællesskabet (Universe)" +msgstr "Fri software vedligeholdt af fællesskabet" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Ikke frit programmel (Multiverse)" +msgstr "Proprietære drivere" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Proprietære drivere til enheder " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Ikke frit programmel (Multiverse)" +msgstr "Ikke-frit software (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Tilbageporterede opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" +msgstr "Ubuntu 5.10 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 5.10 Opdateringer" +msgstr "Ubuntu 5.10 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:145 -#, fuzzy msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 5.10 tilbageporteringer" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 -#, fuzzy msgid "Officially supported" -msgstr "Officielt understøttet" +msgstr "Understøttet officielt" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" +msgstr "Ubuntu 5.04 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 Opdateringer" +msgstr "Ubuntu 5.04 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 5.04 tilbageporteringer" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "Vedligeholdt af fællesskabet (Universe)" +msgstr "Vedligeholdt af fællesskabet (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Ikke frit programmel (Multiverse)" +msgstr "Ikke-frit (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Noget software er ikke længere officielt understøttet" +msgstr "Ikke længere officielt supporteret" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 -#, fuzzy msgid "Restricted copyright" -msgstr "Begrænset copyright" +msgstr "Begrænset ophavsret" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 Sikkerhedsopdateringer" +msgstr "Ubuntu 4.10 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 Opdateringer" +msgstr "Ubuntu 4.10 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 4.10 tilbageporteringer" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Debian 3.1 \"Sarge\" Sikkerhedsopdateringer" +msgstr "Debian 3.1 \"Sarge\" sikkerhedsopdateringer" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "" +msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "" +msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "DFSG-kompatibel software med ikke-frie afhængigheder" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "Ikke-DFSG-kompatibel software" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Henter fil %li af %li med ukendt hastighed" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "_Installer Opdateringer" +#~ msgstr "Almindelige opdateringer" -#, fuzzy #~ msgid "Cancel _Download" -#~ msgstr "Afbryd _Hentning" +#~ msgstr "Afbryd _hentning" #~ msgid "Some software no longer officially supported" #~ msgstr "Noget software er ikke længere officielt understøttet" @@ -1694,8 +1621,7 @@ msgstr "" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Opgraderer til Ubuntu 6.06 LTS" +#~ "Opgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1714,17 +1640,17 @@ msgstr "" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg " -#~ "alle opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør " -#~ "\"sudo apt-get dist-upgrade\" i en terminal for at opdatere dit system " -#~ "fuldstændigt." +#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg alle " +#~ "opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo " +#~ "apt-get dist-upgrade\" i en terminal for at opdatere dit system fuldstændigt." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende opdateringer vil blive sprunget over:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Tid tilbage(ca.): %li sekunder" @@ -1763,7 +1689,7 @@ msgstr "" #~ msgstr "Installationsmedie" #~ msgid "Software Preferences" -#~ msgstr "Softwareindstillinger" +#~ msgstr "Indstillinger" #~ msgid " " #~ msgstr " " @@ -1780,20 +1706,19 @@ msgstr "" #~ msgid "Add Channel" #~ msgstr "Tilføj kanal" -#, fuzzy #~ msgid "Edit Channel" -#~ msgstr "Rediger kanal" +#~ msgstr "Redigér kanal" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Tilføj kanal" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Tilføj kanal" +#~ msgstr[1] "_Tilføj kanaler" #~ msgid "_Custom" -#~ msgstr "_Brugerdefineret" +#~ msgstr "_Tilpasset" -#, fuzzy #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS Opdateringer" +#~ msgstr "Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Security Updates" #~ msgstr "Ubuntu 6.06 LTS Sikkerhedsopdateringer" @@ -1802,4 +1727,4 @@ msgstr "" #~ msgstr "Ubuntu 6.06 LTS Opdateringer" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/de.po b/po/de.po index 66f24935..6a022620 100644 --- a/po/de.po +++ b/po/de.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-27 10:58+0000\n" -"Last-Translator: Sebastian Heinlein \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:37+0000\n" +"Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,59 +56,54 @@ msgstr "Nach einem Monat" msgid "After %s days" msgstr "Nach %s Tagen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Aktualisierungen werden installiert" +msgstr "%s Aktualisierungen" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Haupt-Server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server für %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Nächstgelegener Server" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Benutzerdefinierte Server" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 #, fuzzy msgid "Software Channel" -msgstr "Software-Aktualisierungen" +msgstr "Software Kanal" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Aktiv" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Quellen" +msgstr "(Quelltext)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Quellen" +msgstr "Quelltext" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -121,7 +116,7 @@ msgstr "Fehler beim Importieren der gewählten Datei" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -"Die ausgewählte Datei ist möglicherweise keine GPG-Schlüsseldatei oder " +"Die gewählte Datei ist möglicherweise keine GPG-Schlüsseldatei oder ist " "beschädigt." #: ../SoftwareProperties/SoftwareProperties.py:992 @@ -129,13 +124,14 @@ msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"Der ausgewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " +"Der gewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -174,7 +170,6 @@ msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" @@ -188,9 +183,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " -"erstellen Sie hierfür einen Fehlerbericht. " +"erstellen Sie hierfür einen Fehlerbericht." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" @@ -219,7 +213,6 @@ msgstr "" "Ein erforderliches Paket konnte nicht installiert werden. Bitte erstellen " "Sie hierfür einen Fehlerbericht. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" @@ -240,9 +233,8 @@ msgstr "" "bevor Sie fortfahren." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Herunterladen ist fehlgeschlagen" +msgstr "CD hinzufügen ist fehlgeschlagen" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -253,6 +245,12 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Beim Hinzufügen der CD trat ein Fehler auf und die Systemerweiterung wird " +"nun abgebrochen. Bitte melden Sie dies als einen Fehler, wenn Sie eine eine " +"gültige Ubuntu CD verwenden.\n" +"\n" +"Die Fehlermeldung war:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -261,6 +259,7 @@ msgstr "Zwischenspeicher wird ausgelesen" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "" +"Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -269,6 +268,11 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Das Upgrade kann das Netzwerk benutzen um die letzten Updates zu prüfen und " +"Pakete zu holen die sich nicht auf der aktuellen CD befinden.\n" +"Falls sie eine schnelle oder billige Netzwerkverbindung haben sollten sie " +"hier 'Ja' antworten. Falls die Netzwerkbenutzung teuer ist sollten sie " +"'Nein' wählen." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -293,7 +297,6 @@ msgstr "" "wählen, werden alle Einträge von '%s' bis '%s' aktualisiert.\n" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Standardquellen generieren?" @@ -306,8 +309,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für '%" -"s' gefunden.\n" +"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für " +"'%s' gefunden.\n" "\n" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." @@ -367,17 +370,15 @@ msgstr "" "Plattenplatz auf %s frei. Leeren Sie Ihren Mülleimer und entfernen die " "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -385,15 +386,19 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Das Upgrade wird jetzt abgebrochen. Ihr System kann sich in einem " +"Das Upgrade wird jetzt abgebrochen. Ihr System könnte sich in einem " "unbenutzbaren Zustand befinden. Eine Wiederherstellung wurde durchgeführt " -"(dpkg --configure -a)." +"(dpkg --configure -a).\n" +"\n" +"Bitte erstellen Sie hierfür einen Fehlerbericht für das Paket \"update-" +"manager\" und fügen sie alle Dateien in /var/log/dist-upgrade dem " +"Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -402,11 +407,11 @@ msgstr "" "Internet-Verbindung oder Ihr Installationsmedium und versuchen Sie es noch " "einmal. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -419,25 +424,25 @@ msgstr "" "werden jetzt nur mehr von der Gemeinschaft unterstützt ('universe').\n" "\n" "Wenn sie 'universe' nicht aktiviert haben, werden diese Pakete im nächsten " -"Schritt zum Entfernen vorgeschlagen. " +"Schritt zum Entfernen vorgeschlagen." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "Ü_berspringen" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Entfernen" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Fehler beim Anwenden" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -445,29 +450,27 @@ msgstr "" "Ein Problem trat beim Aufräumen auf. Bitte lesen Sie die unten stehende " "Nachricht für nähere Informationen. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Aktualisierung vorbereiten" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -475,18 +478,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " -"erstellen Sie hierfür einen Fehlerbericht. " +"erstellen Sie hierfür einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Aktualisiere Quellen-Information" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -497,54 +500,52 @@ msgstr "" "Nachdem Ihre Paketinformationen aktualisiert wurden, ist das unbedingt " "erforderliche Paket '%s' nicht mehr auffindbar.\n" "Dies deutet auf einen gravierenden Fehler hin, bitte erstellen Sie hierfür " -"einen Fehlerbericht." +"einen Fehlerbericht für das Paket \"update-manager\" und fügen sie alle " +"Dateien in /var/log/dist-upgrade dem Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Nach Bestätigung fragen" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Aktualisiere" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Nach veralteter Software wird gesucht" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Bitte legen Sie das Medium »%s« in das Laufwerk »%s«" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Aktualisierung ist abgeschlossen" +msgstr "Dateien wurden vollständig heruntergeladen" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "Lade Datei %li von %li mit %s/s herunter" +msgstr "Datei %li von %li wir mit %s/s heruntergeladen" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Ungefähr %li Minute(n) verbleibend" +msgstr "Es verbleiben ungefähr %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "Lade Datei %li von %li" +msgstr "Datei %li von %li wird heruntergeladen" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Änderungen werden angewendet" @@ -559,10 +560,12 @@ 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 bugreport." msgstr "" +"Die Erweiterung Ihres Systems wird nun abgebrochen. Bitte Melden Sie dies " +"als einen Fehler des Pakets 'update-manager' und fügen Sie die Dateien in " +"dem Verzeichnis '/var/log/dist-upgrade/' Ihrer Fehlermeldung hinzu." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -572,24 +575,24 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Das 'diff'-Kommando konnte nicht gefunden werden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ein fataler Fehler ist aufgetreten" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bitte melden Sie dies als Bug und fügen Sie die Dateien /var/log/dist-" @@ -599,105 +602,104 @@ msgstr "" "gespeichert." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Insgesamt müssen %s heruntergeladen werden." +msgstr "" +"\n" +"\n" +"Insgesamt müssen %s heruntergeladen werden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"Die Aktualisierung kann mehrere Stunden dauern und zu keiner Zeit mehr " -"abgebrochen werden." +"Die Aktualisierung kann mehrere Stunden in Anspruch nehmen. Desweiteren kann " +"sie zu keinem späteren Zeitpunkt mehr abgebrochen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s wird entfernt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s wird installiert" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s wird aktualisiert" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Ungefähr %li Tag(e) %li Stunde(n) %li Minute(n) verbleibend" +msgstr "%li Tage %li Stunden %li Minuten" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Ungefähr %li Stunde(n) %li Minute(n) verbleibend" +msgstr "%li Stunden %li Minuten" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li Minuten" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li Sekunden" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -714,7 +716,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -828,7 +829,6 @@ msgstr "Freigabemitteilungen konnten nicht heruntergeladen werden" msgid "Please check your internet connection." msgstr "Bitte überprüfen Sie Ihre Internet-Verbindung." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Konnte die Anwendung zur Aktualisierung nicht starten" @@ -906,23 +906,20 @@ msgstr "" "Möglicherweise gibt es Probleme im Netzwerk oder am Server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"Die Liste mit Aktualisierungen ist momentan nicht verfügbar. Bitte versuchen " -"Sie es zu einem späteren Zeitpunkt erneut." +msgstr "Die Liste mit Aktualisierungen ist momentan nicht verfügbar." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" @@ -931,7 +928,7 @@ msgstr "" "Die Liste mit Aktualisierungen ist momentan nicht verfügbar. Bitte versuchen " "Sie es zu einem späteren Zeitpunkt erneut." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -940,104 +937,96 @@ msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" +msgstr "Wichtige Sicherheitsaktualisierungen" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Empfohlene Updates" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Aktualisierungen werden installiert" +msgstr "Vorgeschlagene Aktualisierungen" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 Backports" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Aktualisierung fortsetzen" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Aktualisierungen werden installiert" +msgstr "Andere Aktualisierungen" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Liste mit Änderungen wird heruntergeladen..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Prüfen" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Download-Größe: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sie können %s Aktualisierung installieren" msgstr[1] "Sie können %s Aktualisierungen installieren" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Bitte warten Sie, dieser Vorgang kann etwas Zeit in Anspruch nehmen." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Aktualisierung ist abgeschlossen" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Nach verfügbaren Aktualisierungen suchen" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Neue Version: %s (Größe: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Version %s: \n" +msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Größe: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Ihre Distribution wird nicht länger unterstützt" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1045,20 +1034,20 @@ msgid "" msgstr "" "Sie werden keine weiteren Aktualisierungen zur Behebung von " "Sicherheitslücken oder kritischen Fehlern erhalten. Aktualisieren Sie Ihr " -"System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." -"de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." +"System auf eine neuere Version von Ubuntu Linux. Auf " +"http://www.ubuntuusers.de oder http://www.ubuntu.com finden Sie weitere " +"Informationen hierzu." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1068,27 +1057,23 @@ msgstr "" "verwenden Sie zuerst die Synaptic Paketverwaltung oder führen Sie »sudo apt-" "get install -f« im Terminal aus, um dieses Problem zu beheben." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Keine" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1101,8 +1086,8 @@ msgstr "" "Sie müssen manuell auf Aktualisierungen prüfen\n" "\n" "Ihr System prüft nicht automatisch auf verfügbare Aktualisierungen. Sie " -"können dieses Verhalten über die Menüpunkte \"System\" -> \"Systemverwaltung" -"\" -> \"Software Eigenschaften\" ändern." +"können dieses Verhalten über die Menüpunkte \"System\" -> " +"\"Systemverwaltung\" -> \"Software Eigenschaften\" ändern." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1127,7 +1112,7 @@ msgstr "Änderungen" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Änderungen und Beschreibungen der Aktualisierung" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1201,16 +1186,15 @@ msgstr "Änderungen" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "Aktualisierungen" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internet-Aktualisierungen" +msgstr "Hintergrundaktualisierung" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" @@ -1231,6 +1215,13 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Um die Handhabung von Ubuntu zu erleichtern, nehmen Sie bitte am " +"Beliebheitswettbewerb teil. Falls Sie sich dafür entscheiden, wird jede " +"Woche eine Liste aller installierten Anwendungen und wie oft sie diese " +"benutzt haben an das Ubuntu-Projekt übertragen.\n" +"\n" +"Mit den Ergebnissen soll die Unterstzüng für beliebte Anwendungen verbessert " +"werden und Suchergebnisse besser sortiert werden." #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy @@ -1239,16 +1230,15 @@ msgstr "CD-Rom _hinzufügen" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" -msgstr "Echtheitsbestätigung" +msgstr "Echtheitheitsbestätigung" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "Heruntergeladene Paketdateien _löschen:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Herunterladen abgeschlossen" +msgstr "Herunterladen von:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1278,26 +1268,24 @@ msgstr "Die Vorgabeschlüssel Ihrer Distribution wiederherstellen" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Software-Eigenschaften" +msgstr "Software-Quellen" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Quellen" +msgstr "Quelltext" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistik" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Statistische Informationen übermitteln" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Drittanbieter" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" @@ -1352,7 +1340,7 @@ msgstr "Typ:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 msgid "URI:" -msgstr "URI:" +msgstr "Adresse:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 #, fuzzy @@ -1379,21 +1367,19 @@ msgid "" "Source" msgstr "" "Binär\n" -"Quellcode" +"Quellen" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Quellen" +msgstr "Quelle bearbeiten" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "CD wird eingelesen" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Quellen" +msgstr "Quelle _hinzufügen" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1456,257 +1442,200 @@ msgid "The window size" msgstr "Die Fenstergröße" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Software-Kanäle und Aktualisierungen konfigurieren" +msgstr "" +"Software-Kanäle und Einstellungen für die automatische Aktualisierung " +"festlegen" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 Aktualisierungen" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Von der Gemeinschaft betreut (Universe)" +msgstr "Von der Ubuntu-Gemeinde betreut" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Proprietäre Gerätetreiber" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Contributed Software" +msgstr "Eingeschränkte Software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CD-ROM mit Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Von der Gemeinschaft betreut (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Von der Gemeinschaft betreut (Universe)" +msgstr "Von der Gemeinschaft betreut (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Von der Gemeinschaft betreut (Universe)" +msgstr "Von der Ubuntu-Gemeinde betreute Open Source-Software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Unfrei (Multiverse)" +msgstr "Proprietäre Treiber" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Proprietäre Gerätetreiber " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Unfrei (Multiverse)" +msgstr "Eingeschränkte Software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Software mit US-Exportbeschränkungen" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "CD-ROM mit Ubuntu 6.06 LTS »Dapper Drake«" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Zurückportierte Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "CD-ROM mit Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" +msgstr "CD-ROM mit Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offiziell unterstützt" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" +msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 Aktualisierungen" +msgstr "Ubuntu 5.04 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "Von der Gemeinschaft betreut (Universe)" +msgstr "Von der Gemeinschaft verwaltet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Unfrei (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "CD-ROM mit Ubuntu 4.10 »Warty Warthog«" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "Urheberrechtlich eingeschränkt" +msgstr "Eingeschränktes Copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 Aktualisierungen" +msgstr "Ubuntu 4.10 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Urheberrechtlich oder gesetzlich eingeschränkte Software" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "" #~ "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" @@ -1727,20 +1656,16 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Your system has already been upgraded." #~ msgstr "Ihr System wurde bereits aktualisiert." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Auf Ubuntu 6.06 LTS aktualisieren" +#~ "Auf Ubuntu 6.10 aktualisieren" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" +#~ msgstr "Wichtige Sicherheitsaktualisierungen von Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Aus die neueste Version von Ubuntu aktualisieren" +#~ msgstr "Aktualisierungen von Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Nicht alle verfügbaren Aktualisierungen können installiert werden" @@ -1761,8 +1686,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Einige Aktualisierungen erfordern das Entfernen von anderen Anwendungen. " #~ "Verwenden Sie die Funktion »Aktualisierungen vormerken« in der Synaptic " @@ -1772,6 +1697,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Die folgenden Aktualisierungen werden ausgelassen:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefähr %li Sekunden verbleibend" @@ -1780,8 +1706,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür " -#~ "einen Fehlerbericht." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür einen " +#~ "Fehlerbericht." #~ msgid "Upgrading Ubuntu" #~ msgstr "Ubuntu aktualisieren" @@ -1800,8 +1726,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder " -#~ "'Synaptic'." +#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder 'Synaptic'." #~ msgid "Channels" #~ msgstr "Kanäle" @@ -1830,9 +1755,10 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Edit Channel" #~ msgstr "Kanal bearbeiten" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "Kanal _hinzufügen" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "Kanal _hinzufügen" +#~ msgstr[1] "Kanäle _hinzufügen" #~ msgid "_Custom" #~ msgstr "_Benutzerdefiniert" @@ -1851,12 +1777,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %" -#~ "s an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen " -#~ "Sie temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %s " +#~ "an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen Sie " +#~ "temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." #~ msgid "%s remaining" #~ msgstr "%s verbleiben" @@ -1865,27 +1791,27 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Keinen gültigen Eintrag gefunden" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Beim Lesen Ihrer Kanalliste konnte kein gültiger Eintrag für die " #~ "Aktualisierung gefunden werden.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Die Aktualisierung wird jetzt abgebrochen. Ihr System könnte in einem " #~ "unbenutzbaren Zustand sein. Ein Wiederherstellungsversuch wird nun " #~ "unternommen (dpkg --configure -a)." #~ msgid "" -#~ "Please report this as a bug and include the files '/var/log/dist-upgrade." -#~ "log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " +#~ "Please report this as a bug and include the files '/var/log/dist-" +#~ "upgrade.log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " #~ "aborts now. " #~ msgstr "" -#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien " -#~ "» »/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " +#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien » " +#~ "»/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " #~ "Bericht bei. Die Aktualisierung wird jetzt abgebrochen. " #~ msgid "" @@ -1930,14 +1856,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Änderungen werden heruntergeladen\n" +#~ "Änderungen werden " +#~ "heruntergeladen\n" #~ "\n" #~ "Die Änderungen müssen vom zentralen Server abgerufen werden" #~ msgid "Show available updates and choose which to install" -#~ msgstr "" -#~ "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" +#~ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" #, fuzzy #~ msgid "Error fetching the packages" @@ -1964,14 +1889,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " -#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " -#~ "werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " +#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." #~ msgid "Repository" #~ msgstr "Repository" @@ -2000,12 +1924,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen " -#~ "Schlüsselbund. Stellen Sie sicher, dass der Schlüssel über eine sichere " -#~ "Verbindung bezogen wurde und dass der Besitzer vertrauenswürdig ist. " +#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen Schlüsselbund. " +#~ "Stellen Sie sicher, dass der Schlüssel über eine sichere Verbindung bezogen " +#~ "wurde und dass der Besitzer vertrauenswürdig ist. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "_Temporäre Paketdateien automatisch löschen" @@ -2027,12 +1951,11 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution " -#~ "ausgeliefert wurden. Vom Benutzer installierte Schlüssel werden dadurch " -#~ "nicht geändert." +#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution ausgeliefert " +#~ "wurden. Vom Benutzer installierte Schlüssel werden dadurch nicht geändert." #~ msgid "Set _maximum size for the package cache" #~ msgstr "_Begrenzen der Größe des Paketzwischenspeichers" @@ -2057,8 +1980,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ "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." @@ -2066,13 +1989,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete " -#~ "weitere Aktionen, wie das Installieren oder Entfernen von Paketen, " -#~ "notwendig sind. Verwenden Sie bitte die »Intelligente Aktualisierung« von " -#~ "Synaptic oder »apt-get dist-upgrade« zur Behebung des Problems." +#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete weitere " +#~ "Aktionen, wie das Installieren oder Entfernen von Paketen, notwendig sind. " +#~ "Verwenden Sie bitte die »Intelligente Aktualisierung« von Synaptic oder »apt-" +#~ "get dist-upgrade« zur Behebung des Problems." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2083,8 +2005,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Die Aktualisierungen werden ausgeführt." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2097,20 +2019,20 @@ msgstr "Nicht DFSG-kompatible Software" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Verwenden Sie bitte eine aktuellere Version von Ubuntu-Linux. Für die " #~ "momentan laufende Version werden keine Sicherheits- und andere kritische " -#~ "Aktualisierungen mehr bereitgestellt. Informationen zur " -#~ "Systemaktualisierung finden Sie unter http://www.ubuntulinux.org." +#~ "Aktualisierungen mehr bereitgestellt. Informationen zur Systemaktualisierung " +#~ "finden Sie unter http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Eine neue Version von Ubuntu ist verfügbar!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Eine neue Version mit dem Codenamen »%s« ist verfügbar. Informationen zur " #~ "Aktualisierung des Systems erhalten Sie unter http://www.ubuntulinux.org." @@ -2120,8 +2042,8 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2130,8 +2052,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Initialisierung und Abrufen der Aktualisierungsliste..." #~ msgid "You need to be root to run this program" -#~ msgstr "" -#~ "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." +#~ msgstr "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." #~ msgid "Edit software sources and settings" #~ msgstr "Bearbeiten der Software-Quellen und Einstellungen" @@ -2154,17 +2075,15 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " +#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " -#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " -#~ "werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " +#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." \ No newline at end of file diff --git a/po/el.po b/po/el.po index 61ecee4d..e5980add 100644 --- a/po/el.po +++ b/po/el.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-25 15:39+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" @@ -54,38 +54,35 @@ msgstr "Μετά από ένα μήνα" msgid "After %s days" msgstr "Μετά από %s ημέρες" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Εγκατάσταση ενημερώσεων" +msgstr "%s ενημερώσεις" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Κύριος εξυπηρετητής" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Εξυπηρετητής για %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Κοντινότερος εξυπηρετητής" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Προσαρμοσμένοι εξυπηρετητές" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 @@ -99,11 +96,11 @@ msgstr "Ενεργό" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Πηγαίος κώδικας)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Πηγαίος κώδικας" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -117,26 +114,27 @@ msgstr "Σφάλμα εισαγωγής επιλεγμένου αρχείου" msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Το επιλεγμένο αρχείο μπορεί να μην είναι ένα αρχείο κλειδιού GPG ή μπορεί να " -"είναι κατεστραμμένο." +"είναι κατεστραμμένο" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" -msgstr "Σφάλμα απομάκρυνσης του κλειδιού" +msgstr "Σφάλμα απομάκρυνσης κλειδιού" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"Το επιλεγμένο κλειδί δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε το ως " -"σφάλμα." +"Το κλειδί που επιλέξατε δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε αυτό " +"ως σφάλμα." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Σφάλμα ελέγχου του CD\n" +"Σφάλμα σάρωσης του CD\n" "\n" "%s" @@ -169,23 +167,22 @@ msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετ msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Συνέβηκε ένα ανεπίλυτο πρόβλημα κατά τον υπολογισμό της αναβάθμισης. " -"Παρακαλώ αναφέρετε το ως σφάλμα. " +"Συνέβηκε ένα ανεπίλυτο πρόβλημα κατά τον υπολογισμό της αναβάθμισης.\n" +"\n" +"Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " +"στην αναφορά σφάλματος τα αρχεία στο /var/log/dist-upgrade/." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" @@ -213,13 +210,11 @@ msgstr "" "Δεν ήταν δυνατή η αναβάθμιση του απαιτούμενου πακέτου. Παρακαλώ αναφέρετε το " "ως σφάλμα. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -229,14 +224,14 @@ msgid "" msgstr "" "Το σύστημα σας δεν περιέχει κάποιο από τα πακέτα ubuntu-desktop, kubuntu-" "desktop or edubuntu-desktop, και έτσι δεν είναι δυνατός ο εντοπισμός της " -"έκδοσης του Ubuntu σας..\n" -"Εγκαταστήστε ένα από αυτά τα πακέτα πρώτα μέσω synaptic ή apt-get πριν να " +"έκδοσης του Ubuntu σας.\n" +"\n" +" Εγκαταστήστε ένα από αυτά τα πακέτα πρώτα μέσω synaptic ή apt-get πριν να " "συνεχίσετε." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Αποτυχία λήψης" +msgstr "Αποτυχία προσθήκης του CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -247,6 +242,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Υπήρξε σφάλμα κατά την προσθήκη του CD και η αναβάθμιση θα τερματιστεί. " +"Παρακαλώ αναφέρετε το ως σφάλμα αν αυτό είναι ένα έγκυρο Ubuntu CD.\n" +"\n" +"Το μήνυμα σφάλματος ήταν:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -254,7 +254,7 @@ msgstr "Ανάγνωση λανθάνουσας μνήμης" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Να γίνει λήψη δεδομένων από το δίκτυο για την αναβάθμιση;" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -263,6 +263,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Η αναβάθμιση μπορεί να χρησιμοποιεί το δίκτυο για να ελέγχει για τις πιο " +"πρόσφατες ενημερώσεις, και για να λαμβάνει πακέτα που δεν είναι στο CD.\n" +"Αν διαθέτετε μια γρήγορη ή φθηνή πρόσβαση στο δίκτυο απαντήστε 'Ναι' εδώ. " +"Αν η πρόσβαση είναι ακριβή πατήστε 'Όχι'" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -288,7 +292,6 @@ msgstr "" "εδώ 'Ναι' θα ενημερωθούν όλες οι '%s' καταχωρίσεις σε '%s'.\n" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" @@ -301,8 +304,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το '%" -"s'.\n" +"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το " +"'%s'.\n" "\n" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." @@ -361,17 +364,15 @@ msgstr "" "στο %s. Αδειάστε τα απορρίμματα σας και απομακρύνετε τα προσωρινά πακέτα " "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -380,13 +381,17 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Το σύστημα σας μπορεί να γίνει ασταθές. " -"Εκτελείται μια διεργασία ανάκτησης (dpkg --configure -a)." +"Εκτελείται μια διεργασία ανάκτησης (dpkg --configure -a).\n" +"\n" +"Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και " +"συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " +"σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,12 +399,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Η υποστήριξη για ορισμένες εφαρμογές τερματίστηκε" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -407,29 +411,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Αυτά τα εγκατεστημένα πακέτα δεν υποστηρίζονται πια επίσημα, και τώρα " -"ανήκουν στο community-supported ('universe').\n" +"Αυτά τα εγκατεστημένα πακέτα δεν υποστηρίζονται πια επίσημα από την " +"Canonical Ltd, αλλά μπορείτε να λάβετε υποστήριξη από τη κοινότητα.\n" "\n" "Αν δεν έχετε ενεργοποιημένο το 'universe' , θα γίνει πρόταση για απομάκρυνση " -"αυτών των πακέτων στο επόμενο βήμα. " +"αυτών των πακέτων στο επόμενο βήμα." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "Παράκα_μψη αυτου του βήματος" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Απομάκρυνση" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -437,29 +441,27 @@ msgstr "" "Δημιουργήθηκαν ορισμένα προβλήματα κατά την εκκαθάριση. Παρακαλώ δείτε το " "παρακάτω μήνυμα για περισσότερες πληροφορίες. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Λήψη backport του '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Προετοιμασία της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -467,18 +469,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Συνέβηκε ένα ανεπίλυτο πρόβλημα κατά τον υπολογισμό της αναβάθμισης. " -"Παρακαλώ αναφέρετε το ως σφάλμα. " +"Παρακαλώ αναφέρετε το ως σφάλμα." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών repository" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -488,54 +490,53 @@ msgid "" msgstr "" "Μετά την ενημέρωση των πληροφοριών πακέτων, δεν μπορεί να βρεθεί το " "απαραίτητο πακέτο '%s'.\n" -" Αυτό σημαίνει ότι πρόκειται για σημαντικό σφάλμα, παρακαλώ αναφέρετε το." +"Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και " +"συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " +"σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Ερώτηση για επιβεβαίωση" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Παρακαλώ εισάγετε τον δίσκο '%s' στον οδηγό '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Η ενημέρωση ολοκληρώθηκε" +msgstr "Η λήψη ολοκληρώθηκε" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Απομένουν περίπου %li λεπτά" +msgstr "Απομένουν περίπου %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Λήψη αρχείου %li από %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Γίνεται εφαρμογή αλλαγών" @@ -550,77 +551,80 @@ 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 bugreport." msgstr "" +"Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο " +"'update-manager' και συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ " +"στην αναφορά σφάλματος." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Αντικατάσταση αρχείου ρύθμισης\n" +"Αντικατάσταση προσαρμοσμένου αρχείου ρύθμισης\n" "'%s';" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Η εντολή 'diff' δεν βρέθηκε" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Προέκυψε μοιραίο σφάλμα" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα και επισυνάψτε τα αρχεία /var/log/dist-" -"upgrade.log και /var/log/dist-upgrade-apt.log στην αναφορά σας. Η αναβάθμιση " -"τώρα θα\n" -"\"τερματιστεί. Το αρχικό αρχείο sources.list αποθηκεύτηκε στο /etc/apt/" -"sources.list.distUpgrade." +"upgrade/main.log και /var/log/dist-upgrade/apt.log στην αναφορά σας. Η " +"αναβάθμιση τώρα θα τερματιστεί. \n" +"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s πακέτο πρόκειται να απομακρυνθεί." -msgstr[1] "%s πακέτα πρόκειται να απομακρυνθούν." +msgstr[0] "%d πακέτο πρόκειται να απομακρυνθεί." +msgstr[1] "%d πακέτα πρόκειται να απομακρυνθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s νέο πακέτο πρόκειται να εγκατασταθεί." -msgstr[1] "%s νέο πακέτα πρόκειται να εγκατασταθούν." +msgstr[0] "%d νέο πακέτο πρόκειται να εγκατασταθεί." +msgstr[1] "%d νέα πακέτα πρόκειται να εγκατασταθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s πακέτο πρόκειται να αναβαθμιστεί." -msgstr[1] "%s πακέτα πρόκειται να αναβαθμιστούν." +msgstr[0] "%d πακέτο πρόκειται να αναβαθμιστεί." +msgstr[1] "%d πακέτα πρόκειται να αναβαθμιστούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Θα πρέπει να μεταφορτώσετε συνολικά %s." +msgstr "" +"\n" +"\n" +"Θα πρέπει να κάνετε συνολική λήψη %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -629,66 +633,66 @@ msgstr "" "Η αναβάθμιση μπορεί να διαρκέσει αρκετές ώρες και δεν είναι δυνατή η ακύρωση " "της αργότερα." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Δεν υπάρχουν διαθέσιμες αναβαθμίσεις για το σύστημα σας. Η αναβάθμιση θα " +"ακυρωθεί." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Απομάκρυνση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Εγκατάσταση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Αναβάθμιση %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Απομένουν περίπου %li ημέρες %li ώρες και %li λεπτά" +msgstr "Απομένουν περίπου %li μέρες %li ώρες και %li λεπτά" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Απομένουν περίπου %li ώρες και %li λεπτά" +msgstr "%li ώρες και %li λεπτά" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li λεπτά" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li δευτερόλεπτα" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -705,7 +709,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -734,7 +737,7 @@ msgstr "Έναρξη της αναβάθμισης;" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Γίνεται αναβάθμιση του Ubuntu στην έκδοση 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -819,7 +822,6 @@ msgstr "Αδυναμία λήψης των σημειώσεων έκδοσης" msgid "Please check your internet connection." msgstr "Παρακαλώ ελέγξτε τη σύνδεση σας με το διαδίκτυο." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Αδυναμία εκτέλεσης του εργαλείου αναβαθμίσεων" @@ -837,7 +839,8 @@ msgstr "Λήψη του εργαλείου αναβάθμισης" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" +msgstr "" +"Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -853,7 +856,8 @@ msgstr "Αποτυχία λήψης" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " +msgstr "" +"Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -893,22 +897,20 @@ msgstr "" "εξυπηρετητή. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Λήψη αρχείου %li από %li με %s/s" +msgstr "Λήψη αρχείου %(current)li από %(total)li με %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Λήψη αρχείου %li από %li με %s/s" +msgstr "Λήψη αρχείου %(current)li από %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." +msgstr "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" @@ -916,7 +918,7 @@ msgid "" msgstr "" "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -925,104 +927,92 @@ msgstr "" "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" +msgstr "Σημαντικές ενημερώσεις ασφαλείας" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Συνιστώμενες ενημερώσεις" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Εγκατάσταση ενημερώσεων" +msgstr "Προτεινόμενες ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backports" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Συνέχεια αναβάθμισης" +msgstr "Αναβαθμίσεις διανομής" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Εγκατάσταση ενημερώσεων" +msgstr "Άλλες ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" -msgstr "Έκδοση%s: \n" +msgstr "Έκδοση %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Λήψη της λίστας των αλλαγών..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "Α_ποεπιλογή όλων" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "Έλε_γχος" +msgstr "Έλε_γχος όλων" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Μέγεθος λήψης: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Μπορείτε να εγκαταστήσετε %s ενημέρωση" msgstr[1] "Μπορείτε να εγκαταστήσετε %s ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Παρακαλώ περιμένετε, αυτό μπορεί να διαρκέσει λίγο χρόνο." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Η ενημέρωση ολοκληρώθηκε" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Έλεγχος για διαθέσιμες ενημερώσεις" +msgstr "Έλεγχος για ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Νέα έκδοση: %s (Μέγεθος: %s)" +msgstr "Από έκδοση: %(old_version)s σε %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Έκδοση%s: \n" +msgstr "Έκδοση %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Μέγεθος: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Η διανομή σας δεν υποστηρίζεται πια" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1033,17 +1023,16 @@ msgstr "" "Ubuntu Linux. Δείτε το http://www.ubuntu.com για περισσότερες πληροφορίες " "για την αναβάθμιση." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1053,30 +1042,25 @@ msgstr "" "το διαχειριστή πακέτων \"Synaptic\" η εκτελέστε την εντολή \"sudo apt-get " "install -f\" σε ένα τερματικό για να διορθώσετε το πρόβλημα πρώτα." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Καμία" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1086,25 +1070,21 @@ msgstr "" "Θα πρέπει να κάνετε έλεγχο για ενημερώσεις χειροκίνητα\n" "\n" "Το σύστημα σας δεν υποστηρίζει αυτόματο έλεγχο ενημερώσεων. Μπορείτε να " -"ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> \"Διαχείριση " -"συστήματος\" -> \"Ιδιότητες λογισμικού\"." +"ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού Πηγές λογισμικού και " +"στην καρτέλα Ενημερώσεις διαδικτύου." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Διατηρήστε το σύστημα σας ενημερωμένο" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Σφάλμα ελέγχου του CD\n" -"\n" -"%s" +"Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Έναρξη της αναβάθμισης;" +msgstr "Εκκίνηση του update manager" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1112,7 +1092,7 @@ msgstr "Αλλαγές" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Αλλαγές και περιγραφή της ενημέρωσης" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1137,6 +1117,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Εκτελέστε μια αναβάθμιση διανομής για να εγκαταστήσετε όσες το δυνατόν " +"περισσότερες ενημερώσεις.\n" +"\n" +"Αυτό μπορεί οφείλεται σε μη ολοκληρωμένη αναβάθμιση, σε ανεπίσημα πακέτα " +"λογισμικού ή αν χρησιμοποιείτε μια έκδοση υπό ανάπτυξη." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1167,9 +1152,8 @@ msgid "_Check" msgstr "Έλε_γχος" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Συνέχεια αναβάθμισης" +msgstr "Αναβάθμιση _διανομής" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1180,31 +1164,28 @@ msgid "_Install Updates" msgstr "Ε_γκατάσταση ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Αλλαγές" +msgstr "αλλαγές" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "ενημερώσεις" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Αναβαθμίσεις διαδικτύου" +msgstr "Αυτόματες ενημερώσεις" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Αναβαθμίσεις διαδικτύου" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Αναβαθμίσεις διαδικτύου" +msgstr "Διαδίκτυο" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1216,11 +1197,18 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Για την βελτίωση της χρήσης του Ubuntu, σας παρακαλούμε να πάρετε μέρος " +"στο διαγωνισμό για τις πιο δημοφιλείς εφαρμογές. Αν θέλετε, μια λίστα των " +"εγκατεστημένων σας εφαρμογών θα στέλνεται ανώνυμα στο Ubuntu σε εβδομαδιαία " +"βάση.\n" +"\n" +"Τα αποτελέσματα θα χρησιμοποιούνται για την βελτίωση της υποστήριξης για τις " +"πιο δημοφιλείς εφαρμογές, και για την κατάταξη των εφαρμογών στα " +"αποτελέσματα αναζήτησης." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Προσθήκη _Cdrom" +msgstr "Προσθήκη Cdrom" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1231,9 +1219,8 @@ msgid "D_elete downloaded software files:" msgstr "Δια_γραφή αρχείων ληφθέντων πακέτων" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Η λήψη ολοκληρώθηκε" +msgstr "Λήψη από:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1261,34 +1248,32 @@ msgstr "Επαναφορά των προεπιλεγμένων κλειδιών #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Ιδιότητες λογισμικού" +msgstr "Πηγές λογισμικού" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Πηγαίος κώδικας" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Στατιστικά" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Υποβολή στατιστικών πληροφοριών" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Τρίτων" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "Αυτόματος έλεγ_χος για ενημερώσεις κάθε:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "Λή_ψη ενημερώσεων στο παρασκήνιο χωρίς να εγκατασταθούν" +msgstr "Αυτόματη λή_ψη ενημερώσεων χωρίς να εγκατασταθούν" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1337,7 +1322,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1345,7 +1329,7 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Εισάγετε την πλήρη γραμμή APT του καναλιού που θέλετε να " +"Εισάγετε την πλήρη γραμμή APT του repository που θέλετε να " "προσθέσετε\n" "\n" "Η γραμμή APT περιέχει τον τύπο, τοποθεσία και το περιεχόμενο ενός καναλιού, " @@ -1365,7 +1349,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Επεξεργασία πηγής" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1373,7 +1357,7 @@ msgstr "Σάρωση CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "Προσ_θήκη πηγής" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1385,7 +1369,7 @@ msgstr "Προβολή και εγκατάσταση διαθέσιμων ενη #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "Διαχείριση αναβαθμίσεων" +msgstr "Διαχείριση ενημερώσεων" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1435,262 +1419,201 @@ msgid "The window size" msgstr "Το μέγεθος του παραθύρου" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Ρύθμιση των καναλιών λογισμικού για ενημερώσεις" +msgstr "Ρύθμιση των πηγών για λογισμικό και ενημερώσεις" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Αναβαθμίσεις Ubuntu 5.10" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Community maintained (Universe)" +msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Οδηγοί με κλειστό κώδικα για συσκευές" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Όχι-ελεύθερα (Multiverse)" +msgstr "Λογισμικό με περιορισμούς" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cdrom με το Ubuntu 6.10 'Edgy Eft" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 TLS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Community maintained (Universe)" +msgstr "Υποστηριζόμενα από την κοινότητα (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Community maintained (Universe)" +msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Όχι-ελεύθερα (Multiverse)" +msgstr "Όχι-ελεύθεροι οδηγοί" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Οδηγοί με κλειστό κώδικα για συσκευές " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Cdrom με Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Backported ενημερώσεις" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Cdrom με Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "Με επίσημη υποστήριξη" +msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Αναβαθμίσεις Ubuntu 5.10" +msgstr "Ενημερώσεις Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cdrom με το Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Μερικά πακέτα λογισμικού δεν υποστηρίζονται πια επίσημα" +msgstr "Δεν υποστηρίζονται πια επίσημα" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Περιορισμένα πνευματικά δικαιώματα" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" +msgstr "Ενημερώσεις ασφαλείας Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Αναβαθμίσεις Ubuntu 5.10" +msgstr "Ενημερώσεις Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες Εξαρτήσεις" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "Εγκατάσταση ενημερώσεων" +#~ msgstr "Κανονικές ενημερώσεις" #~ msgid "Cancel _Download" #~ msgstr "Ακύρωση _λήψης αρχείων" @@ -1704,20 +1627,16 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "Το σύστημα σας έχει ήδη αναβαθμιστεί." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Αναβάθμιση σε Ubuntu 6.06 LTS" +#~ "Αναβάθμιση σε Ubuntu 6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" +#~ msgstr "Σημαντικές αναβαθμίσεις ασφαλείας του Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Αναβάθμιση στη τελευταία έκδοση του Ubuntu" +#~ msgstr "Ενημερώσεις του Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Αδυναμία εγκατάστασης όλων των διαθέσιμων ενημερώσεων" @@ -1730,16 +1649,16 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "" #~ "Γίνεται ανάλυση του συστήματος σας\n" #~ "\n" -#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας " -#~ "και να παρέχουν νέες λειτουργίες." +#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " +#~ "να παρέχουν νέες λειτουργίες." #~ msgid "Oficially supported" #~ msgstr "Oficially supported" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Μερικές ενημερώσεις απαιτούν την απομάκρυνση επιπρόσθετου λογισμικού. " #~ "Χρησιμοποιήστε την λειτουργία \"Σημείωση όλων των αναβαθμίσεων\" από το " @@ -1749,6 +1668,7 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Οι παρακάτω ενημερώσεις θα παρακαμφθούν:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Απομένουν περίπου %li δευτερόλεπτα" @@ -1773,8 +1693,7 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το " -#~ "'Synaptic'." +#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το 'Synaptic'." #~ msgid "Channels" #~ msgstr "Κανάλια" @@ -1795,7 +1714,7 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Κανάλι" #~ msgid "Components" -#~ msgstr "Στοιχεία" +#~ msgstr "Συστατικά" #~ msgid "Add Channel" #~ msgstr "Προσθήκη Καναλιού" @@ -1803,9 +1722,10 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "Edit Channel" #~ msgstr "Επεξεργασία καναλιού" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "Προσ_θήκη καναλιού" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "Προσ_θήκη καναλιού" +#~ msgstr[1] "Προσ_θήκη καναλιών" #~ msgid "_Custom" #~ msgstr "_Προσαρμοσμένο" @@ -1826,14 +1746,13 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Μη έγκυρες πληροφορίες πακέτου" #~ msgid "" -#~ "Failed to download the listof changes. Please check your internet " -#~ "connection." +#~ "Failed to download the listof changes. Please check your internet connection." #~ msgstr "" #~ "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας." #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Κατά τον έλεγχο των πληροφοριών του repository δεν βρέθηκαν έγκυρες " #~ "καταχωρίσεις αναβάθμισης.\n" @@ -1864,25 +1783,24 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Το αρχείο '%s' δεν περιέχει έγκυρα κανάλια λογισμικού." #~ msgid "" -#~ "The upgrade is finished now. A reboot is required to now, do you want to " -#~ "do this now?" +#~ "The upgrade is finished now. A reboot is required to now, do you want to do " +#~ "this now?" #~ msgstr "" #~ "Η αναβάθμιση ολοκληρώθηκε. Απαιτείται επανεκκίνηση, θέλετε να γίνει τώρα;" #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για " -#~ "τις ενημερώσεις\n" +#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για τις " +#~ "ενημερώσεις\n" #~ "\n" -#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για " -#~ "ενημερώσεις. Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού " -#~ "\"Σύστημα\" -> \"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." +#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για ενημερώσεις. " +#~ "Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> " +#~ "\"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." #~ msgid "" #~ "Downloading changes\n" @@ -1904,4 +1822,4 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Ubuntu 6.04 \"Dapper Drake\"" #~ msgid "Ubuntu 5.10 \"Breezy Badger\"" -#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" \ No newline at end of file diff --git a/po/en_AU.po b/po/en_AU.po index 01f6a86b..4813e497 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -1,16 +1,16 @@ # English (Australia) translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. -# FIRST AUTHOR , 2006. +# David Symons , 2006. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-26 21:06+0000\n" -"Last-Translator: David Symons \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-09-11 09:53+0000\n" +"Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,57 +55,53 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "_Install Updates" +msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Main server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server for %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Nearest server" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Custom servers" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Software Updates" +msgstr "Software Channel" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Active" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Source Code)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Source Code" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -124,20 +120,18 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Error scaning the CD\n" -"\n" -"%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" @@ -167,23 +161,18 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"An unresolvable problem occured while calculating the upgrade. Please report " -"this as a bug. " -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -211,13 +200,11 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -225,16 +212,10 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -"desktop package and it was not possible to detect which version of ubuntu " -"you are runing.\n" -" Please install one of the packages above first using synaptic or apt-get " -"before proceeding." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Failed to fetch" +msgstr "Failed to add the CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -245,6 +226,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"There was an error adding the CD, the upgrade will abort. If you are using a " +"valid Ubuntu CD please report this as a bug.\n" +"\n" +"The error message was:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -252,7 +238,7 @@ msgstr "Reading cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Fetch data from the network for the upgrade?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -261,6 +247,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"The upgrade can use the network to check for the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast and inexpensive network access you should answer 'Yes' " +"here. If networking is expensive for you choose 'No'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -285,7 +275,6 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generate default sources?" @@ -320,15 +309,11 @@ msgid "Third party sources disabled" msgstr "Third party sources disabled" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"Some third party entries in your souces.list where disabled. You can re-" -"enable them after the upgrade with the 'software-properties' tool or with " -"synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -357,17 +342,15 @@ msgstr "" "your Garbage Bin and remove temporary packages of former installations using " "'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -375,14 +358,17 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"The upgrade aborts now. Your system can be in an unusable state. A recovery " -"was run (dpkg --configure -a)." +"The upgrade will now abort. Your system could be in an unusable state. A " +"recovery was attempted (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bug report." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,12 +376,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -403,29 +388,24 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"These installed packages are no longer officially supported, and are now " -"only community-supported ('universe').\n" -"\n" -"If you don't have 'universe' enabled these packages will be suggested for " -"removal in the next step. " -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,48 +413,42 @@ msgstr "" "A problem occured during the clean-up. Please see the below message for more " "information. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Preparing the upgrade" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"An unresolvable problem occured while calculating the upgrade. Please report " -"this as a bug. " -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -482,56 +456,55 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"After your package information was updated the essential package '%s' can " -"not be found anymore.\n" -"This indicates a serious error, please report this as a bug." +"After your package information was updated the essential package '%s' could " +"no longer be found.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the bug " +"report." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "System upgrade is complete." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Please insert '%s' into the drive '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Update is complete" +msgstr "Fetching is complete" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "Downloading file %li of %li at %s/s" +msgstr "Fetching file %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "About %li minutes remaining" +msgstr "About %s remaining" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "Downloading file %li of %li" +msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -546,142 +519,139 @@ 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 bugreport." msgstr "" +"The upgrade has aborted. Please report this bug against the 'update-manager' " +"package and include the files in /var/log/dist-upgrade/ in the bugreport." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Replace configuration file\n" -"\n" -"'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Please report this as a bug and include the files /var/log/dist-upgrade.log " -"and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" -"\n" +"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 has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s package is going to be removed." -msgstr[1] "%s packages are going to be removed." +msgstr[0] "" +msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s new package is going to be installed." -msgstr[1] "%s new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s package is going to be upgraded." -msgstr[1] "%s packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "You have to download a total of %s." +msgstr "" +"\n" +"\n" +"You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"The upgrade can take several hours and cannot be canceled at any time later." +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time during the process." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "About %li days %li hours %li minutes remaining" +msgstr "%li days %li hours %li minutes" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "About %li hours %li minutes remaining" +msgstr "%li hours %li minutes" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutes" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li seconds" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -698,7 +668,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -741,9 +710,8 @@ msgid "Difference between the files" msgstr "Difference between the files" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Downloading and installing the upgrades" +msgstr "Fetching and installing the upgrades" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -762,9 +730,8 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Resume Upgrade" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -791,9 +758,8 @@ msgid "_Resume Upgrade" msgstr "_Resume Upgrade" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Resume Upgrade" +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -811,7 +777,6 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your internet connection." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -863,13 +828,10 @@ msgid "Verfication failed" msgstr "Verfication failed" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Verifying the upgrade failed. There may be a problem with the network or " -"with the server. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -884,134 +846,116 @@ msgstr "" "or with the server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Downloading file %li of %li with %s/s" +msgstr "" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Downloading file %li of %li with %s/s" +msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "The list of changes is not available yet. Please try again later." +msgstr "The list of changes is not available" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "The list of changes is not available yet. Please try again later." +msgstr "" -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Failed to download the list of changes. Please check your Internet " -"connection." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 Security Updates" +msgstr "Important security updates" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Recommended updates" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "_Install Updates" +msgstr "Proposed updates" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Resume Upgrade" +msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "_Install Updates" +msgstr "Other updates" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "Downloading the list of changes..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Check" +msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Download size: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "You can install %s update" msgstr[1] "You can install %s updates" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Please wait, this can take some time." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Update is complete" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "_Install Updates" +msgstr "" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "New version: %s (Size: %s)" +msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Version %s: \n" +msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Size: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Your distribution is not supported anymore" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1021,17 +965,16 @@ msgstr "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1041,58 +984,43 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "None" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"You must check for updates manually\n" -"\n" -"\n" -"Your system does not check for updates automatically. You can configure this " -"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Keep your system up-to-date" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Error scaning the CD\n" -"\n" -"%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Start the upgrade?" +msgstr "" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1100,7 +1028,7 @@ msgstr "Changes" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Changes and description of the update" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1155,9 +1083,8 @@ msgid "_Check" msgstr "_Check" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Resume Upgrade" +msgstr "" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1168,31 +1095,28 @@ msgid "_Install Updates" msgstr "_Install Updates" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Changes" +msgstr "changes" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "updates" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internet updates" +msgstr "Automatic updates" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CD-ROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Internet updates" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internet updates" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1204,11 +1128,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"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 " +"often it is used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Add _Cdrom" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1219,9 +1149,8 @@ msgid "D_elete downloaded software files:" msgstr "D_elete downloaded software files:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Download is complete" +msgstr "Download from:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1249,34 +1178,32 @@ msgstr "Restore the default keys of your distribution" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Software Properties" +msgstr "Software Sources" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Source code" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistics" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Submit statistical information" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Third Party" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Check for updates automatically:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Download updates in the background, but do not install them" +msgstr "_Download updates automatically, but do not install them" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1287,7 +1214,6 @@ msgid "_Install security updates without confirmation" msgstr "_Install security updates without confirmation" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1296,14 +1222,6 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"The channel information is out-of-date\n" -"\n" -"\n" -"You have to reload the channel information to install software and updates " -"from newly added or changed channels. \n" -"\n" -"\n" -"You need a working internet connection to continue." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1326,7 +1244,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1334,11 +1251,6 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Enter the complete APT line of the channel that you want to add\n" -"\n" -"The APT line includes the type, location and components of a channel, for " -"example \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1354,7 +1266,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Edit Source" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1362,7 +1274,7 @@ msgstr "Scanning CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "_Add Source" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1389,15 +1301,11 @@ msgid "Check for new distribution releases" msgstr "Check for new distribution releases" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"If automatic checking for updates is disabled, you have to reload the " -"channel list manually. This option allows to hide the reminder shown in this " -"case." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1409,347 +1317,415 @@ msgstr "Show details of an update" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Stores the size of the update-manager dialog" +msgstr "Stores the size of the update-manager dialogue" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Stores the state of the expander that contains the list of changes and the " -"description" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" msgstr "The window size" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Configure software channels and internet updates" +msgstr "Configure the sources for installable software and updates" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 Updates" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Community maintained (Universe)" +msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Proprietary drivers for devices" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Non-free (Multiverse)" +msgstr "Restricted software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CD-ROM with Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Community maintained (Universe)" +msgstr "Community maintained (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Community maintained (Universe)" +msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Non-free (Multiverse)" +msgstr "Non-free drivers" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Proprietary drivers for devices " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Non-free (Multiverse)" +msgstr "Restricted software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "CD-ROM with Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Backported updates" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "CD-ROM with Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 Security Updates" +msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 Updates" +msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "CD-ROM with Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Some software no longer officially supported" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 Security Updates" +msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 Updates" +msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" -#~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "Downloading file %li of %li with unknown speed" +#, python-format +#~ msgid "" +#~ "Error scaning the CD\n" +#~ "\n" +#~ "%s" +#~ msgstr "" +#~ "Error scaning the CD\n" +#~ "\n" +#~ "%s" -#, fuzzy -#~ msgid "Normal updates" -#~ msgstr "_Install Updates" +#~ msgid "" +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " +#~ msgstr "" +#~ "An unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " -#~ msgid "Cancel _Download" -#~ msgstr "Cancel _Download" +#~ msgid "" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." +#~ msgstr "" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." + +#~ msgid "" +#~ "Some third party entries in your souces.list where disabled. You can re-" +#~ "enable them after the upgrade with the 'software-properties' tool or with " +#~ "synaptic." +#~ msgstr "" +#~ "Some third party entries in your souces.list where disabled. You can re-" +#~ "enable them after the upgrade with the 'software-properties' tool or with " +#~ "synaptic." + +#~ msgid "" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Some software no longer officially supported" +#~ msgid "" +#~ "These installed packages are no longer officially supported, and are now " +#~ "only community-supported ('universe').\n" +#~ "\n" +#~ "If you don't have 'universe' enabled these packages will be suggested for " +#~ "removal in the next step. " +#~ msgstr "" +#~ "These installed packages are no longer officially supported, and are now " +#~ "only community-supported ('universe').\n" +#~ "\n" +#~ "If you don't have 'universe' enabled these packages will be suggested for " +#~ "removal in the next step. " + +#~ msgid "Restoring originale system state" +#~ msgstr "Restoring original system state" + +#, python-format +#~ msgid "" +#~ "After your package information was updated the essential package '%s' can " +#~ "not be found anymore.\n" +#~ "This indicates a serious error, please report this as a bug." +#~ msgstr "" +#~ "After your package information was updated the essential package '%s' can " +#~ "not be found anymore.\n" +#~ "This indicates a serious error, please report this as a bug." + +#, python-format +#~ msgid "About %li days %li hours %li minutes remaining" +#~ msgstr "About %li days %li hours %li minutes remaining" + +#, python-format +#~ msgid "About %li hours %li minutes remaining" +#~ msgstr "About %li hours %li minutes remaining" + +#, python-format +#~ msgid "About %li minutes remaining" +#~ msgstr "About %li minutes remaining" + +#, python-format +#~ msgid "About %li seconds remaining" +#~ msgstr "About %li seconds remaining" + +#~ msgid "Download is complete" +#~ msgstr "Download is complete" + +#, python-format +#~ msgid "Downloading file %li of %li at %s/s" +#~ msgstr "Downloading file %li of %li at %s/s" + +#, python-format +#~ msgid "Downloading file %li of %li" +#~ msgstr "Downloading file %li of %li" + +#~ msgid "The upgrade aborts now. Please report this bug." +#~ msgstr "The upgrade aborts now. Please report this bug." + +#, python-format +#~ msgid "" +#~ "Replace configuration file\n" +#~ "'%s'?" +#~ msgstr "" +#~ "Replace configuration file\n" +#~ "\n" +#~ "'%s'?" + +#~ msgid "" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +#~ msgstr "" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "\n" +#~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." + +#, python-format +#~ msgid "%s package is going to be removed." +#~ msgid_plural "%s packages are going to be removed." +#~ msgstr[0] "%s package is going to be removed." +#~ msgstr[1] "%s packages are going to be removed." + +#, python-format +#~ msgid "%s new package is going to be installed." +#~ msgid_plural "%s new packages are going to be installed." +#~ msgstr[0] "%s new package is going to be installed." +#~ msgstr[1] "%s new packages are going to be installed." + +#, python-format +#~ msgid "%s package is going to be upgraded." +#~ msgid_plural "%s packages are going to be upgraded." +#~ msgstr[0] "%s package is going to be upgraded." +#~ msgstr[1] "%s packages are going to be upgraded." + +#, python-format +#~ msgid "You have to download a total of %s." +#~ msgstr "You have to download a total of %s." + +#~ msgid "" +#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ msgstr "" +#~ "The upgrade can take several hours and cannot be canceled at any time later." + #~ msgid "Could not find any upgrades" #~ msgstr "Could not find any upgrades" #~ msgid "Your system has already been upgraded." #~ msgstr "Your system has already been upgraded." -#, fuzzy #~ msgid "" -#~ "Upgrading to Ubuntu 6.10" +#~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" #~ "Upgrading to Ubuntu 6.06 LTS" -#, fuzzy -#~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 Security Updates" +#~ msgid "Downloading and installing the upgrades" +#~ msgstr "Downloading and installing the upgrades" -#, fuzzy -#~ msgid "Updates of Ubuntu" -#~ msgstr "Upgrade to the latest version of Ubuntu" +#~ msgid "Upgrading Ubuntu" +#~ msgstr "Upgrading Ubuntu" -#~ msgid "Cannot install all available updates" -#~ msgstr "Cannot install all available updates" +#~ msgid "" +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " +#~ msgstr "" +#~ "Verifying the upgrade failed. There may be a problem with the network or " +#~ "with the server. " + +#, python-format +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "Downloading file %li of %li with %s/s" + +#, python-format +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Downloading file %li of %li with unknown speed" + +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "The list of changes is not available yet. Please try again later." #~ msgid "" -#~ "Examining your system\n" -#~ "\n" -#~ "Software updates correct errors, eliminate security vulnerabilities and " -#~ "provide new features." +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." #~ msgstr "" -#~ "Examining your system\n" -#~ "\n" -#~ "\n" -#~ "Software updates correct errors, eliminate security vulnerabilities and " -#~ "provide new features." +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." -#, fuzzy -#~ msgid "Oficially supported" -#~ msgstr "Officially supported" +#~ msgid "Cannot install all available updates" +#~ msgstr "Cannot install all available updates" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgid "The following updates will be skipped:" #~ msgstr "The following updates will be skipped:" -#~ msgid "About %li seconds remaining" -#~ msgstr "About %li seconds remaining" - -#~ msgid "Download is complete" -#~ msgstr "Download is complete" - -#~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "The upgrade aborts now. Please report this bug." - -#~ msgid "Upgrading Ubuntu" -#~ msgstr "Upgrading Ubuntu" +#~ msgid "Downloading the list of changes..." +#~ msgstr "Downloading the list of changes..." #~ msgid "Hide details" #~ msgstr "Hide details" @@ -1757,49 +1733,138 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Show details" #~ msgstr "Show details" +#, python-format +#~ msgid "New version: %s (Size: %s)" +#~ msgstr "New version: %s (Size: %s)" + #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "Only one software management tool is allowed to run at the same time" +#~ msgstr "Only one software management tool is allowed to run at the same time" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." +#~ msgid "" +#~ "You must check for updates manually\n" +#~ "\n" +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ msgstr "" +#~ "You must check for updates manually\n" +#~ "\n" +#~ "\n" +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behaviour in \"System\" -> \"Administration\" -> \"Software Properties\"." + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Examining your system\n" +#~ "\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." + +#~ msgid "Cancel _Download" +#~ msgstr "Cancel _Download" + #~ msgid "Channels" #~ msgstr "Channels" #~ msgid "Keys" #~ msgstr "Keys" +#~ msgid "Add _Cdrom" +#~ msgstr "Add _Cdrom" + #~ msgid "Installation Media" #~ msgstr "Installation Media" #~ msgid "Software Preferences" #~ msgstr "Software Preferences" +#~ msgid "_Download updates in the background, but do not install them" +#~ msgstr "_Download updates in the background, but do not install them" + #~ msgid " " #~ msgstr " " +#~ msgid "" +#~ "The channel information is out-of-date\n" +#~ "\n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" +#~ "\n" +#~ "You need a working internet connection to continue." +#~ msgstr "" +#~ "The channel information is out-of-date\n" +#~ "\n" +#~ "\n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" +#~ "\n" +#~ "\n" +#~ "You need a working internet connection to continue." + #~ msgid "Channel" #~ msgstr "Channel" #~ msgid "Components" #~ msgstr "Components" +#~ msgid "" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a channel, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." +#~ msgstr "" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a channel, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." + #~ msgid "Add Channel" #~ msgstr "Add Channel" #~ msgid "Edit Channel" #~ msgstr "Edit Channel" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Add Channel" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Add Channel" +#~ msgstr[1] "_Add Channels" #~ msgid "_Custom" #~ msgstr "_Custom" +#~ msgid "" +#~ "If automatic checking for updates is disabeld, you have to reload the " +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." +#~ msgstr "" +#~ "If automatic checking for updates is disabled, you have to reload the " +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." + +#~ msgid "" +#~ "Stores the state of the expander that contains the list of changs and the " +#~ "description" +#~ msgstr "" +#~ "Stores the state of the expander that contains the list of changes and the " +#~ "description" + +#~ msgid "Configure software channels and internet updates" +#~ msgstr "Configure software channels and internet updates" + +#~ msgid "Software Properties" +#~ msgstr "Software Properties" + #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "Ubuntu 6.06 LTS" @@ -1810,4 +1875,4 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Ubuntu 6.06 LTS Updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/en_CA.po b/po/en_CA.po index 6835c514..d650cf9c 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:41+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:42+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" "MIME-Version: 1.0\n" @@ -56,15 +56,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "_Install" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -165,7 +163,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -178,9 +175,8 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"The key you selected could not be removed. Please report this as a bug. " +"The key you selected could not be removed. Please report this as a bug." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -205,7 +201,6 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -265,7 +260,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -323,16 +317,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +334,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,68 +357,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" -"The key you selected could not be removed. Please report this as a bug. " +"The key you selected could not be removed. Please report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,24 +426,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -468,7 +458,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -480,7 +470,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -497,7 +486,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -507,50 +495,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -558,40 +545,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -617,12 +603,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -637,7 +622,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -748,7 +732,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -826,19 +809,19 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "There is a new release of Ubuntu available!" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "There is a new release of Ubuntu available!" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -847,144 +830,134 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.04 Updates" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "Upgrade finished" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Cancel downloading the ChangeLog" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Version %s: \n" +msgstr "Version %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1130,7 +1103,7 @@ msgstr "Add _CD" #: ../data/glade/SoftwareProperties.glade.h:10 #, fuzzy msgid "Authentication" -msgstr "A_uthentication" +msgstr "Authentication" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" @@ -1244,8 +1217,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Enter the complete APT line of the repository that you want to add\n" +"Enter the complete APT line of the repository that you want to " +"add\n" "\n" "The APT line contains the type, location and content of a repository, for " "example \"deb http://ftp.debian.org sarge main\". You can find a " @@ -1333,259 +1306,218 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.04 Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Community maintained (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Contributed software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "US export restricted software" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Officially supported" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.04 Updates" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian Stable Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "US export restricted software" + #, fuzzy #~ msgid "Normal updates" #~ msgstr "_Install" @@ -1668,8 +1600,8 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources." -#~ "list is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources.list " +#~ "is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1718,13 +1650,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -1744,16 +1676,16 @@ msgstr "" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1778,11 +1710,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1815,13 +1747,11 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -1830,11 +1760,11 @@ msgstr "" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1844,30 +1774,30 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -1899,10 +1829,10 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." \ No newline at end of file diff --git a/po/en_GB.po b/po/en_GB.po index aedd7e7d..9a759e33 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:41+0000\n" -"Last-Translator: Abigail Brady \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-06 04:33+0000\n" +"Last-Translator: Jeff Bailes \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,101 +17,94 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 -#, fuzzy msgid "Daily" -msgstr "Details" +msgstr "Daily" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "" +msgstr "Every two days" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "" +msgstr "Weekly" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "" +msgstr "Every fortnight" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" -msgstr "" +msgstr "Every %s days" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "" +msgstr "After one week" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "" +msgstr "After a fortnight" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "" +msgstr "After one month" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" -msgstr "" +msgstr "After %s days" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Installing updates..." +msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Main server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server for %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Nearest server" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Custom servers" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Software Updates" +msgstr "Software Channel" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Active" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Source" +msgstr "(Source Code)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Source" +msgstr "Source Code" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "Import key" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" @@ -126,7 +119,8 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -137,52 +131,57 @@ msgid "" "\n" "%s" msgstr "" +"Error scanning the CD\n" +"\n" +"%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "" +msgstr "Please enter a name for the disc" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "" +msgstr "Please insert a disc in the drive:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "" +msgstr "Broken packages" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "" +msgstr "Can't upgrade required meta-packages" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "" +msgstr "An essential package would have to be removed" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "Could not calculate the upgrade" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"The key you selected could not be removed. Please report this as a bug. " +"An unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "" +msgstr "Error authenticating some packages" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -190,24 +189,26 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"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 a list of " +"unauthenticated packages." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "" +msgstr "Can't install '%s'" #: ../DistUpgrade/DistUpgradeCache.py:313 -#, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"The key you selected could not be removed. Please report this as a bug. " +"It was impossible to install a required package. Please report this as a " +"bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "" +msgstr "Can't guess meta-package" #: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" @@ -217,10 +218,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" -msgstr "" +msgstr "Failed to add the CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -231,14 +237,19 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"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" +"\n" +"The error message was:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "" +msgstr "Reading cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Fetch data from the network for the upgrade?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -247,10 +258,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "" +msgstr "No valid mirror found" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -263,11 +278,17 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"While scanning your repository information no mirror entry for the upgrade " +"was found. This can happen if you run a internal mirror or if the mirror " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "Generate default sources?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -277,20 +298,26 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "Repository information invalid" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "" +msgstr "Third party sources disabled" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -298,21 +325,25 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" +"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 " +"synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 -#, fuzzy msgid "Error during update" -msgstr "Error removing the key" +msgstr "Error during update" #: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" +"A problem occurred during the update. This is usually some sort of network " +"problem, please check your network connection and retry." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" -msgstr "" +msgstr "Not enough free disk space" #: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format @@ -321,17 +352,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"The upgrade aborts now. Please free at least %s of disk space on %s. Empty " +"your Deleted Items folder and remove temporary packages of former " +"installations using 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "" +msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "" +msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,22 +372,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" -msgstr "" +msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Support for some applications ended" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -362,70 +402,74 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "" +msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "" +msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" +"Some problem occurred during the clean-up. Please see the below message for " +"more information. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "" +msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Fetching backport of '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "Another package manager is running" +msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Downloading Changes" +msgstr "Preparing the upgrade failed" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"The key you selected could not be removed. Please report this as a bug. " +"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/dist-" +"upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -434,211 +478,225 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"After your package information was updated the essential package '%s' cannot " +"be found any more.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "Checking system configuration" +msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:725 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "Upgrade finished" +msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "" +msgstr "System upgrade is complete." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "Please insert '%s' into the drive '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" -msgstr "" +msgstr "Fetching is complete" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "Fetching file %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" -msgstr "" +msgstr "About %s remaining" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 -#, fuzzy msgid "Applying changes" -msgstr "Downloading changes..." +msgstr "Applying changes" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "Could not install '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"The upgrade aborts now. Please report this bug against the 'update-manager' " +"package and include the files in /var/log/dist-upgrade/ in the bugreport." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" +"Replace the customised configuration file\n" +"'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "" +msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" +"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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d package is going to be removed." +msgstr[1] "%d packages are going to be removed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d new package is going to be installed." +msgstr[1] "%d new packages are going to be installed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d package is going to be upgraded." +msgstr[1] "%d packages are going to be upgraded." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" +"\n" +"\n" +"You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" +"Fetching and installing the upgrade can take several hours and cannot be " +"cancelled at any time later." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "" +msgstr "To prevent data loss close all open applications and documents." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" -msgstr "Your system is up-to-date!" +msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"There are no upgrades available for your system. The upgrade will now be " +"cancelled." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" -msgstr "" +msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" -msgstr "" +msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "" +msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li days %li hours %li minutes" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li hours %li minutes" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutes" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li seconds" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "" +msgstr "Reboot required" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -651,342 +709,333 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" +"Cancel the running upgrade?\n" +"\n" +"The system could be left in an unusable state if you cancel the upgrade. You " +"are strongly adviced to resume the upgrade." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" +msgstr "Restart the system to complete the upgrade" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "" +msgstr "Start the upgrade?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Upgrading Ubuntu to version 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "" +msgstr "Cleaning up" #: ../DistUpgrade/DistUpgrade.glade.h:9 -#, fuzzy msgid "Details" -msgstr "Details" +msgstr "Details" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "Difference between the files" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" -msgstr "" +msgstr "Fetching and installing the upgrades" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "" +msgstr "Modifying the software channels" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "" +msgstr "Preparing the upgrade" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "Restarting the system" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" -msgstr "" +msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Cancel Upgrade" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Continue" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "_Keep" #: ../DistUpgrade/DistUpgrade.glade.h:19 -#, fuzzy msgid "_Replace" -msgstr "Reload" +msgstr "_Replace" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "_Report Bug" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "" +msgstr "_Restart Now" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "" +msgstr "_Resume Upgrade" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Start Upgrade" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "Could not find the release notes" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "The server may be overloaded. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "Could not download the release notes" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "Please check your Internet connection." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "Could not run the upgrade tool" #: ../UpdateManager/DistUpgradeFetcher.py:150 -#, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" -"The key you selected could not be removed. Please report this as a bug." +"This is most likely a bug in the upgrade tool. Please report it as a bug" #: ../UpdateManager/DistUpgradeFetcher.py:171 -#, fuzzy msgid "Downloading the upgrade tool" -msgstr "Downloading Changes" +msgstr "Downloading the upgrade tool" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "The upgrade tool will guide you through the upgrade process." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "Upgrade tool signature" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "" +msgstr "Upgrade tool" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "Failed to fetch" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" +msgstr "Fetching the upgrade failed. There may be a network problem. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "Failed to extract" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "Verfication failed" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " #: ../UpdateManager/DistUpgradeFetcher.py:228 -#, fuzzy msgid "Authentication failed" -msgstr "A_uthentication" +msgstr "Authentication failed" #: ../UpdateManager/DistUpgradeFetcher.py:229 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "Downloading file %(current)li of %(total)li with %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "Downloading file %(current)li of %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "There is a new release of Ubuntu available!" +msgstr "The list of changes is not available" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "There is a new release of Ubuntu available!" +msgstr "" +"The list of changes is not available yet.\n" +"Please try again later." -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Failed to download changes. Please check if there is an active internet " -"connection." +"Failed to download the list of changes. \n" +"Please check your Internet connection." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 Security Updates" +msgstr "Important security updates" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Recommended updates" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Installing updates..." +msgstr "Proposed updates" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backports" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "Installing updates..." +msgstr "Distribution updates" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Installing updates..." +msgstr "Other updates" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "Downloading Changes" +msgstr "Downloading list of changes..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "_Untick All" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "" +msgstr "_Tick All" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "" +msgstr "Download size: %s" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "Installing updates..." -msgstr[1] "Installing updates..." +msgstr[0] "You can install %s update" +msgstr[1] "You can install %s updates" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "Please wait, this can take some time." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "" +msgstr "Update is complete" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Installing updates..." +msgstr "Checking for updates" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "From version %(old_version)s to %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Version %s: \n" +msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Size: %s)" -#: ../UpdateManager/UpdateManager.py:825 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" -msgstr "Your distribution is no longer supported" +msgstr "Your distribution is not supported anymore" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" +"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 " +"information on upgrading." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "New distribution release '%s' is available" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" +"It is impossible to install or remove any software. Please use the package " +"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " +"this issue at first." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "None" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 msgid "" @@ -995,18 +1044,22 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behaviour in Software Sources on the Internet Updates tab." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "" +msgstr "Keep your system up-to-date" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" +msgstr "Not all updates can be installed" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" -msgstr "" +msgstr "Starting update manager" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1014,15 +1067,15 @@ msgstr "Changes" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Changes and description of the update" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "" +msgstr "Chec_k" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "" +msgstr "Check the software channels for new updates" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1030,7 +1083,7 @@ msgstr "Description" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "" +msgstr "Release Notes" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1039,10 +1092,14 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "Show progress of single files" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" @@ -1053,59 +1110,56 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "U_pgrade" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "" +msgstr "Upgrade to the latest version of Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_Check" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" -msgstr "" +msgstr "_Distribution Upgrade" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_Hide this information in the future" #: ../data/glade/UpdateManager.glade.h:24 -#, fuzzy msgid "_Install Updates" -msgstr "Installing updates..." +msgstr "_Install Updates" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Changes" +msgstr "changes" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "updates" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internet Updates" +msgstr "Automatic updates" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 -#, fuzzy msgid "Internet updates" -msgstr "Internet Updates" +msgstr "Internet updates" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internet Updates" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1117,90 +1171,90 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Add _CD" +msgstr "Add _CDROM" #: ../data/glade/SoftwareProperties.glade.h:10 -#, fuzzy msgid "Authentication" -msgstr "A_uthentication" +msgstr "Authentication" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "" +msgstr "D_elete downloaded software files:" #: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" -msgstr "" +msgstr "Download from:" #: ../data/glade/SoftwareProperties.glade.h:13 -#, fuzzy msgid "Import the public key from a trusted software provider" -msgstr "Remove the selected key from the trusted keyring." +msgstr "Import the public key from a trusted software provider" #: ../data/glade/SoftwareProperties.glade.h:14 -#, fuzzy msgid "Internet Updates" -msgstr "Internet Updates" +msgstr "Internet Updates" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" #: ../data/glade/SoftwareProperties.glade.h:16 -#, fuzzy msgid "Restore _Defaults" -msgstr "Restore default keys" +msgstr "Restore _Defaults" #: ../data/glade/SoftwareProperties.glade.h:17 -#, fuzzy msgid "Restore the default keys of your distribution" -msgstr "Restore default keys" +msgstr "Restore the default keys of your distribution" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Software Properties" +msgstr "Software Sources" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Source" +msgstr "Source code" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistics" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Submit statistical information" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Third Party" #: ../data/glade/SoftwareProperties.glade.h:23 -#, fuzzy msgid "_Check for updates automatically:" -msgstr "Installing updates..." +msgstr "_Check for updates automatically:" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" -msgstr "" +msgstr "_Download updates automatically, but do not install them" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "" +msgstr "_Import Key File" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "" +msgstr "_Install security updates without confirmation" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" @@ -1211,15 +1265,20 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working Internet connection to continue." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" msgstr "Comment:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 -#, fuzzy msgid "Components:" -msgstr "Components" +msgstr "Components:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" @@ -1234,7 +1293,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1242,12 +1300,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Enter the complete APT line of the repository that you want to add\n" +"Enter the complete APT line of the repository that you want to add " +"as source\n" "\n" -"The APT line contains the type, location and content of a repository, for " -"example \"deb http://ftp.debian.org sarge main\". You can find a " -"detailed description of the syntax in the documentation." +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1262,27 +1319,24 @@ msgstr "" "Source" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Source" +msgstr "Edit Source" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "Scanning CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Source" +msgstr "_Add Source" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 -#, fuzzy msgid "_Reload" -msgstr "Reload" +msgstr "_Reload" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "Show and install available updates" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" @@ -1293,10 +1347,12 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "" +msgstr "Check for new distribution releases" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1304,327 +1360,254 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" +"If automatic checking for updates is disabled, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "" +msgstr "Remind to reload the channel list" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "Show details of an update" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" +msgstr "Stores the size of the update-manager dialogue" #: ../data/update-manager.schemas.in.h:7 msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" +"Stores the state of the expander that contains the list of changes and the " +"description" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "The window size" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" +msgstr "Configure the sources for installable software and updates" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 Updates" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Community maintained (Universe)" +msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Proprietary drivers for devices" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Contributed software" +msgstr "Restricted software" -#. Description #: ../data/channels/Ubuntu.info.in:25 -#, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "CD disk with Ubuntu 4.10 \"Warty Warthog\"" +msgstr "Cdrom with Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 5.04 Updates" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +msgid "Canonical supported Open Source software" +msgstr "Canonical supported Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Community maintained (Universe)" +msgstr "Community maintained (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Community maintained (Universe)" +msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Non-free (Multiverse)" +msgstr "Non-free drivers" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Proprietary drivers for devices " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Non-free (Multiverse)" +msgstr "Restricted software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "US export restricted software" +msgid "Software restricted by copyright or legal issues" +msgstr "Software restricted by copyright or legal issues" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 5.04 Updates" +msgstr "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Backported updates" -#. Description #: ../data/channels/Ubuntu.info.in:110 -#, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "CD disk with Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "CD disk with Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 -#, fuzzy msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 Updates" +msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "CD disk with Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "CD disk with Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 -#, fuzzy msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 Security Updates" +msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 Updates" +msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Updates" +msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "CD disk with Ubuntu 4.10 \"Warty Warthog\"" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "CD disk with Ubuntu 4.10 \"Warty Warthog\"" +msgstr "Cdrom with Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Officially supported" +msgstr "No longer officially supported" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Updates" +msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 -#, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Debian Stable Security Updates" +msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 -#, fuzzy msgid "Debian \"Etch\" (testing)" -msgstr "Debian Testing" +msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 -#, fuzzy msgid "Debian \"Sid\" (unstable)" -msgstr "Debian Non-US (Unstable)" +msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "DFSG-compatible Software with Non-Free Dependencies" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "Non-DFSG-compatible Software" + +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "By copyright or legal issues restricted software" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "Installing updates..." +#~ msgstr "Normal updates" -#, fuzzy #~ msgid "Your system has already been upgraded." -#~ msgstr "Your system has broken packages!" +#~ msgstr "Your system has already been upgraded." -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 Security Updates" +#~ msgstr "Important security updates of Ubuntu" #, fuzzy #~ msgid "Oficially supported" #~ msgstr "Officially supported" -#, fuzzy #~ msgid "The following updates will be skipped:" -#~ msgstr "The following packages are not upgraded:" +#~ msgstr "The following updates will be skipped:" -#, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "" -#~ "The key you selected could not be removed. Please report this as a bug." +#~ msgstr "The upgrade aborts now. Please report this bug." -#, fuzzy #~ msgid "Hide details" -#~ msgstr "Details" +#~ msgstr "Hide details" -#, fuzzy #~ msgid "Channels" -#~ msgstr "Details" +#~ msgstr "Channels" -#, fuzzy #~ msgid "Keys" -#~ msgstr "Details" +#~ msgstr "Keys" -#, fuzzy #~ msgid "Installation Media" -#~ msgstr "Installing updates..." +#~ msgstr "Installation Media" #~ msgid "Software Preferences" #~ msgstr "Software Preferences" @@ -1632,9 +1615,8 @@ msgstr "" #~ msgid " " #~ msgstr " " -#, fuzzy #~ msgid "Channel" -#~ msgstr "Details" +#~ msgstr "Channel" #, fuzzy #~ msgid "Components" @@ -1643,21 +1625,17 @@ msgstr "" #~ msgid "_Custom" #~ msgstr "_Custom" -#, fuzzy #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 5.10 Updates" +#~ msgstr "Ubuntu 6.06 LTS" -#, fuzzy #~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 5.04 Security Updates" +#~ msgstr "Ubuntu 6.06 LTS Security Updates" -#, fuzzy #~ msgid "Ubuntu 6.06 LTS Updates" -#~ msgstr "Ubuntu 5.10 Updates" +#~ msgstr "Ubuntu 6.06 LTS Updates" -#, fuzzy #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 5.10 Updates" +#~ msgstr "Ubuntu 6.06 LTS Backports" #~ msgid "Repositories changed" #~ msgstr "Repositories changed" @@ -1667,8 +1645,8 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources." -#~ "list is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources.list " +#~ "is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1725,13 +1703,13 @@ msgstr "" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1763,11 +1741,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1797,13 +1775,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancel downloading the changelog" @@ -1879,8 +1857,7 @@ msgstr "" #~ msgstr[1] "You have selected all %s updated packages, total size %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "You have selected %s out of %s updated package, size %s" #~ msgstr[1] "You have selected %s out of %s updated packages, total size %s" @@ -1888,11 +1865,11 @@ msgstr "" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1905,19 +1882,19 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" @@ -1947,10 +1924,8 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." \ No newline at end of file diff --git a/po/eo.po b/po/eo.po new file mode 100644 index 00000000..44c48522 --- /dev/null +++ b/po/eo.po @@ -0,0 +1,1445 @@ +# Esperanto translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-07-24 21:11+0000\n" +"Last-Translator: Ed Glez \n" +"Language-Team: Esperanto \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Post unu semajno" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Post du semajnoj" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Post unu monato" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Post %s tagoj" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Importi sxlosilon" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Eraro dum importado de elektita dosiero" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Eraro dum forigo de sxlosilo" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"La sxlosilo elektita ne povis esti forigata. Bonvolu raporti cxi tion kiel " +"cimon." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Bonvolu entajpi nomon por la disko" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "Bonvolu enmeti diskon en la diskingo:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "Ne eblis instalo de '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Estis neebla instalo de bezonata pakajxo. Bonvolu raporti cxi tion kiel " +"cimo. " + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "Legado de kasxmemoro" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "Deponeja informo ne valida" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +#, fuzzy +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" +"Promociado de deponeja informo igis nevalidan dosieron. Bonvolu raporti cxi " +"tion kiel cimo." + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "Aliulaj fontoj malsxaltitaj" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "Eraro dum gxisdatigo" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" +"Problemo okazis dum la gxisdatigo. Kutime tio okazas pro retaj problemoj, " +"bonvolu kontroli vian retan konekton kaj reprovi." + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "Ne estas suficxa libera loko en disko" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "Cxu vi volas komenci la promociadon?" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "Ne eblis instali la promociojn" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" +"Kelkaj problemoj okazis dum la purigado. Bonvolu vidi suban mesagxon por " +"pliaj informoj. " + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "Kontrolado de pakajxa direktisto" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "Gxisdatigo de deponeja informo" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "Nevalida pakajxa informo" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "Petado de konfirmo" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "Promociado" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "Sercxado de ne plu uzata programaro" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "Sistema promocio estas kompleta." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "Aplikado de sxangxoj" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "Ne eblis instali '%s'" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "La komando 'diff' ne estis trovata" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "Via sistemo estas gxisdatigita" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr " " + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" +"Cxu nuligi la rulantan promociadon?\n" +"\n" +"La sistemo povas esti neuzebla se vi nuligas la promociadon. Ni forte " +"konsilas dauxrigi la promociadon." + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "Rekomenci la sistemon por kompletigi la promocion" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "Cxu komenci la promociadon?" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "Purigado" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "Detaloj" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "Diferenco inter la dosieroj" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "Rekomencado de la sistemo" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "Konservi" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "Anstatauxigi" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "Rekomenci Nun" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "Bonvolu kontroli vian interretan konekton." + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "Ne eblis ruli la promocian ilon" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" +"Tio cxi sxajnas esti cimo en la promocia ilo. Bonvolu raporti cxi tion kiel " +"cimo" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "Elsxutado de la promocia ilo" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "Subskribo de promocia ilo" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "Promocia ilo" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "Versio %s: \n" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "Elsxuta grando: %s" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "Via distribuo ne estas plu subtenata" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "Nova distribua eldono '%s' estas disponebla" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "Konservi vian sistemon gxisdatigita" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "Sxangxoj" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "Kontroli" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "Priskribo" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "Promocii" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "Promocii al lasta versio de Ubuntu" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "Kontroli" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "Kasxi cxi tiujn informojn estonte" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "Instali Gxisdatigojn" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "Interretaj gxisdatigoj" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "Komento:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "Elementoj:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" +"Duuma\n" +"Fonto" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "Skanado de KD" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "Resxargi" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "Vidigas kaj instalas disponeblajn gxisdatigojn" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "Gxisdatiga Direktisto" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" +"Kontroli auxtomate se nova versio de la aktuala distribuo estas disponebla " +"kaj proponi promocion (se eblas)." + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "Oficiale subtenata" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "Debian 3.1 \"Sarge\"" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/es.po b/po/es.po index c93a2326..8c271f45 100644 --- a/po/es.po +++ b/po/es.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-26 09:38+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 21:00+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" @@ -57,59 +57,53 @@ msgstr "Después de un mes" msgid "After %s days" msgstr "Después de %s días" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Instalando actualizaciones" +msgstr "Actualizaciones de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Servidor para %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Servidor maś cercano" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Servidores personalizados" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Actualizaciones de software" +msgstr "Canal de software" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Activo" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Fuente" +msgstr "(Código fuente)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Fuente" +msgstr "Código fuente" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -117,12 +111,12 @@ msgstr "Importar clave" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Hubo un error al importar el archivo seleccionado" +msgstr "Hubo un error al importar el fichero seleccionado" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -"Puede que el archivo seleccionado no sea un archivo de clave GPG o que esté " +"Puede que el fichero seleccionado no sea un fichero de clave GPG o que esté " "corrupto." #: ../SoftwareProperties/SoftwareProperties.py:992 @@ -130,19 +124,20 @@ msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "No se puede quitar la clave que ha seleccionado. Por favor, avise de esto " "como un fallo." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Error explorando el CD\n" +"Error examinando el CD\n" "\n" "%s" @@ -175,23 +170,20 @@ msgstr "No se han podido actualizar los meta-paquetes requeridos" msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Ha ocurrido un problema imposible de resolver cuando se calculaba la " -"actualización. Por favor, informe de ésto como un fallo. " +"Ha ocurrido un problema imposible de corregir cuando se calculaba la " +"actualización. Por favor, informe de ésto como un fallo." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" @@ -219,13 +211,11 @@ msgstr "" "No ha sido posible instalar un paquete requerido. Por favor, informe de ésto " "como un fallo. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -233,16 +223,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Su sistema no contiene el paquete ubuntu-desktop, o kubuntu-desktop, o " +"Su sistema no contiene el paquete ubuntu-desktop, kubuntu-desktop o " "edubuntu-desktop, y no ha sido posible detectar qué versión de Ubuntu está " "ejecutando.\n" " Por favor, instale uno de los paquetes anteriores usando Synaptic o apt-get " "antes de proceder." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Error al descargar" +msgstr "Error al añadir el CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -253,6 +242,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Ha habido un error al añadir el CD; se ha interrumpido la actualización. Por " +"favor, informe de esto como un fallo si este es un CD válido de Ubuntu.\n" +"\n" +"El mensaje de error fue:\n" +"«%s»" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -260,7 +254,7 @@ msgstr "Leyendo caché" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "¿Obtener datos desde la red para la actualización?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -269,6 +263,11 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"La actualización puede usar la red para comprobar las últimas " +"actualizaciones y para obtener los paquetes que no se encuentren en el CD " +"actual.\n" +"Si dispone de una conexión rápida o barata, debería responder «Sí». Si la " +"conexión es cara para usted, seleccione «No»." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -294,7 +293,6 @@ msgstr "" "«Sí», se actualizarán todas las entradas «%s» a «%s».\n" "Si selecciona «No» se cancelará la actualización." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" @@ -330,15 +328,14 @@ msgid "Third party sources disabled" msgstr "Orígenes de terceros desactivados" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"Se han desactivado algunas entradas de terceros 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." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -368,17 +365,15 @@ msgstr "" "espacio en disco en %s. Vacíe su papelera, y elimine los paquetes temporales " "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,13 +383,17 @@ msgid "" msgstr "" "La actualización se interrumpirá ahora. Su sistema puede haber quedado en un " "estado inutilizable. Se está llevando a cabo una recuperación (dpkg --" -"configure -a)." +"configure -a).\n" +"\n" +"Por favor, informe de ésto como un fallo en el paquete «update-manager» e " +"incluya en el informe de error los archivos contenidos en /var/log/dist-" +"upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -402,12 +401,11 @@ msgstr "" "La actualización se interrumpirá ahora. Por favor, compruebe su conexión a " "Internet (o su soporte de instalación) y vuelva a intentarlo. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Algunas aplicaciones han dejado de tener soporte" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -415,29 +413,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Estos paquetes instalados ya no están soportados oficialmente, y desde ahora " -"sólo están soportados por la comunidad («universe»).\n" +"Canonical Ltd. ya no soporta oficialmente los siguientes paquetes de " +"software. Todavía podrá obtener soporte de la comunidad.\n" "\n" -"Si no tiene activado el «universe», se le sugerirá que desinstale estos " -"paquetes en el siguiente paso. " +"Si no tiene habilitado el software mantenido por la comunidad («universe»), " +"se le sugerirá que desinstale estos paquetes en el siguiente paso." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Quitar" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Error durante la confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -445,48 +443,46 @@ msgstr "" "Ha ocurrido algún problema durante el limpiado. por favor, vea el mensaje " "inferior para más información. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Descargando «backport» de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Comprobando gestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Preparando la actualización" +msgstr "Falló la preparación de la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" "Ha ocurrido un problema imposible de resolver cuando se calculaba la " -"actualización. Por favor, informe de ésto como un fallo. " +"actualización. Por favor, informe de ésto como un fallo en el paquete " +"«update-manager», e incluya en el informe los archivos contenidos en el " +"directorio /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Información de paquete no válida" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -496,54 +492,53 @@ msgid "" msgstr "" "Después de haberse actualizado la información de sus paquetes, ya no es " "posible encontrar el paquete esencial «%s».\n" -"Esto indica un problema serio; por favor, informe de esto como un fallo." +"Esto indica un problema serio. Por favor, informe de ésto como un fallo en " +"el paquete «update-manager» e incluya en el informe de error los archivos " +"contenidos en /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Por favor, inserte «%s» en la unidad «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "La actualización se ha completado" +msgstr "La descarga se ha completado" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Descargando archivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Faltan %li minutos" +msgstr "Faltan alrededor de %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Descargando archivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando los cambios" @@ -558,146 +553,152 @@ 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 bugreport." msgstr "" +"La actualización se interrumpirá ahora. Por favor, informe de esto como un " +"fallo en el paquete «update-manager» e incluya en el informe de error los " +"archivos contenidos en /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"¿Desea reemplazar el archivo de configuración\n" +"¿Desea sustituir el archivo de configuración modificado\n" "«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" +"Perderá todos los cambios que haya realizado en este archivo de " +"configuración si decide sustituirlo por una nueva versión." -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "No se ha encontrado el comando «diff»" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ha ocurrido un error fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 " +"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 guardó en /etc/apt/sources.list." -"distUpgrade." +"Su archivo «sources.list» original se ha guardado en " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "Se va a desinstalar %s paquete." -msgstr[1] "Se van a desinstalar %s paquetes." +msgstr[0] "Se va a desinstalar %d paquete." +msgstr[1] "Se van a desinstalar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "Se va a instalar %s paquete nuevo." -msgstr[1] "Se van a instalar %s paquetes nuevos." +msgstr[0] "Se va a instalar %d paquete nuevo." +msgstr[1] "Se van a instalar %d paquetes nuevos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "Se va a actualizar %s paquete." -msgstr[1] "Se van a actualizar %s paquetes." +msgstr[0] "Se va a actualizar %d paquete." +msgstr[1] "Se van a actualizar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Debe descargar un total de %s." +msgstr "" +"\n" +"\n" +"Debe descargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"La actualización puede durar varias horas, y no podrá ser cancelada después " -"en ningún momento." +"Descargar e instalar la actualización puede llevar varias horas, y no se " +"podrá cancelar después en ningún momento." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"No hay actualizaciones disponibles para su sistema. Se ha cancelado la " +"actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Faltan %li dias %li horas %li minutos" +msgstr "%li días %li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Faltan %li horas %li minutos" +msgstr "%li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" +"Esta descarga llevará aprox. %s con una conexión DSL de 1Mbit, y aprox. %s " +"con un módem de 56k." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -713,7 +714,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,7 +733,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicie el sistema para completar la actualización" +msgstr "" +"Reinicie el sistema para completar la actualización" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -741,7 +742,7 @@ msgstr "¿Comenzar la actualización?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Actualizando Ubuntu a la versión 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -756,7 +757,6 @@ msgid "Difference between the files" msgstr "Diferencia entre los archivos" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Descargando e instalando las actualizaciones" @@ -777,13 +777,12 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Continuar actualización" +msgstr "_Cancelar la actualización" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Continuar" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -806,9 +805,8 @@ msgid "_Resume Upgrade" msgstr "_Continuar actualización" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Continuar actualización" +msgstr "_Iniciar la actualización" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -826,7 +824,6 @@ msgstr "No se han podido descargar las notas de publicación" msgid "Please check your internet connection." msgstr "Por favor, compruebe su conexión a Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No se ha podido ejecutar la herramienta de actualización" @@ -883,13 +880,12 @@ msgid "Verfication failed" msgstr "Error de verificación" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ha fallado la verificación de la actualización. Puede haber un problema con " -"la red o el servidor. " +"la red o con el servidor. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -904,158 +900,139 @@ msgstr "" "la red o el servidor. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Descargando archivo %li de %li a %s/s" +msgstr "Descargando archivo %(current)li de %(total)li a %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Descargando archivo %li de %li a %s/s" +msgstr "Descargando archivo %(current)li de %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"La lista de cambios no está disponible aún. Por favor, inténtelo de nuevo " -"más tarde." +msgstr "La lista de cambios no se encuentra disponible." -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"La lista de cambios no está disponible aún. Por favor, inténtelo de nuevo " -"más tarde." +"La lista de cambios no está disponible aún.\n" +"Por favor, inténtelo de nuevo más tarde." -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Hubo un fallo al descargar la lista de cambios. Por favor, compruebe su " -"conexión a Internet." +"Hubo un fallo al descargar la lista de cambios. \n" +"Por favor, compruebe su conexión a Internet." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Actualizaciones de seguridad de Ubuntu 5.10" +msgstr "Actualizaciones importantes de seguridad" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Actualizaciones recomendadas" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Instalando actualizaciones" +msgstr "Actualizaciones propuestas" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "«Backports»" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Continuar actualización" +msgstr "Actualizaciones de la distribución" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Instalando actualizaciones" +msgstr "Otras actualizaciones" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versión %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "Descargando la lista de cambios..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "_Desmarcar todo" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Comprobar" +msgstr "_Marcar todo" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Tamaño de descarga: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Puede instalar %s actualización" msgstr[1] "Puede instalar %s actualizaciones" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Por favor, espere; esto puede tardar un poco." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "La actualización se ha completado" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Comprobar las actualizaciones disponibles" +msgstr "Comprobando actualizaciones" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nueva versión: %s (Tamaño: %s)" +msgstr "De la versión %(old_version)s a la %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Versión %s: \n" +msgstr "Versión %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Tamaño: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Su distribución ya no está soportada" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" "No podrá obtener nuevas correcciones de seguridad ni actualizaciones " -"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" -"www.ubuntu.com para más información sobre la actualización." +"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite " +"http://www.ubuntu.com para más información sobre la actualización." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "El índice de software está dañado" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1065,30 +1042,25 @@ msgstr "" "gestor de paquetes «Synaptic», o ejecute «sudo apt-get install -f» en una " "terminal, para corregir este problema primero." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Ninguno" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1098,25 +1070,21 @@ msgstr "" "Debe comprobar las actualizaciones manualmente\n" "\n" "Su sistema no comprueba las actualizaciones manualmente. Puede configurar " -"este comportamiento en «Sistema» -> «Administración» -> «Propiedades del " -"software»." +"este comportamiento en Orígenes del software, en la solapa " +"Actualizaciones por Internet." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Mantenga su sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Error explorando el CD\n" -"\n" -"%s" +"No se han podido instalar todas las actualizaciones" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "¿Comenzar la actualización?" +msgstr "Iniciando el gestor de actualizaciones" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1124,7 +1092,7 @@ msgstr "Cambios" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Cambios y descripción de la actualización" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1149,6 +1117,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Ejecute una actualización de la distribución, para instalar tantas " +"actualizaciones como sea posible. \n" +"\n" +"Esto pudo deberse a una actualización incompleta, a que instaló paquetes de " +"software no oficiales, o a que está ejecutando una versión de desarrollo." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1179,9 +1152,8 @@ msgid "_Check" msgstr "_Comprobar" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Continuar actualización" +msgstr "_Actualizar la distribución" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1192,31 +1164,28 @@ msgid "_Install Updates" msgstr "_Instalar actualizaciones" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Cambios" +msgstr "cambios" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "actualizaciones" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Actualizaciones por Internet" +msgstr "Actualizaciones automáticas" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Actualizaciones por Internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Actualizaciones por Internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1228,24 +1197,30 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Para mejorar la experiencia del usuario de Ubuntu, por favor, participe " +"en la encuesta de popularidad. Al hacerlo, se creará una lista con las " +"aplicaciones que tenga instaladas y con qué frecuencia las utiliza, y se " +"enviará de forma anónima al proyecto Ubuntu todas las semanas.\n" +"\n" +"Los resultados se usarán para mejorar el soporte de las aplicaciones " +"populares y para ordenar las aplicaciones en los resultados de las " +"búsquedas." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Añadir _CD-ROM" +msgstr "Añadir CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" -msgstr "Autenticación" +msgstr "Autentificación" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Borrar archivos de software descargados:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "La descarga se ha completado" +msgstr "Descargar desde:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1273,35 +1248,32 @@ msgstr "Restaurar las claves predeterminadas de su distribución" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Propiedades del software" +msgstr "Orígenes del software" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Fuente" +msgstr "Código fuente" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Estadísticas" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Enviar información estadística" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Otros proveedores" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Comprobar actualizaciones automáticamente:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Descargar actualizaciones en segundo plano, pero sin instalarlas" +msgstr "_Descargar actualizaciones automáticamente, pero sin instalarlas" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1312,7 +1284,6 @@ msgid "_Install security updates without confirmation" msgstr "_Instalar actualizaciones de seguridad sin requerir confirmación" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1321,13 +1292,14 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"La información de los canales está obsoleta\n" +"La información acerca del software disponible está " +"obsoleta\n" "\n" -"Debe recargar la información de los canales para poder instalar software y " -"actualizaciones a partir de los canales recientemente añadidos o " -"cambiados. \n" +"Para poder instalar software y actualizaciones a partir de los orígenes que " +"se hayan añadido o cambiado recientemente, es necesario recargar la " +"información acerca del software disponible.\n" "\n" -"Necesita una conexión a internet para continuar." +"Necesita una conexión a Internet para continuar." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1350,7 +1322,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1358,11 +1329,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Introduzca la línea de APT completa del canal que quiera añadir\n" +"Introduzca la línea de APT completa del repositorio que quiera " +"añadir como origen\n" "\n" "La línea de APT contiene el tipo, la ubicación y los componentes de un " -"canal, por ejemplo «deb http://ftp.debian.org sarge main»." +"repositorio, por ejemplo «deb http://ftp.debian.org sarge main»." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1377,18 +1348,16 @@ msgstr "" "Fuente" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Fuente" +msgstr "Editar origen" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "Analizando el CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Fuente" +msgstr "_Añadir origen" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1415,13 +1384,12 @@ msgid "Check for new distribution releases" msgstr "Comprobar si existen nuevas publicaciones de la distribución" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"Si se desactiva la comprobación automática de actualizaciones, debe recargar " +"Si desactiva la comprobación automática de actualizaciones, deberá recargar " "la lista de canales manualmente. Esta opción le permite ocultar la " "notificación que se muestra en este caso." @@ -1438,7 +1406,6 @@ msgid "Stores the size of the update-manager dialog" msgstr "Almacena el tamaño de la ventana del gestor de actualizaciones" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" @@ -1451,263 +1418,202 @@ msgid "The window size" msgstr "El tamaño de la ventana" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Configura canales de software y actualizaciones por Internet" +msgstr "" +"Configura los orígenes para el software instalable y las actualizaciones" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Actualizaciones de Ubuntu 5.10" +msgstr "Ubuntu 6.10 «Edgy Eft»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Mantenido por la comunidad (Universe)" +msgstr "Mantenido por la comunidad" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Controladores privativos para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Software contribuido" +msgstr "Software restringido" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 «Dapper Drake»" +msgstr "Ubuntu 6.06 LTS «Dapper Drake»" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +msgid "Canonical supported Open Source software" +msgstr "Software libre soportado por Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Mantenido por la comunidad (Universe)" +msgstr "Mantenido por la comunidad (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Mantenido por la comunidad (Universe)" +msgstr "Software libre mantenido por la comunidad" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Software no libre (Multiverse)" +msgstr "Controladores no libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Controladores privativos para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Software no libre (Multiverse)" +msgstr "Software restringido (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Software con restricciones de exportación estadounidenses" +msgid "Software restricted by copyright or legal issues" +msgstr "Software restringido por copyright o cuestiones legales" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 «Dapper Drake»" +msgstr "CD-ROM con Ubuntu 6.06 LTS «Dapper Drake»" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Actualizaciones «backport»" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 «Breezy Badger»" +msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizaciones de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "«Backports» de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Actualizaciones de seguridad de Ubuntu 5.04" +msgstr "Ubuntu 5.04 «Hoary Hedgehog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Actualizaciones de seguridad de Ubuntu 5.04" +msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Actualizaciones de seguridad de Ubuntu 5.10" +msgstr "Actualizaciones de seguridad de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Actualizaciones de Ubuntu 5.10" +msgstr "Actualizaciones de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "«Backports» de Ubuntu 5.10" +msgstr "«Backports» de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 «Breezy Badger»" +msgstr "Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenido por la comunidad (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software no libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Algunos programas ya no están soportados oficialmente" +msgstr "Sin más soporte oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restringido" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Actualizaciones de seguridad" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Actualizaciones de Ubuntu 5.10" +msgstr "Actualizaciones de Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "«Backports» de Ubuntu 5.10" +msgstr "«Backports» de Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizaciones de seguridad de Debian 3.1 «Sarge»" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (pruebas)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (inestable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible con la DFSG con dependencias no libres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Software restringido por copyright o cuestiones legales" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando archivo %li de %li a velocidad desconocida" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "Instalando actualizaciones" +#~ msgstr "Actualizaciones normales" #~ msgid "Cancel _Download" #~ msgstr "Cancelar _descarga" @@ -1721,20 +1627,16 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "Su sistema ya ha sido actualizado." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Actualizando a Ubuntu 6.06 LTS" +#~ "Actualizando a Ubuntu 6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Actualizaciones de seguridad de Ubuntu 5.10" +#~ msgstr "Actualizaciones de seguridad importantes para Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Actualizar a la última versión de Ubuntu" +#~ msgstr "Actualizaciones de Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "No se han podido instalar todas las actualizaciones disponibles" @@ -1755,17 +1657,18 @@ msgstr "Software no compatible con la DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice " -#~ "la función «Marcar todas las actualizaciones» del gestor de paquetes " +#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice la " +#~ "función «Marcar todas las actualizaciones» del gestor de paquetes " #~ "«Synaptic», o ejecute «sudo apt-get dist-upgrade» en una terminal, para " #~ "actualizar completamente su sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "Se pasarán por alto las siguientes actualizaciones:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" @@ -1788,14 +1691,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Sólo se permite la ejecución simultánea de una única herramienta de " -#~ "gestión de software" +#~ "Sólo se permite la ejecución simultánea de una única herramienta de gestión " +#~ "de software" #~ 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 "Channels" #~ msgstr "Canales" @@ -1807,7 +1709,7 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "Soporte de la instalación" #~ msgid "Software Preferences" -#~ msgstr "Preferencias del software" +#~ msgstr "Preferencias de software" #~ msgid " " #~ msgstr " " @@ -1824,9 +1726,10 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Edit Channel" #~ msgstr "Cambiar un canal" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Añadir un canal" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Añadir un canal" +#~ msgstr[1] "_Añadir canales" #~ msgid "_Custom" #~ msgstr "_Personalizado" @@ -1844,8 +1747,8 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "«Backports» de Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Cuando se exploraba la información de su repositorio, se encontró una " #~ "entrada no válida para la actualización.\n" @@ -1874,8 +1777,7 @@ msgstr "Software no compatible con la DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Descargando informe de cambios\n" +#~ "Descargando informe de cambios\n" #~ "\n" #~ "Se necesita descargar los cambios del servidor central" @@ -1907,13 +1809,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes " -#~ "actualizables. Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " +#~ "Puede actualizarlos usando el botón Instalar." #~ msgid "Repository" #~ msgstr "Repositorio" @@ -1933,20 +1835,19 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "" #~ "Claves de autenticación\n" #~ "\n" -#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una " -#~ "clave hace posible verificar la integridad del software que descarga." +#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una clave " +#~ "hace posible verificar la integridad del software que descarga." #~ msgid "A_uthentication" #~ msgstr "A_utenticación" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Añadir un nuevo archivo de clave al anillo de confianza. Asegúrese de que " -#~ "obtuvo la clave a través de un canal seguro y que confía en el " -#~ "propietario. " +#~ "obtuvo la clave a través de un canal seguro y que confía en el propietario. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Limpiar _temporalmente los archivos de paquetes" @@ -1968,8 +1869,8 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Recupera las claves entregadas originalmente con la distribución. Esto no " #~ "cambia las claves instaladas por el usuario." @@ -1997,8 +1898,8 @@ msgstr "Software no compatible con la DFSG" #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" #~ "Ésto significa que no se satisfacen algunas dependencias de los paquetes " -#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-" -#~ "get dist-upgrade\" para arreglar la situación." +#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-get " +#~ "dist-upgrade\" para arreglar la situación." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "No es posible actualizar todos los paquetes." @@ -2006,13 +1907,12 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Ésto significa que además de la actualización de los paquetes será " -#~ "necesaria alguna acción adicional (como instalar o quitar paquetes). " -#~ "Utilice la \"Actualización inteligente\" de synaptic o \"apt-get dist-" -#~ "upgrade\" para arreglar la situación." +#~ "Ésto significa que además de la actualización de los paquetes será necesaria " +#~ "alguna acción adicional (como instalar o quitar paquetes). Utilice la " +#~ "\"Actualización inteligente\" de synaptic o \"apt-get dist-upgrade\" para " +#~ "arreglar la situación." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2023,11 +1923,11 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "Se están aplicando las actualizaciones." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " -#~ "tiempo. Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " +#~ "Cierre la otra aplicación primero." #~ msgid "Updating package list..." #~ msgstr "Actualizando lista de paquetes..." @@ -2037,34 +1937,35 @@ msgstr "Software no compatible con la DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está " -#~ "usando no obtendrá más actualizaciones de seguridad ni otras " -#~ "actualizaciones críticas. Visite http://www.ubuntulinux.org para " -#~ "información acerca de cómo actualizar." +#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está usando " +#~ "no obtendrá más actualizaciones de seguridad ni otras actualizaciones " +#~ "críticas. Visite http://www.ubuntulinux.org para información acerca de cómo " +#~ "actualizar." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Hay una nueva versión de Ubuntu disponible" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Está disponible una nueva versión con el nombre '%s'. Visite http://www." -#~ "ubuntulinux.org/ para recibir instrucciones acerca de cómo actualizar." +#~ "Está disponible una nueva versión con el nombre '%s'. Visite " +#~ "http://www.ubuntulinux.org/ para recibir instrucciones acerca de cómo " +#~ "actualizar." #~ msgid "Never show this message again" #~ msgstr "No mostrar más este mensaje" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " -#~ "tiempo. Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " +#~ "Cierre la otra aplicación primero." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicializando y obteniendo lista de actualizaciones..." @@ -2099,10 +2000,10 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes " -#~ "actualizables. Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " +#~ "Puede actualizarlos usando el botón Instalar." \ No newline at end of file diff --git a/po/et.po b/po/et.po new file mode 100644 index 00000000..bf5fdba9 --- /dev/null +++ b/po/et.po @@ -0,0 +1,1432 @@ +# Estonian translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-06-10 17:42+0000\n" +"Last-Translator: margus723 \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Iga päev" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Iga kahe päeva tagant" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Iga nädal" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Iga kahe nädala tagant" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Iga %s päeva tagant" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Peale ühte nädalat" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Peale kahte nädalat" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Peale ühte kuud" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Peale %s päeva" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Sissetoomisvõti" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Valitud faili sissetoomisel ilmes viga" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "Valitud fail pole GPG võtmefail või see on rikutud." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Võtme eemaldamisel tekkis viga" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "Valitud võtit pole võimalik eemaldada" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Palun sisesta kettale nimi" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "Palun sisesta ketas masinasse:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Katkised paketid" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" +"Sinu süsteem sisaldab katkiseid pakette mida pole võimalik antud tarkvaraga " +"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-" +"get\" enne jätkamist." + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "Ei suuda uuendada nõutud metapakette" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "Hädavajalik pakett tuleks eemaldada" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "Ei suuda uuendusi ette valmistada" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "Mõnede pakettide tuvastamisel tekkis viga." + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" +"Mõndasid pakette polnud võimalik tuvastada. See võib olla mõõduv võrgu viga. " +"Sa võid hiljem uuesti proovida. Vaata järgnevalt mittetuvastatud pakettide " +"nimekirja." + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "Ei saa paigaldada '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "Vahemälu lugemine" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "Ühtegi sobivat peeglit ei leitud" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "Uuendamise ajal ilmnes viga." + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" +"Uuendamise ajal ilmnes viga. See on tavaliselt mingit sorti võrgu probleem, " +"palun kontrolli oma võrguühendust ning proovi hiljem uuesti." + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "Kõvakettal pole piisavalt vaba ruumi." + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "Ei suuda uuendusi alla laadida" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "Eemalda iganenud paketid?" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "_Jäta see samm vahele" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "_Eemalda" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "Kinnitamise küsimine" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/eu.po b/po/eu.po new file mode 100644 index 00000000..7bb543cc --- /dev/null +++ b/po/eu.po @@ -0,0 +1,1441 @@ +# Basque translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-08-08 23:53+0000\n" +"Last-Translator: Xabi Ezpeleta \n" +"Language-Team: Basque \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Egunero" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +#, fuzzy +msgid "Every two days" +msgstr "Bi egunetan behin" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Astero" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +#, fuzzy +msgid "Every two weeks" +msgstr "Bi astetan behin" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "%s egunetan behin" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Aste bat eta gero" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Bi aste eta gero" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "HIlabete bat eta gero" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "%s egun eta gero" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +#, fuzzy +msgid "Import key" +msgstr "Inportatu giltza" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +#, fuzzy +msgid "Error importing selected file" +msgstr "Errore bat suertatu da aukeratutako fitxategiak inportatzerakoan" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" +"Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +#, fuzzy +msgid "Error removing the key" +msgstr "Errorea giltza ezabatzerakoan" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +#, fuzzy +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "Aukeratutako giltza ezin izan da ezabatu. Mesedez adierazi akatsa." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +#, fuzzy +msgid "Please enter a name for the disc" +msgstr "Sartu diskarentzako izena" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +#, fuzzy +msgid "Please insert a disc in the drive:" +msgstr "Ezarri diskoa irakurgailuan:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +#, fuzzy +msgid "Broken packages" +msgstr "Hautistako paketeak" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +#, fuzzy +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" +"Zure sistemak hautsitako paketeak ditu eta ezin izan dira konpondu aplikazio " +"honekin. Konpon itzazu lehenbait lehen snaptic edo apt-get erabiliz." + +#: ../DistUpgrade/DistUpgradeCache.py:207 +#, fuzzy +msgid "Can't upgrade required meta-packages" +msgstr "Ezin izan dira berritu beharrezko meta-paketeak" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +#, fuzzy +msgid "A essential package would have to be removed" +msgstr "Ezinbesteko pakete bat ezabatu beharko da" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "Ezin da %s instalatu" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Ezin izan da beharrezko pakete bat instalatzea. Mesedez akats honen berri " +"eman. " + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/fa.po b/po/fa.po new file mode 100644 index 00000000..cb169548 --- /dev/null +++ b/po/fa.po @@ -0,0 +1,1421 @@ +# Persian translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-06-08 13:47+0000\n" +"Last-Translator: Pedram Ganjeh Hadidi \n" +"Language-Team: Persian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/fi.po b/po/fi.po index b5515135..ca9e5134 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-25 18:26+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-06 07:42+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "Joka toinen päivä" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "Viikottain" +msgstr "Viikoittain" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" @@ -54,38 +54,35 @@ msgstr "Kuukauden jälkeen" msgid "After %s days" msgstr "%s päivän jälkeen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Asennetaan päivityksiä" +msgstr "%s päivitystä" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Pääpalvelin" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Palvelin maalle %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Lähin palvelin" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Määrittele palvelin" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 @@ -98,12 +95,10 @@ msgid "Active" msgstr "Aktiivinen" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Lähdekoodi" +msgstr "(lähdekoodi)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" msgstr "Lähdekoodi" @@ -126,7 +121,8 @@ msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." @@ -158,25 +154,23 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Järjestelmäsi sisältää rikkinäisiä paketteja, joita ei voitu korjata tällä " -"ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get-komentoa ennen " +"Järjestelmä sisältää rikkinäisiä paketteja, joita ei voitu korjata tällä " +"ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get -komentoa ennen " "jatkamista." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "Ei voida päivittää tarvittavia metapaketteja" +msgstr "Tarvittavia metapaketteja ei voi päivittää" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "Ei voitu tehdä tarvittavia päivitykseen liittyviä tarkistuksia" +msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -184,12 +178,14 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Tehtäessä päivitykseen liittyviä tarkistuksia tapahtui virhe jota ei voitu " -"korjata. Ilmoita tästä virheraportilla. " +"korjata.\n" +"\n" +"Ilmoita tästä ohjelmavirheestä paketille \"update-manager\" ja sisällytä " +"tiedostot hakemistosta /var/log/dist-upgrade raporttiin." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "Joitain paketteja todennettaessa tapahtui virhe" +msgstr "Joitain paketteja varmennettaessa tapahtui virhe" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -211,15 +207,13 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Pyydettyä pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " +"Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -227,16 +221,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Järjestelmässäsi ei ole asennettuna ubuntu-desktop-, kubuntu-desktop- tai " -"edubuntu-desktop-pakettia, eikä siten onnistuttu tunnistamaan mitä Ubuntun " -"versiota käytät.\n" -"Asenna jokin luetelluista paketeista synapticilla tai apt-get-ohjelmalla " +"Järjestelmässä ei ole asennettuna ubuntu-desktop-, kubuntu-desktop- tai " +"edubuntu-desktop-pakettia, eikä käytössä olevaa Ubuntun versiota siten " +"onnistuttu tunnistamaan.\n" +" Asenna jokin luetelluista paketeista synapticilla tai apt-get-ohjelmalla " "ennen jatkamista." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Ei voitu noutaa" +msgstr "Ei voitu lisätä CD-levyä" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -247,14 +240,19 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"CD-levyä lisättäessä tapahtui virhe, päivitys keskeytyy. Tee tästä " +"virheraportti, jos kyseessä on toimiva Ubuntu-CD.\n" +"\n" +"Virheilmoitus oli:\n" +"\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "Luetaan kätköä" +msgstr "Luetaan välimuistia" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Hae tiedot verkosta päivitystä varten?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -263,10 +261,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Päivitys voi käyttää verkkoyhteyttä uusimpien päivitysten tarkistamiseksi, " +"ja noutaa paketit, jotka eivät ole CD-levyllä.\n" +"Jos sinulla on nopea tai vähän kustannuksia aiheuttava verkkoyhteys, valitse " +"\"Kyllä\". Jos verkon käyttö on kallista, valitse \"Ei\"." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "Ei löytynyt sopivaa palvelinta" +msgstr "Sopivaa peilipalvelinta ei löytynyt" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -280,18 +282,16 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "Ohjelmavarastotietoja tarkistettaessa ei löydetty sopivaa palvelinmerkintää " -"päivitystä varten. Tämä voi tapahtua jos käytät sisäistä peilipalvelinta tai " -"palvelintiedot ovat vanhentuneita.\n" +"päivitystä varten. Tämä on mahdollista, jos käytät sisäistä peilipalvelinta " +"tai palvelintiedot ovat vanhentuneet.\n" "\n" -"Haluatko uudelleenkirjoittaa \"sources.list\"-tiedoston joka tapauksessa? " -"Jos valitset \"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-" -"merkinnöiksi.\n" +"Haluatko silti kirjoittaa \"sources.list\"-tiedoston uudelleen? Jos valitset " +"\"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "Luo ja ota käyttöön oletusohjelmalähteet?" +msgstr "Lisätäänkö oletusohjelmalähteet?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -315,23 +315,22 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Ilmoita " -"tästä virheraportilla." +"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Tee " +"asiasta virheraportti." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "Kolmannen osapuolet ohjelmalähteet poissa käytöstä" +msgstr "Kolmannen osapuolen ohjelmalähteet poissa käytöstä" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" "Jotkin kolmannen osapuolen lähteet sources.list-tiedostossa ovat nyt poissa " -"käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen \"ohjelma-" -"asetukset\"-työkalulla tai Synaptic-ohjelmalla." +"käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen " +"\"Ohjelmalähteet\"-työkalulla tai Synaptic-ohjelmalla." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -360,17 +359,15 @@ msgstr "" "roskakori ja poista väliaikaistiedostot aiemmista asennuksista käyttämällä " "komentoa 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "Haluatko aloittaaa päivityksen?" +msgstr "Haluatko aloittaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "Ei voitu asentaa päivityksiä" +msgstr "Päivityksiä ei voitu asentaa" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -378,14 +375,17 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Päivitys keskeytyy. Järjestelmäsi voi olla käyttökelvottomassa tilassa. " -"Korjaustoimenpiteet suoritettiin (dpkg --configure -a)." +"Päivitys keskeytyy. Järjestelmäsi voi olla toimimattomassa tilassa. " +"Korjaustoimenpiteet suoritettiin (dpkg --configure -a).\n" +"\n" +"Tee tästä virheraportti paketille \"update-manager\" ja sisällytä tiedostot " +"hakemistosta /var/log/dist-upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,12 +393,11 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Tuki joillekin sovelluksille on loppunut" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -406,78 +405,75 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Seuraavia paketteja ei enää tueta virallisesti, vaan ovat nyt yhteisön " -"ylläpitämiä ('universe'-ohjelmat).\n" +"Canonical Ltd. ei enää tue seuraavia ohjelmapaketteja. Niitä tuetaan " +"edelleen yhteisön puolesta.\n" "\n" -"Jos sinulla ei ole 'universe'-ohjelmakanavaa otettuna käyttöön, nämä paketit " -"suositellaan poistettaviksi seuraavassa kohdassa. " +"Jos sinulla ei ole käytössä yhteisön ylläpitämien sovelluksien " +"ohjelmalähdettä (\"universe\"), näitä paketteja suositellaan poistettaviksi " +"seuraavassa kohdassa." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "Poista vanhentuneet paketit?" +msgstr "Poistetaanko vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "Virhe suoritettaesa" +msgstr "Virhe suoritettaessa" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Jokin ongelma tapahtui siistimisvaiheessa. Alla olevassa viestissä on " -"lisätietoja. " +"Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Valmistellaan päivitystä" +msgstr "Päivityksen valmistelu epäonnistui" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Tehtäessä päivitykseen liittyviä tarkistuksia tapahtui virhe jota ei voitu " -"korjata. Ilmoita tästä virheraportilla. " +"Järjestelmän valmistelu päivitystä varten epäonnistui. Ilmoita tästä " +"virheraportilla \"update-manager\"-paketille, sisällyttäen mukaan tiedostot " +"hakemistossa /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -487,207 +483,211 @@ msgid "" msgstr "" "Pakettitietojen päivitysten jälkeen pakollista ohjelmapakettia \"%s\" ei " "enää löydetty.\n" -"Tämä merkitsee vakavaa virhettä, ilmoita tästä virheraportilla." +"Tämä merkitsee vakavaa virhetilannetta, tee tästä virheraportti paketille " +"\"update-manager\" ja sisällytä tiedostot hakemistosta /var/log/dist-" +"upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "Etsitään vanhetuneita ohjelmia" +msgstr "Etsitään vanhentuneita ohjelmistoja" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "Laita '%s' asemaan '%s'" +msgstr "Aseta \"%s\" asemaan \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Päivitys on valmis" +msgstr "Nouto on valmis" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Noin %li minuuttia jäljellä" +msgstr "Noin %s jäljellä" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Noudetaan tiedostoa %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "Toteutetaan muutoksia" +msgstr "Muutoksia toteutetaan" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "Ei voituu asentaa: '%s'" +msgstr "Pakettia \"%s\" ei voitu asentaa" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"Päivitys keskeytyy. Tee tästä virheraportti paketille \"update-manager\" ja " +"sisällytä raporttiin tiedostot hakemistosta /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Korvataanko asetustiedosto\n" -"'%s'?" +"Korvataanko alkuperäisestä muutettu asetustiedosto\n" +"\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" +"Tähän asetustiedostoon tehdyt muutokset menetetään, jos se korvataan " +"uudemmalla versiolla." -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "Vakava virhe tapahtui" +msgstr "Tapahtui vakava virhe" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot /var/log/dist-" -"upgrade.log ja /var/log/dist-upgrade-apt.log. Päivitys keskeytyy nyt." +"upgrade/main.log ja /var/log/dist-upgrade/apt.log. Päivitys keskeytyy nyt.\n" +"Alkuperäinen sources.list tallennettiin nimellä " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s paketti poistetaan" -msgstr[1] "%s pakettia poistetaan" +msgstr[0] "%d paketti poistetaan." +msgstr[1] "%d pakettia poistetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s uusi paketti asennetaan" -msgstr[1] "%s uutta pakettia asennetaan" +msgstr[0] "%d uusi paketti asennetaan." +msgstr[1] "%d uutta pakettia asennetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s paketti päivitetään" -msgstr[1] "%s pakettia päivitetään" +msgstr[0] "%d paketti päivitetään." +msgstr[1] "%d pakettia päivitetään." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Noudettavaa yhteensä %s." +msgstr "" +"\n" +"\n" +"Noudettavaa yhteensä %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"Päivitys voi kestää useita tunteja, eikä sitä voi keskeyttää enää myöhemmin." +"Päivityksen noutaminen ja asennus voi kestää useita tunteja, eikä sitä voi " +"keskeyttää enää myöhemmin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "Päivityksiä ei ole saatavilla järjestelmälle. Päivitys keskeytyy." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Poista %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Asenna %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Noin %li päivää, %li tuntia, %li minuuttia jäljellä" +msgstr "%li päivää %li tuntia %li minuuttia" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Noin %li tuntia, %li minuuttia jäljellä" +msgstr "%li tuntia %li minuuttia" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minuuttia" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li sekuntia" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" +"Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "Uudellenkäynnistys vaaditaan" +msgstr "Uudelleenkäynnistys vaaditaan" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" @@ -698,7 +698,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -719,16 +718,16 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun" +"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen " +"loppuun" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Aloita päivitys?" +msgstr "Aloitetaanko päivitys?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Päivitetään Ubuntu versioon 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -743,7 +742,6 @@ msgid "Difference between the files" msgstr "Tiedostojen väliset erot" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Noudetaan ja asennetaan päivityksiä" @@ -764,13 +762,12 @@ msgid "Terminal" msgstr "Pääte" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Jatka päivitystä" +msgstr "_Peru päivitys" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Jatka" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -793,9 +790,8 @@ msgid "_Resume Upgrade" msgstr "_Jatka päivitystä" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Jatka päivitystä" +msgstr "_Aloita päivitys" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -811,12 +807,11 @@ msgstr "Ei voitu noutaa julkaisutietoja" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "Tarkista Internet-yhteytesti toimivuus." +msgstr "Tarkista Internet-yhteytesi toimivuus." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "Ei voitu suorittaa päivitystyökalua" +msgstr "Päivitystyökalua ei voitu suorittaa" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" @@ -835,15 +830,15 @@ msgstr "Päivitystyökalu ohjaa päivityksen suorittamisessa." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "Päivitä työkalun allekirjoitus" +msgstr "Päivitystyökalun allekirjoitus" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "Päivitä työkalu" +msgstr "Päivitystyökalu" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "Ei voitu noutaa" +msgstr "Nouto epäonnistui" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " @@ -852,7 +847,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "Ei voitu purkaa" +msgstr "Purku epäonnistui" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" @@ -867,7 +862,6 @@ msgid "Verfication failed" msgstr "Tarkistus epäonnistui" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " @@ -888,133 +882,120 @@ msgstr "" "verkkoyhteydessä tai palvelimessa. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" +msgstr "Noudetaan tiedostoa %(current)li/%(total)li nopeudella %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" +msgstr "Noudetaan tiedostoa %(current)li/%(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Muutosluettelo ei ole vielä saatavilla. Yritä myöhemmin uudelleen." +msgstr "Muutosluettelo ei ole saatavilla." -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Muutosluettelo ei ole vielä saatavilla. Yritä myöhemmin uudelleen." +msgstr "" +"Muutosluettelo ei ole vielä saatavilla.\n" +"Yritä myöhemmin uudelleen." -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Muutosluettelon nouto epäonnistui. Tarkista Internet-yhteytesi toimivuus." +"Muutosluettelon nouto epäonnistui. \n" +"Tarkista Internet-yhteytesi toimivuus." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 turvallisuuspäivitykset" +msgstr "Tärkeät turvallisuuspäivitykset" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Suositellut päivitykset" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Asennetaan päivityksiä" +msgstr "Ehdotetut päivitykset" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Takaisinsovitukset" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Jatka päivitystä" +msgstr "Jakelupäivitykset" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Asennetaan päivityksiä" +msgstr "Muut päivitykset" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" -msgstr "Versio: %s: \n" +msgstr "Versio %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "Noudetaan muutosluetteloa..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "Poista _valinnat" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Tarkista" +msgstr "_Tarkista kaikki" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "%s täytyy noutaa" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Voit asentaa %s päivityksen" msgstr[1] "Voit asentaa %s päivitystä" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Odota, tämä voi kestää jonkun aikaa." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Päivitys on valmis" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Tarkista saatavilla olevat päivitykset" +msgstr "Tarkistetaan päivityksiä" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Uusi versio: %s (koko: %s)" +msgstr "Versiosta %(old_version)s versioon %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Versio: %s: \n" +msgstr "Versio %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Koko: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Jakeluasi ei enää tueta" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1024,17 +1005,16 @@ msgstr "" "Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja " "päivittämisestä osoitteesta http://www.ubuntu.com/" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1044,58 +1024,50 @@ msgstr "" "Synaptic-pakettienhallintaa tai komentoa \"sudo apt-get install -f\" " "päätteessä." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 -#, fuzzy msgid "None" -msgstr "Ei-vapaa" +msgstr "Ei mitään" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 kB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f kB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Sinun täytyy tarkistaa päivitykset itse\n" -"Sinun järjestelmäsi ei tutki päivityksiä automaattisesti. Voit muuttaa näitä " -"asetuksia kohdasta \"Järjestelmä\" -> \"Ylläpito\" -> \"Ohjelmien asetukset" -"\"." +"Päivitykset tulee tarkistaa käsin\n" +"Järjestelmä ei tällä hetkellä seuraa päivityksiä automaattisesti. Voit " +"muuttaa näitä asetuksia Ohjelmalähteet-hallintatyökalun Internet-" +"päivitykset-välilehdellä." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Pidä järjestelmäsi ajan tasalla" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Virhe luettaessa CD-levyä\n" -"\n" +"Kaikkia päivityksiä ei voi asentaa \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Aloita päivitys?" +msgstr "Käynnistetään pakettienhallintaa" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1103,7 +1075,7 @@ msgstr "Muutokset" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Päivityksen muutokset ja kuvaus" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1128,6 +1100,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Suorita jakelupäivitys asentaaksesi mahdollisimman monta päivitystä. \n" +"\n" +"Tarve jakelupäivityksen käytölle voi johtua aiemmin keskeytyneestä " +"päivityksestä, asennetuista epävirallisista ohjelmapaketeista tai Ubuntun " +"kehitysversion käyttämisestä." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1142,8 +1119,8 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " -"ominaisuuksia." +"Ohjelmapäivitykset korjaavat ohjelmavirheitä ja mahdollisia turva-aukkoja, " +"sekä tarjoavat uusia ominaisuuksia." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1158,9 +1135,8 @@ msgid "_Check" msgstr "_Tarkista" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Jatka päivitystä" +msgstr "_Jakelupäivitys" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1171,31 +1147,28 @@ msgid "_Install Updates" msgstr "_Asenna päivitykset" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Muutokset" +msgstr "muutokset" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "päivitykset" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internet-päivitykset" +msgstr "Automaattiset päivitykset" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Internet-päivitykset" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internet-päivitykset" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1207,24 +1180,28 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Parantaaksesi Ubuntun käytettävyyttä voit osallistua suosiokilpailuun. " +"Tällöin asennetuista ohjelmista ja ohjelmien käyttötiheydestä kerätään " +"luetteloa, ja tiedot lähetetään nimettömänä Ubuntu-projektille viikoittain.\n" +"\n" +"Tuloksia käytetään suosittujen ohjelmien tuen parantamiseksi sekä " +"hakutulosten järjestämiseksi ohjelmia haettaessa." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Lisää _CD" +msgstr "Lisää CD" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" -msgstr "Todennus" +msgstr "Varmennus" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" msgstr "_Poista noudetut ohjelmatiedostot:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Lataus on valmis" +msgstr "Hae lähteestä:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1252,35 +1229,32 @@ msgstr "Palauta jakelusi oletusavaimet" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Ohjelmalähteet" +msgstr "Ohjelmalähteet" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" msgstr "Lähdekoodi" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Tilastot" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Lähetä tilastotietoja" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Kolmas osapuoli" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Tarkista päivitykset automaattisesti:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Lataa päivitykset taustalla, mutta älä asenna niitä" +msgstr "_Lataa päivitykset automaattisesti, mutta älä asenna niitä" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1291,7 +1265,6 @@ msgid "_Install security updates without confirmation" msgstr "_Asenna turvallisuuspäivitykset kysymättä" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1300,10 +1273,10 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Kanavatiedot ovat vanhentuneita\n" +"Tiedot saatavilla olevista ohjelmista ovat vanhentuneita\n" "\n" -"Kanavatiedot täytyy ladata uudelleen ohjelmien tai päivitysten asentamiseksi " -"uusista tai muuttuneista kanavista. \n" +"Tiedot saatavilla ohjelmista ohjelmista täytyy ladata uudelleen ohjelmien " +"tai päivitysten asentamiseksi uusista tai muuttuneista ohjelmalähteistä.\n" "\n" "Tarvitset toiminnassa olevan Internet-yhteyden jatkaaksesi." @@ -1328,7 +1301,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1336,10 +1308,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Kirjoita haluamasi kanavan koko APT-rivi\n" +"Kirjoita haluamasi ohjelmalähteen koko APT-rivi\n" "\n" -"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " -"\"deb http://ftp.debian.org sarge main\"." +"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1354,18 +1326,16 @@ msgstr "" "Lähdekoodi" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Lähdekoodi" +msgstr "Muokkaa lähdettä" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "Luetaan CD-levyä" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Lähdekoodi" +msgstr "L_isää lähde" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1389,22 +1359,21 @@ msgstr "" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "Tarkista onko uusia julkaisuja jakelusta" +msgstr "Tarkista, onko jakelusta uusia julkaisuja" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" "Jos automaattinen päivitysten tarkistaminen on poissa käytöstä, täytyy " -"kanavaluettelo ladata käsin. Tämä valinta mahdollistaa tämän muistutuksen " +"ohjelmaluettelot ladata käsin. Tämä valinta mahdollistaa tämän muistutuksen " "piilottamisen." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "Muistuta kanavaluettelon uudelleenlataamisesta" +msgstr "Muistuta kanavaluettelon uudelleen lataamisesta" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1415,7 +1384,6 @@ msgid "Stores the size of the update-manager dialog" msgstr "Tallentaa päivitystenhallintaikkunan koon" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" @@ -1427,264 +1395,202 @@ msgid "The window size" msgstr "Ikkunan koko" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Muokkaa ohjelmakanavia ja Internet-päivitysten asetuksia" +msgstr "Muokkaa asennettavien ohjelmien ja päivitysten lähteitä" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 päivitykset" +msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Yhteisön ylläpitämät (universe)" +msgstr "Yhteisön ylläpitämät" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Suljetut laiteajurit" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Muiden tarjoamat ohjelmat" +msgstr "Rajoitetut ohjelmistot" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Ubuntu 6.10 \"Edgy Eft\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +msgid "Canonical supported Open Source software" +msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmat" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Yhteisön ylläpitämät (universe)" +msgstr "Yhteisön ylläpitämät avoimen lähdekoodin ohjelmistot" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Ei-vapaat ohjelmat (multiverse)" +msgstr "Ei-vapaat ajurit" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Suljetut laiteajurit " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Ei-vapaat ohjelmat (multiverse)" +msgstr "Rajoitetut ohjelmat (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "USA:sta vientirajoitetut ohjelmat" +msgid "Software restricted by copyright or legal issues" +msgstr "Tekijänoikeus- tai lakiasioilla rajoitetut ohjelmistot" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS \"Dapper Drake\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Takaisinsovitetut päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Virallisesti tuettu" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 turvallisuuspäivitykset" +msgstr "Ubuntu 5.04 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 päivitykset" +msgstr "Ubuntu 5.04 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 takaisinsovitukset" +msgstr "Ubuntu 5.04 takaisinsovitukset" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Ubuntu 4.10 \"Warty Warthog\" -CD-levy" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Jotkin ohjelmat eivät ole enää virallisesti tuettuja" +msgstr "Ei enää virallisesti tuettu" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Rajoitettu tekijänoikeus" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 päivitykset" +msgstr "Ubuntu 4.10 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 takaisinsovitukset" +msgstr "Ubuntu 4.10 takaisinsovitukset" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" turvallisuuspäivitykset" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testattava)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (epävakaa)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "DFSG-yhteensopivat ohjelmat joilla riippuvuuksia epävapaisiin ohjelmiin" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Tekijänoikeus- tai lakiasioilla käyttörajoitetut ohjelmistot" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "Asennetaan päivityksiä" +#~ msgstr "Normaalit päivitykset" #~ msgid "Cancel _Download" #~ msgstr "Peruuta _nouto" @@ -1698,20 +1604,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "Your system has already been upgraded." #~ msgstr "Järjestelmäsi on jo päivitetty." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Päivitetään jakeluun: Ubuntu 6.06 " -#~ "LTS" +#~ "Päivitetään jakeluun Ubuntu " +#~ "6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 turvallisuuspäivitykset" +#~ msgstr "Ubuntun tärkeät turvallisuuspäivitykset" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Päivitä Ubuntun viimeisimpään versioon" +#~ msgstr "Ubuntun päivitykset" #~ msgid "Cannot install all available updates" #~ msgstr "Ei voida asentaa kaikkia saatavilla olevia päivityksiä" @@ -1724,16 +1627,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Tarkistetaan järjestelmää\n" #~ "\n" -#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat " -#~ "uusia ominaisuuksia." +#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " +#~ "ominaisuuksia." #~ msgid "Oficially supported" #~ msgstr "Virallisesti tuettu" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Jotkut päivitykset vaativat muiden ohjelmien poistoa. Käytä \"Merkitse " #~ "kaikki päivitykset\"-toimintoa Synaptic-pakettienhallintaojhelmassa, tai " @@ -1742,6 +1645,7 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "The following updates will be skipped:" #~ msgstr "Seuraavat päivitykset ohitetaan:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Noin %li sekuntia jäljellä" @@ -1777,7 +1681,7 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Asennuslähteet" #~ msgid "Software Preferences" -#~ msgstr "Ohjelma-asetukset" +#~ msgstr "Asetukset" #~ msgid "_Download updates in the background, but do not install them" #~ msgstr "_Nouda päivitykset taustalla, mutta älä asenna niitä" @@ -1797,15 +1701,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "Edit Channel" #~ msgstr "Muokkaa kanavaa" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Lisää kanava" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Lisää kanava" +#~ msgstr[1] "_Lisää kanavia" #~ msgid "_Custom" #~ msgstr "_Muu" #~ msgid "Software Properties" -#~ msgstr "Ohjelma-asetukset" +#~ msgstr "Asetukset" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "Ubuntu 6.06 LTS" @@ -1820,8 +1725,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ubuntu 6.06 LTS takaisinsovitukset" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Luettaessa varastotietoja ei löydetty kelvollisia ohjelmavarastoja " #~ "päivittämistä varten.\n" @@ -1863,12 +1768,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia." #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Sinun pitää ladata päivitystiedot uudelleen käsin\n" #~ "\n" @@ -1917,20 +1821,19 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Kirjoita haluamasi varaston koko APT-rivi\n" #~ "\n" -#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " -#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " +#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " +#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " #~ "dokumentaatiosta." #~ msgid "A_uthentication" #~ msgstr "Varmenn_us" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " -#~ "vastaanotit avaimen luotettavaa kanavaa pitkin, ja että luotat sen " -#~ "omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " +#~ "avaimen luotettavaa kanavaa pitkin, ja että luotat sen omistajaan. " #~ msgid "Automatically check for software _updates." #~ msgstr "Tarkista ohjelma_päivitykset automaattisesti." @@ -1954,8 +1857,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Maksimikoko megatavuissa:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Palauta jakelun mukana toimitetut oletusavaimet. Tämä ei muuta tai poista " #~ "itse asennettuja avaimia." @@ -1984,8 +1887,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -1998,17 +1901,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. " -#~ "If you are behind an internet connection that needs to be started by hand " -#~ "(e.g. a modem) you should use this button so that update-manager knows " -#~ "about new updates." +#~ "If you have a permanent internet connection this is done automatically. If " +#~ "you are behind an internet connection that needs to be started by hand (e.g. " +#~ "a modem) you should use this button so that update-manager knows about new " +#~ "updates." #~ msgstr "" #~ "Lataa pakettitiedot palvelimelta uudelleen. \n" #~ "\n" #~ "Jos sinulla on kiinteä Internet-yhteys, tämä tehdään automaattisesti. Jos " #~ "olet käsin muodostettavan Internet-yhteyden (esim. modeemi) takana, sinun " -#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon " -#~ "uusista päivityksistä." +#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon uusista " +#~ "päivityksistä." #~ msgid "Binary" #~ msgstr "Binääri" @@ -2034,8 +1937,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. " -#~ "Käytä \"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." +#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. Käytä " +#~ "\"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Kaikkia paketteja ei voida päivittää." @@ -2043,13 +1946,12 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita " -#~ "toimenpiteitä (kuten pakettien asentamista tai poistamista). Käytä " -#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade" -#~ "\"-komentoa korjataksesi ongelman." +#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita toimenpiteitä " +#~ "(kuten pakettien asentamista tai poistamista). Käytä Synaptic-ohjelman " +#~ "\"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade\"-komentoa " +#~ "korjataksesi ongelman." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Muutoksia ei löytynyt, palvelinta ei ole ehkä vielä päivitetty." @@ -2058,8 +1960,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Päivityksiä asennetaan." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Voit hallita paketteja vain yhdellä ohjelmalla kerrallaan. Sulje toinen " #~ "ohjelma ensin." @@ -2072,20 +1974,19 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei " -#~ "enää ole tulossa turvallisuuspäivityksiä tai muita kriittisiä " -#~ "päivityksiä. Tietoja päivittämisestä löydät sivulta http://www." -#~ "ubuntulinux.org." +#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei enää " +#~ "ole tulossa turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " +#~ "Tietoja päivittämisestä löydät sivulta http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntusta on uusi julkaisu saatavilla!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Uusi julkaisu nimeltään '%s' on saatavilla. Päivitysohjeet löydät " #~ "osoitteesta http://www.ubuntulinux.org/." @@ -2097,11 +1998,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ei saatu haluttua lukitusta" #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-" -#~ "get tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." +#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get " +#~ "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Alustetaan ja ladataan luetteloa päivityksistä..." @@ -2127,16 +2028,15 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " -#~ "vastaanotit avaimen luotettua kanavaa pitkin ja että luotat avaimen " -#~ "omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " +#~ "avaimen luotettua kanavaa pitkin ja että luotat avaimen omistajaan. " #~ msgid "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia " -#~ "käyttäjän asentamiin avaimiin." +#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia käyttäjän " +#~ "asentamiin avaimiin." #~ msgid "Ubuntu Update Manager" #~ msgstr "Ubuntun päivitysten hallinta" @@ -2144,8 +2044,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -2153,4 +2053,4 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Asenna-painiketta." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/fr.po b/po/fr.po index b521d8ba..45fa5a82 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-26 21:09+0000\n" -"Last-Translator: Claude Paroz \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-06 17:26+0000\n" +"Last-Translator: E.Malandain \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,59 +55,53 @@ msgstr "Après un mois" msgid "After %s days" msgstr "Après %s jours" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Installation des mises à jour" +msgstr "Mises à jour %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Serveur principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Serveur pour %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Serveur le plus proche" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Serveurs personnalisés" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Mises à jour des logiciels" +msgstr "Source de mise à jour" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Actif" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Source" +msgstr "(Code Source)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Source" +msgstr "Code Source" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -115,7 +109,7 @@ msgstr "Importer la clé" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Erreur lors de l'importation du fichier sélectionné" +msgstr "Erreur lors du chargement du fichier sélectionné" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -128,13 +122,14 @@ msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +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." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -173,23 +168,22 @@ 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é" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Un problème insoluble est apparu lors du calcul de la mise à jour. Merci " -"rapporter ce bogue. " +"Un problème insoluble est apparu lors du calcul de la mise à jour.\n" +"\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." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" @@ -217,13 +211,11 @@ msgstr "" "Il a été impossible d'installer un paquet pourtant requis. Merci de " "rapporter ce bogue. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -231,16 +223,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Votre système ne contient pas de paquet ubuntu-desktop, kubuntu-desktop ou " +"Votre système ne contient aucun paquet ubuntu-desktop, kubuntu-desktop ou " "edubuntu-desktop, et il n'a par conséquent pas été possible de détecter 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." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Impossible d'établir la connexion" +msgstr "Impossible d'ajouter le CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -251,6 +242,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Une erreur est survenue lors de l'ajout du CD, la mise a jour va être " +"annulée. Veuillez signaler ce bogue si le CD utilisé est un CD Ubuntu.\n" +"\n" +"Le message d'erreur est :\n" +"« %s »" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -259,6 +255,7 @@ msgstr "Lecture du cache" #: ../DistUpgrade/DistUpgradeControler.py:155 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 ?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -267,10 +264,15 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"La mise à jour peut, par le réseau, rechercher les dernières mises à jour " +"disponibles et télécharger les paquets qui ne sont pas sur le CD.\n" +"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 »." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "Aucun mirroir valide n'a pu être trouvé" +msgstr "Aucun mirroir valide trouvé" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -288,11 +290,10 @@ msgstr "" "utilisez un mirroir interne ou si les informations du mirroir sont " "obsolètes.\n" "\n" -"Souhaitez-vous que votre « sources.list'» soit malgré tout réécrit ? Si oui, " -"cela mettra à jour « %s » des « %s » entrées.\n" +"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." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" @@ -306,14 +307,14 @@ msgid "" "cancel." msgstr "" "Après analyse de votre « sources.list », aucune entrée valide pour « %s » " -"n'est pu être trouvée.\n" +"n'a pu être trouvée.\n" "\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." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "Informations sur le dépôt invalides" +msgstr "Information sur le dépôt invalide" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" @@ -328,13 +329,12 @@ msgid "Third party sources disabled" msgstr "Sources provenant de tiers désactivées" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"Certaines entrées de votre sources.list provenant de tiers ont été " +"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." @@ -353,7 +353,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" -msgstr "Il n'y a pas assez d'espace libre sur le disque" +msgstr "Pas assez d'espace libre sur le disque" #: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format @@ -362,22 +362,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Le processus de mise à jour va maintenant prendre fin. 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'." +"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 »." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Les mises à jour n'ont pu être installées" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -386,13 +383,17 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Abandon de la mise à jour. Votre système est peut-être inutilisable. Une " -"recupération a été lancée (dpkg --configure -a)." +"récupération a été lancée (dpkg --configure -a).\n" +"\n" +"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." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Les mises à jour n'ont pu être téléchargées" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,12 +401,11 @@ msgstr "" "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou " "votre médium d'installation puis réessayez. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "La prise en charge de certaines applications a pris fin" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -413,29 +413,30 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Ces paquets installées ne sont plus supportés officiellement. Ils sont " -"maintenant seulement supportées par la communauté ('universe').\n" +"Canonical Ltd. ne fournit plus de support pour les paquets logiciels " +"suivants. Ils sont maintenant seulement supportées par la communauté (« " +"universe »).\n" "\n" -"Si vous n'avez pas activé le dépot 'universe', la suppression de ces paquets " -"vous sera suggérée lors de la prochaine étape. " +"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." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes ?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Passer cette étape" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Supprimer" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Erreur pendant la soumission" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,48 +444,45 @@ msgstr "" "Un problème est survenu lors du nettoyage. Veuillez vous reporter au message " "ci-dessous pour plus d'informations. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Recherche du backport (rétro-portage) de « %s »" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Préparation de la mise à jour" +msgstr "Échec lors de la préparation de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Un problème insoluble est apparu lors du calcul de la mise à jour. Merci " -"rapporter ce bogue. " +"É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." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts en cours" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "Information sur les paquet invalides" +msgstr "Information sur le paquet invalide" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -494,55 +492,53 @@ msgid "" msgstr "" "Après la mise à jour des informations de votre paquet, le paquet « %s », " "pourtant requis, n'a pu être trouvé.\n" -"Ceci est indique qu'une erreur important s'est produite, veuillez rapporter " -"ce bogue." +"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." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Demande de confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Mise à jour en cours" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Veuillez insérer « %s » dans le lecteur « %s »" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "La mise à jour est terminée" +msgstr "La récupération des fichiers est terminée" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "Téléchargement du fichier %li sur %li à %s/s" +msgstr "Téléchargement du fichier %li sur %li en cours à %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Environ %li minutes restantes" +msgstr "Environ %s restantes" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "Téléchargement du fichier %li sur %li" +msgstr "Téléchargement du fichier %li sur %li en cours" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Application des changements" @@ -557,146 +553,152 @@ 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 bugreport." msgstr "" +"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." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Remplacer le fichier de configuration\n" +"Remplacer le fichier de configuration personnalisé\n" "« %s » ?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pu être trouvée" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Une erreur fatale est survenue" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez signaler ce bogue et joindre les fichiers /var/log/dist-upgrade.log " -"et /var/log/dist-upgrade-apt.log à votre rapport. La mise à jour est " +"et /var/log/dist-upgrade/apt.log à votre rapport. La mise à jour est " "annulée.\n" -"Votre sources.list d'origine a été sauvé dans /etc/apt/source.list." -"distUpgrade." +"Votre fichier sources.list d'origine a été enregistré dans " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "Le paquet %s va être supprimé." -msgstr[1] "Les paquets %s vont être supprimés." +msgstr[0] "%d paquet va être supprimé." +msgstr[1] "%d paquets vont être supprimés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "Le paquet %s va être installé." -msgstr[1] "Les paquets %s vont être installés." +msgstr[0] "%d nouveau paquet va être installé." +msgstr[1] "%d nouveaux paquets vont être installés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "Le paquet %s va être mis à jour." -msgstr[1] "Les paquets %s vont être mis à jour." +msgstr[0] "%d paquet va être mis à jour." +msgstr[1] "%d paquets vont être mis à jour." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Vous devez télécharger un total de %s." +msgstr "" +"\n" +"\n" +"Vous avez à télécharger un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"La mise à jour peut prendre plusieurs heures et ne peut être annulée " -"ultérieurement." +"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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 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." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Votre système est à jour" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Supprimer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Mettre à jour %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Environ %li jours %li heures %li minutes restantes" +msgstr "%li jours %li heures %li minutes" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Environ %li heures %li minutes restantes" +msgstr "%li heures %li minutes" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutes" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li secondes" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"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" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -707,12 +709,11 @@ 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 y procéder maintenant ?" +"Voulez-vous le faire dès maintenant ?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -741,7 +742,7 @@ msgstr "Démarrer la mise à jour ?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Mise à jour d'Ubuntu vers la version 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -756,9 +757,8 @@ msgid "Difference between the files" msgstr "Différence entre les fichiers" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Téléchargement et installation des mises à jour" +msgstr "Téléchargement et installation des mises à jour en cours" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -777,13 +777,12 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Reprendre la mise à jour" +msgstr "_Annuler la mise à jour" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Continuer" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -806,9 +805,8 @@ msgid "_Resume Upgrade" msgstr "_Reprendre la mise à jour" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Reprendre la mise à jour" +msgstr "_Démarrer la mise à jour" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -826,7 +824,6 @@ msgstr "Impossible de télécharger les informations de version" msgid "Please check your internet connection." msgstr "Veuillez vérifier votre connexion Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible de lancer l'outil de mise à jour" @@ -881,12 +878,11 @@ msgid "Verfication failed" msgstr "Échec de la vérification" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy 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 à échoué. Il y a peut-être un problème " +"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. " #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -902,24 +898,20 @@ msgstr "" "avec le réseau ou avec le serveur " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Téléchargement du fichier %li sur %li à %s/s" +msgstr "Téléchargement du fichier %(current)li sur %(total)li à %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Téléchargement du fichier %li sur %li à %s/s" +msgstr "Téléchargement du fichier %(current)li sur %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"La liste des modifications n'est pas encore disponible. Veuillez réessayer " -"plus tard." +msgstr "La liste des modifications n'est pas disponible" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." @@ -927,133 +919,118 @@ msgstr "" "La liste des modifications n'est pas encore disponible. Veuillez réessayer " "plus tard." -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Échec du téléchargement de la liste des modifications. Veuillez vérifier que " -"votre connexion Internet est activée." +"Échec lors du téléchargement de la liste des modifications. \n" +"Veuillez vérifier votre connexion Internet." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Mises à jour de sécurité pour Ubuntu 5.10" +msgstr "Mises à jour de sécurité" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Mises à jour recommandées" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Installation des mises à jour" +msgstr "Mises à jour suggérées" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "« Backports »" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Reprendre la mise à jour" +msgstr "Mises à jour de la distribution" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Installation des mises à jour" +msgstr "Autres mises à jour" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Version %s : \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "Téléchargement de la liste des nouveautés…" +msgstr "Téléchargement de la liste des modifications…" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "_Tout décocher" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Vérifier" +msgstr "Tout _vérifier" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Taille du téléchargement : %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format 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" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Veuillez patienter, cela peut prendre du temps." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "La mise à jour est terminée" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Rechercher les mises à jour disponibles" +msgstr "Recherche des mises à jour disponibles en cours" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nouvelle version : %s (taille : %s)" +msgstr "De la version %(old_version)s vers la version %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Version %s : \n" +msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Taille : %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Votre distribution n'est plus supportée" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -"Vous ne pouvez plus obtenir de mises à jour critiques ou de securité . Vous " +"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." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1063,59 +1040,49 @@ msgstr "" "utiliser d'abord le « Gestionnaire de paquets Synaptic » ou lancez « sudo " "apt-get install -f » dans un terminal pour réparer ce problème." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Aucun(e)" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 Ko" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f Ko" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f Mo" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Vous devez vérifier manuellement la disponibilité de mises à jour\n" +"Vous devez vérifier manuellement la disponibilité de mises à " +"jour\n" "\n" "Votre système ne vérifie pas les mises à jour automatiquement. Vous pouvez " -"configurer ce comportement dans « Système » -> « Administration » -> « " -"Gestionnaire de canaux logiciels »" +"configurer ce comportement dans Sources logicielles qui se trouve " +"dans l'onglet Mises à jour par Internet." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Maintenir votre système à jour" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Erreur lors de l'analyse du CD\n" -"\n" -"%s" +msgstr "Certaines mises à jour n'ont pu être installées" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Démarrer la mise à jour ?" +msgstr "Démarrage du gestionnaire de mise à jour ?" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1123,7 +1090,7 @@ msgstr "Changements" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Changements et description de la mise à jour" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1148,10 +1115,15 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Effectuez une mise à niveau de la distribution pour installer autant de " +"mises à jour que possible.\n" +"\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." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "Afficher l'avancement des fichiers individuels" +msgstr "Afficher la progression de chaque fichier" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" @@ -1163,7 +1135,7 @@ msgid "" "provide new features." msgstr "" "Les mises à jour de logiciels peuvent corriger des erreurs, éliminer des " -"problèmes de sécurité et apporter de nouvelles fonctionalités." +"problèmes de sécurité et apporter de nouvelles fonctionnalités." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1178,9 +1150,8 @@ msgid "_Check" msgstr "_Vérifier" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Reprendre la mise à jour" +msgstr "_Mise à jour de la distribution" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1191,31 +1162,28 @@ msgid "_Install Updates" msgstr "_Installer les mises à jour" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Changements" +msgstr "changements" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "mises à jour" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Mises à jour par Internet" +msgstr "Mises à jour automatiques" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CD-ROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Mises à jour par Internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Mises à jour par Internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1227,11 +1195,18 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Pour améliorer l'expérience utilisateur dans Ubuntu, veuillez participer " +"au sondage de popularité. Si vous le faites, la liste des logiciels " +"installés et leur fréquence d'utilisation sera collectée et envoyé de façon " +"anonyme au projet Ubuntu de manière hebdomadaire.\n" +"\n" +"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." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Ajouter un _CD-ROM" +msgstr "Ajouter un CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1242,9 +1217,8 @@ msgid "D_elete downloaded software files:" msgstr "_Effacer les fichiers des logiciels téléchargés :" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Le téléchargement est terminé" +msgstr "Télécharger depuis :" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1273,36 +1247,34 @@ msgstr "Restaurer les clés par défaut de votre distribution" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Gestionnaire de canaux logiciels" +msgstr "Sources de mise à jour" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Source" +msgstr "Code source" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistiques" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Soumettre des statistiques sur l'utilisation des paquets" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Tierces parties" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Rechercher des mises à jour automatiquement :" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" msgstr "" -"Télécharger les mises à jour en arrière-plan, mais ne pas les installer" +"_Télécharger automatiquement les mises à jour en arrière-plan, mais ne pas " +"les installer" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1313,7 +1285,6 @@ msgid "_Install security updates without confirmation" msgstr "_Installer les mises à jour de sécurité sans confirmation" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1322,14 +1293,14 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Les informations des canaux logiciels sont obsolètes\n" +"Les informations sur les logiciels disponibles sont " +"obsolètes\n" "\n" -"Vous devez recharger les informations des canaux logiciels pour installer de " -"nouveaux logiciels ou des mises à jour à partir des canaux logiciels " -"modifiés ou nouvellement ajoutés.\n" +"Pour installer de nouveaux logiciels ou des mises à jour à partir des canaux " +"logiciels modifiés ou nouvellement ajoutés, vous devez recharger ces " +"informations.\n" "\n" -"Vous devez disposer d'une connexion fonctionnelle à Internet avant de " -"continuer." +"Une connexion internet fonctionnelle sera nécessaire." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1352,7 +1323,6 @@ msgid "URI:" msgstr "URI :" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1360,11 +1330,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Saisissez la ligne APT complète du canal logiciel que vous souhaitez " -"ajouter\n" +"Saisissez la ligne APT complète du dépôt que vous souhaitez ajouter " +"à vos sources\n" "\n" -"La ligne APT contient le type, la source et le contenu d'un canal logiciel, " -"par exemple « deb http://ftp.debian.org sarge main »." +"La ligne APT contient le type, l'adresse et le contenu d'un dépôt, par " +"exemple « deb http://ftp.debian.org sarge main »." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1379,18 +1349,16 @@ msgstr "" "Source" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Source" +msgstr "Modifier la source de mise à jour" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "Examen du CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Source" +msgstr "_Ajouter une source de mise à jour" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1417,13 +1385,12 @@ msgid "Check for new distribution releases" msgstr "Vérifier les nouvelles versions de la distribution" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"Si la recherche automatique des mises à jour est désactivée, vous devrez " +"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." @@ -1440,12 +1407,11 @@ msgid "Stores the size of the update-manager dialog" msgstr "Enregistre la taille de la fenêtre du gestionnaire de mises à jour" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy 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 des " +"Enregistre l'état de développement de la liste des changements et les " "descriptions" #: ../data/update-manager.schemas.in.h:8 @@ -1453,265 +1419,205 @@ msgid "The window size" msgstr "La taille de la fenêtre" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Configurer les canaux logiciels et les mises à jour via Internet" +msgstr "" +"Configurer les canaux logiciels (sources de mise à jour) et les mises à jour " +"via Internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Mises à jour pour Ubuntu 5.10" +msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Maintenu par la communauté (Universe)" +msgstr "Maintenu par la communauté" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Pilotes propriétaires de périphériques" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Logiciel contribué" +msgstr "Logiciel non libre" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CD-ROM contenant Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu Dapper Drake 6.06" +msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +msgid "Canonical supported Open Source software" +msgstr "Logiciel libre supporté par Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Maintenu par la communauté (Universe)" +msgstr "Maintenu par la communauté (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Maintenu par la communauté (Universe)" +msgstr "Logiciel libre maintenu par la communauté" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Non-libre (Multiverse)" +msgstr "Pilotes non libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Pilotes propriétaires de périphériques " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Non-libre (Multiverse)" +msgstr "Logiciel non libre (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Logiciel restreint à l'export (USA)" +msgid "Software restricted by copyright or legal issues" +msgstr "Logiciel soumis au droit d'auteur ou à des restrictions légales" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu Dapper Drake 6.06" +msgstr "CD-ROM contenant Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Mises à jour backportées" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu Breezy Badger 5.10" +msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu Breezy Badger 5.10" +msgstr "CD-ROM contenant Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 Mises à jour de sécurité" +msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 Mises à jour de sécurité" +msgstr "CD-ROM contenant Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "Supportés officiellement" +msgstr "Supporté officiellement" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Mises à jour de sécurité pour Ubuntu 5.10" +msgstr "Mises à jour de sécurité pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Mises à jour pour Ubuntu 5.10" +msgstr "Mises à jour pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "« Backports » pour Ubuntu 5.10" +msgstr "« Backports » pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu Breezy Badger 5.10" +msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Maintenu par la communauté (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Non-libre (Multiverse)" +msgstr "Non libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "CD-ROM contenant Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Certains logiciels ne sont plus supportés officiellement" +msgstr "Support officiel terminé" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restreint" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 4.10 Mises à jour de sécurité" +msgstr "Mises à jour de sécurité pour Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Mises à jour pour Ubuntu 5.10" +msgstr "Mises à jour pour Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "« Backports » pour Ubuntu 5.10" +msgstr "« Backports » pour Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" -msgstr "Debian « Sarge » 3.1" +msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Mises à jour de sécurité pour Debian « Sarge » 3.1" +msgstr "Mises à jour de sécurité pour Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "Debian « Etch » (en test)" +msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "Debian « Sid » (instable)" +msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 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" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Logiciel restreint pour des raisons légales ou de copyright" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "Installation des mises à jour" +#~ msgstr "Mises à jour habituelles" #~ msgid "Cancel _Download" #~ msgstr "_Annuler le téléchargement" @@ -1725,20 +1631,16 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "Your system has already been upgraded." #~ msgstr "Votre système a déjà été mis à jour." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Mise à jour vers Ubuntu 6.06 LTS" +#~ "Mise à jour vers Ubuntu 6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Mises à jour de sécurité pour Ubuntu 5.10" +#~ msgstr "Mises à jour de sécurité pour Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Mettre à jour vers la version la plus récente d'Ubuntu" +#~ msgstr "Mises à jour d'Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Impossible d'installer toutes les mises à jour disponibles" @@ -1759,18 +1661,18 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ 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." +#~ "\"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 :" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Environ %li secondes restantes" @@ -1808,7 +1710,7 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgstr "Médium d'installation" #~ msgid "Software Preferences" -#~ msgstr "Gestionnaire de canaux logiciels" +#~ msgstr "Préférences du logiciel" #~ msgid " " #~ msgstr " " @@ -1825,12 +1727,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "Edit Channel" #~ msgstr "Modifier un canal logiciel" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Ajouter un canal logiciel" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Ajouter un canal logiciel" +#~ msgstr[1] "_Ajouter des canaux logiciels" #~ msgid "_Custom" -#~ msgstr "_Personnaliser" +#~ msgstr "_Personnalisé" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "Ubuntu 6.06 LTS" @@ -1845,11 +1748,11 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgstr "« Backports » pour Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "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" +#~ "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" @@ -1858,8 +1761,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "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 ?" +#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que vos " +#~ "changements soient effectifs. Voulez-vous le faire maintenant ?" #~ msgid "Sections" #~ msgstr "Catégories :" @@ -1876,8 +1779,7 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Téléchargement des changements\n" +#~ "Téléchargement des changements\n" #~ "\n" #~ "Il est nécessaire de récupérer les changement du serveur central" @@ -1909,13 +1811,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " -#~ "jour en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " +#~ "en utilisant le bouton Installer." #~ msgid "Repository" #~ msgstr "Dépôt" @@ -1936,20 +1838,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "Clés d'authentification\n" #~ "\n" #~ "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." +#~ "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" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "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. " +#~ "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" @@ -1971,8 +1873,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ 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." @@ -2009,25 +1911,23 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ 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." +#~ "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." #~ 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." +#~ "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." +#~ "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." @@ -2040,20 +1940,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Veuillez mettre à jour vers une version plus récente d'Ubuntu Linux. La " -#~ "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." +#~ "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." +#~ "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." @@ -2063,8 +1963,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. " #~ "Veuillez tout d'abord fermer cette autre application." @@ -2101,13 +2001,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " -#~ "jour en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " +#~ "en utilisant le bouton Installer." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/fur.po b/po/fur.po index c0b8f8aa..b9e9da74 100644 --- a/po/fur.po +++ b/po/fur.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-30 14:37+0000\n" -"Last-Translator: marcuz \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-08-25 05:55+0000\n" +"Last-Translator: Marco \n" "Language-Team: Friulian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,6 @@ msgstr "Dopo un mèis" msgid "After %s days" msgstr "Dopo %s dîs" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -313,16 +307,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +324,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +347,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,23 +413,22 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -466,7 +456,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -482,7 +471,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -492,50 +480,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -543,39 +530,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,12 +587,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -621,11 +606,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -727,7 +711,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,153 +784,142 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1269,229 +1241,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/gl.po b/po/gl.po index add935b6..3676102c 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,138 +1,134 @@ -# translation of gl.po to Galego -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# Ignacio Casal Quinteiro , 2005. +# translation of gl.po to galician +# translation of update-manager-gl.po to galician +# This file is distributed under the same license as the update-manager package. +# Copyright (c) 2004 Canonical +# 2004 Michiel Sikkes +# Mar Castro , 2006. # msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:42+0000\n" -"Last-Translator: Ignacio Casal Quinteiro \n" -"Language-Team: Galego\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-09-25 21:24+0000\n" +"Last-Translator: Xosé \n" +"Language-Team: galician\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.10.2\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 -#, fuzzy msgid "Daily" -msgstr "Detalles" +msgstr "Unha vez ao día" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "" +msgstr "Cada dous días" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "" +msgstr "Unha vez á semana" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "" +msgstr "Cada dúas semanas" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" -msgstr "" +msgstr "Cada %s días" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "" +msgstr "Logo dunha semana" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "" +msgstr "Logo de dúas semanas" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "" +msgstr "Logo dun mes" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" -msgstr "" +msgstr "Logo de %s días" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Instalando actualizacións..." +msgstr "actualizacións de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Servidor desde %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Servidor máis próximo" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Servidores personalizados" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Actualizacións de software" +msgstr "Canal de Software" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Activo" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Fonte" +msgstr "(Código Fonte)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Fonte" +msgstr "Código Fonte" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "Importar clave" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Erro importando o ficheiro seleccionado" +msgstr "Houbo un erro ao importar o ficheiro seleccionado" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -"O ficheiro seleccionado pode que non sexa un ficheiro de clave GPG ou que " -"esté corrupto." +"Poida que o ficheiro seleccionado non sexa un ficheiro de clave GPG ou que " +"estea corrupto." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" -msgstr "Erro ao quitar a clave" +msgstr "Houbo un erro ao borrar a clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un " -"erro." +"Non se pode borrar a clave que seleccionou. Por favor, avise disto como un " +"fallo." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -141,53 +137,58 @@ msgid "" "\n" "%s" msgstr "" +"Erro ao examinar o CD\n" +"\n" +"%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "" +msgstr "Por favor, introduza un nome para o disco" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "" +msgstr "Por favor, inserte un disco na unidade:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "" +msgstr "Paquetes rotos" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" +"O seu sistema contén paquetes rotos que non poden ser arranxados con este " +"software. Por favor, arránxeos primeiro usando Synaptic ou apt-get antes de " +"continuar." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "" +msgstr "Non se puideron actualizar os meta-paquetes necesarios" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "" +msgstr "Tívose que desinstalar un paquete esencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "Non se puido calcular a actualización" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un " -"erro. " +"Produciuse un erro imposíbel de resolver ao calcular a actualización.\n" +"\n" +"Informa deste erro do pacote \"update-manager\" e inclúe os ficheiros que " +"hai en /var/log/dist-upgrade/ no informe." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "" +msgstr "Erro autenticando algúns paquetes" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -195,25 +196,26 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"Non foi posible autenticar algúns paquetes. Isto pode ser debido a un " +"problema transitorio na rede. Probe de novo máis tarde. Vexa abaixo unha " +"lista dos paquetes non autenticados." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "" +msgstr "Non se puido instalar '%s»" #: ../DistUpgrade/DistUpgradeCache.py:313 -#, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un " -"erro. " +"Non foi posible instalar un paquete necesario. Por favor, informe disto como " +"un fallo. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "" +msgstr "Non se puido determinar o meta-paquete" #: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" @@ -223,10 +225,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" +"O teu sistema non contén os pacotes ubuntu-desktop, kubuntu-desktop ou " +"edubuntu-desktop e non foi posíbel detectar cal é a versión de ubuntu que se " +"está a executar.\n" +" Instala un dos pacotes mencionados usando synaptic ou apt-get antes de " +"continuar." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" -msgstr "" +msgstr "Non se puido engadir o CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -237,14 +244,19 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Produciuse un erro ao engadir o CD, hai que cancelar a actualización. " +"Informa deste erro se se trata dun CD válido de Ubuntu.\n" +"\n" +"A mensaxe de erro foi:\n" +"\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "" +msgstr "A ler a caché" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Procurar datos desde a rede para a actualización?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -253,10 +265,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"A actualización pode empregar a rede para comprobar as actualizacións máis " +"recentes e descarregar pacotes que non se atopan no CD.\n" +"Se dispós dde acceso rápido ou barato á rede deberías respostar \"Si\" aquí. " +"Se che custa caro, escolle \"Non\"." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "" +msgstr "Non se atopou un servidor espello válido" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -269,11 +285,18 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"Non se atopou ningunha entrada de servidor espello para a actualización " +"despois de examinar a información dos seus repositorios . Isto pode ocorrer " +"se está usando un servidor espello interno, ou se a información do servidor " +"espello está desactualizada.\n" +"\n" +"¿Desexa reescribir o seu ficheiro «sources.list» de todos os xeitos? Se " +"selecciona «Si», actualizaranse todas as entradas '%s' a '%s'.\n" +"Se selecciona «Non» cancelarase a actualización." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "Xerar orixes predeterminadas?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -283,20 +306,27 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"Tras examinar o seu «sources.list», non se atoparon entradas válidas para " +"'%s'.\n" +"\n" +"Deben engadirse entradas predeterminadas para '%s'? Se selecciona «Non» " +"cancelarse a actualización." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "Información de depósito non válida" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"A actualización da información do depósito xerou un ficheiro incorrecto. Por " +"favor, informe disto como un erro." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "" +msgstr "Orixes de terceiros desactivadas" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -304,21 +334,26 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" +"Desactiváronse algunhas entradas de terceiras partes no teu sources.list. " +"Pódelas volver a activar coa ferramenta \"software-properteis\" ou con " +"synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 -#, fuzzy msgid "Error during update" -msgstr "Erro ao quitar a clave" +msgstr "Erro durante a actualización" #: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" +"Ocorreu un problema durante a actualización. Normalmente é debido a algún " +"tipo de problema na rede, por favor, comprobe a súa conexión de rede e " +"volvao a intentar." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" -msgstr "" +msgstr "Non hai espazo suficiente no disco" #: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format @@ -327,17 +362,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"A actualización interromperase agora. Por favor, libere polo menos %s de " +"espazo en disco en %s. Vacíe a súa papelera, e elimine os paquetes temporais " +"de instalacións anteriores tecleando «sudo apt-get clean» nun terminal." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "" +msgstr "Desexa comezar a actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "" +msgstr "Non se puideron instalar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -345,22 +382,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"Vaise cancelar a actualización agora. O teu sistema podería ficar nun estado " +"que non permita ser usado. Procedeuse a recuperalo (dpkg --configure -a).\n" +"\n" +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ no informe." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" -msgstr "" +msgstr "Non se puideron descargar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" +"A actualización interromperase agora. Por favor, comprobe a súa conexión a " +"Internet (ou o seu soporte de instalación) e volvao a intentar. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Rematou o soporte para algunhas aplicacións" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -369,70 +413,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "Desinstalar os paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "" +msgstr "_Borrar" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "" +msgstr "Erro durante a confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" +"Ocorreu algún problema durante o limpado. Por favor, vexa a mensaxe inferior " +"para máis información. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "" +msgstr "A retornar ao estado orixinal do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "Xa hai outro xestor de paquetes en execución" +msgstr "Comprobando xestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Descargando cambios" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un " -"erro. " -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "Actualizando a información do repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "Información de paquete non válida" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -441,210 +480,224 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"Após actualizar a información sobre os pacotes, o pacote \"%s\", que é " +"esencial, xa non se dá atopado.\n" +"Isto indica un erro serio.\n" +"\n" +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ no informe." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "" +msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:725 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "Actualización rematada" +msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "" +msgstr "Comletouse a actualización do sistema." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "Por favor, inserte '%s' na unidade '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" -msgstr "" +msgstr "Rematou a descarga" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "A baixar o ficheiro %li de %li en %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" -msgstr "" +msgstr "Falta aproximadamente %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "A baixar o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 -#, fuzzy msgid "Applying changes" -msgstr "Descargando cambios..." +msgstr "Aplicando os cambios" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "Non se puido instalar '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"Vaise cancelar a actualización agora. Informa desde fallo do pacote \"update-" +"manager\" e inclúe os ficheiros en /var/log/dist-upgrade/ no informe." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" +"Substituir o ficheiro de configuración personalizado\n" +"\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "Non se atopou o comando 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "" +msgstr "Ocorreu un erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " +"Vaise cancelar a actualización agora.\n" +"O teu ficheiro sources.list orixinal gardouse en " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Vaise eliminar o pacote %d" +msgstr[1] "Vanse eliminar os pacotes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Vaise instalar o pacote novo %d" +msgstr[1] "Vanse instalar os pacotes novos %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Vaise actualizar o pacote %d" +msgstr[1] "Vanse actualizar os pacotes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" +"\n" +"\n" +"Baixache un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" +"Descarregar e instalar a actualización pode levar varias horas e non se pode " +"cancelar posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" +"Para previr a perda de datos peche todas as aplicacións e documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" -msgstr "O seu sistema está actualizado!" +msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Non hai actualizacións disponíbeis par o teu sistema. Cancelamos a " +"actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" -msgstr "" +msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" -msgstr "" +msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "" +msgstr "Actualizar %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li días %li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li houras %li minutos" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "" +msgstr "Compre reiniciar o equipo" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" +"A actualización finalizou e compre reiniciar o equipo. Desexa facelo agora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -657,51 +710,54 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" +"Cancelar a actualización en curso?\n" +"\n" +"O sistema podería quedar nun estado non usable se cancela a actualización. " +"Recomendámoslle encarecidamente que continúe a actualización." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" +msgstr "Reinicie o sistema para completar a actualización" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "" +msgstr "Comezar a actualización?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Actualizar Ubuntu para a versión 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "" +msgstr "Limpando" #: ../DistUpgrade/DistUpgrade.glade.h:9 -#, fuzzy msgid "Details" -msgstr "Detalles" +msgstr "Detalles" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "Diferenza entre os ficheiros" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" -msgstr "" +msgstr "A descarregar e instalar as actualizacións" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "" +msgstr "Modificando as canles de software" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "" +msgstr "Preparando a actualización" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "Reiniciando o sistema" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" -msgstr "" +msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" @@ -713,24 +769,23 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "_Conservar" #: ../DistUpgrade/DistUpgrade.glade.h:19 -#, fuzzy msgid "_Replace" -msgstr "Recargar" +msgstr "_Substituír" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "_Informar dun fallo" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "" +msgstr "_Reiniciar agora" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "" +msgstr "_Continuar actualización" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -738,88 +793,92 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "Non se puideron atopar as notas da versión" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "Poida que o servidor estea sobrecargado. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "Non se puideron descargar as notas da versión" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "Por favor, comprobe a súa conexión a Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "Non se puido executar a ferramenta de actualización" #: ../UpdateManager/DistUpgradeFetcher.py:150 -#, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" -"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un " -"erro." +"Isto parece ser un fallo na ferramenta de actualización. Por favor, informe " +"disto como un fallo" #: ../UpdateManager/DistUpgradeFetcher.py:171 -#, fuzzy msgid "Downloading the upgrade tool" -msgstr "Descargando cambios" +msgstr "Descargando a ferramenta de actualización" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." msgstr "" +"A ferramenta de actualización guiaralle a través do proceso de actualización." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "Sinatura da ferramenta de actualización" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "" +msgstr "Ferramenta de actualización" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "Erro ao descargar" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" +"Fallou a descarga da actualización. Pode haber un problema coa rede. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "Erro ao extraer" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Fallou a extracción da actualización. Pode haber un problema coa rede ou o " +"servidor. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "Erro de verificación" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Fallou a verificación da actualización. Pode que haxa algún problema coa " +"rede ou co servidor. " #: ../UpdateManager/DistUpgradeFetcher.py:228 -#, fuzzy msgid "Authentication failed" -msgstr "Autenticación" +msgstr "Erro de autenticación" #: ../UpdateManager/DistUpgradeFetcher.py:229 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" +"Fallou a autenticación da actualización. Debe haber un problema coa rede ou " +"o servidor. " #: ../UpdateManager/GtkProgress.py:108 #, python-format @@ -831,169 +890,152 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Hai unha versión nova de Ubuntu dispoñible!" +msgstr "Non se dispón da listaxe coas mudanzas" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Hai unha versión nova de Ubuntu dispoñible!" +msgstr "" -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Fallou ao descargar o informe de cambios. Comprobe se ten algunha conexión " -"activa." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Actualizacións de seguranza de Ubuntu 5.10" +msgstr "Actualizacións de seguranza importantes" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Actualizacións recomendadas" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Instalando actualizacións..." +msgstr "Actualizacións suxeridas" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backports" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "Instalando actualizacións..." +msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Instalando actualizacións..." +msgstr "Outras actualizacións" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versión %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "Descargando cambios" +msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "_Quitarlle a Selección a Todo" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "" +msgstr "_Seleccionalo Todo" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "" +msgstr "Tamaño de descarga: %s" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "Instalando actualizacións..." -msgstr[1] "Instalando actualizacións..." +msgstr[0] "Pode instalar %s actualización" +msgstr[1] "Pode instalar %s actualizacións" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "Por favor, espere; isto pode tardar un pouco." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "" +msgstr "Completouse a actualización" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Instalando actualizacións..." +msgstr "A examinar as actualizacións" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Versión %s: \n" +msgstr "Versión %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Tamaño: %s)" -#: ../UpdateManager/UpdateManager.py:825 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "A súa distribución xa non está soportada" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" +"Non poderá obter novas correcciones de seguridade nin actualizacións " +"críticas. Actualícese a unha versión posterior de Ubuntu Linux. Visite " +"http://www.ubuntu.com para máis información sobre a actualización." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Está dispoñible a nova versión '%s' da distribución" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "O índice de software está danado" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" +"É imposible instalar ou desinstalar ningún programa. Por favor, utilice o " +"xestor de paquetes \"Synaptic\", ou execute \"sudo apt-get install -f\" nun " +"terminal, para corrixir este problema primeiro." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Nengún" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 msgid "" @@ -1005,15 +1047,15 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "" +msgstr "Manteña o seu sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" +msgstr "Non se poden instalar todas as actualizacións" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" -msgstr "" +msgstr "A iniciar o xestor de actualizacións" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1021,15 +1063,15 @@ msgstr "Cambios" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Mudanzas e descrición da actualización" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "" +msgstr "_Comprobar" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "" +msgstr "Comprobar se hai novas actualizacións nas canles de software" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1037,7 +1079,7 @@ msgstr "Descrición" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "" +msgstr "Notas da versión" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1046,10 +1088,16 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Executa unha actualización da distribución para instalar tantas " +"actualizacións como sexa posíbel.\n" +"\n" +"Isto pode ser causado por unha actualización de distribución incompleta, " +"pacotes de software non oficiais ou por estares a executar unha versión en " +"desenvolvemento." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "Mostrar o progreso de cada ficheiro individual" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" @@ -1060,59 +1108,56 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" +"As actualizacións de software corrixen erros, eliminan fallos de seguridade " +"e proporcionan novas funcionalidades." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "A_ctualizar" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "" +msgstr "Actualizar á última versión de Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_Comprobar" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" -msgstr "" +msgstr "Actualización da _Distribución" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_Ocultar esta información no futuro" #: ../data/glade/UpdateManager.glade.h:24 -#, fuzzy msgid "_Install Updates" -msgstr "Instalando actualizacións..." +msgstr "_Instalar actualizacións" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Cambios" +msgstr "mudanzas" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "actualizacións" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Actualizacións por Internet" +msgstr "Actualizacións automáticas" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 -#, fuzzy msgid "Internet updates" msgstr "Actualizacións por Internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Actualizacións por Internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1124,6 +1169,13 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Para mellorar a impresión dos usuarios de Ubuntu participa no concurso de " +"popularidade. Se che parece ben, cada semana se enviará anonimamente ao " +"proxecto Ubunto unha listaxe coas aplicacións que tes instaladas e a " +"frecuencia coa que as usas.\n" +"\n" +"Os resultados empréganse para mellorar o soporte das aplicacións máis " +"populares e para resaltalas nos resultados das procuras." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1135,77 +1187,72 @@ msgstr "Autenticación" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "" +msgstr "_Borrar arquivos de software descargados:" #: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" -msgstr "" +msgstr "Descargar desde:" #: ../data/glade/SoftwareProperties.glade.h:13 -#, fuzzy msgid "Import the public key from a trusted software provider" -msgstr "Eliminar a clave seleccionada do anel de confianza." +msgstr "Importar a clave pública dende un provedor de confianza" #: ../data/glade/SoftwareProperties.glade.h:14 -#, fuzzy msgid "Internet Updates" -msgstr "Actualizacións por Internet" +msgstr "Actualizacións por Internet" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" +"Só se instalarán automaticamente as actualizacións de seguridade que " +"proveñan dos servidores oficiais de Ubuntu" #: ../data/glade/SoftwareProperties.glade.h:16 -#, fuzzy msgid "Restore _Defaults" -msgstr "Restaurar predeterminados" +msgstr "Restaurar valores predeterminados" #: ../data/glade/SoftwareProperties.glade.h:17 -#, fuzzy msgid "Restore the default keys of your distribution" -msgstr "Restaurar as claves predeterminadas" +msgstr "Restaurar as claves predeterminadas da súa distribución" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Propiedades de software" +msgstr "Fontes de Software" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Fonte" +msgstr "Código fonte" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Estatísticas" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Enviar información estatística" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Terceira Parte" #: ../data/glade/SoftwareProperties.glade.h:23 -#, fuzzy msgid "_Check for updates automatically:" -msgstr "Comprobar se hai actualizacións cada" +msgstr "_Comprobar actualizacións automaticamente:" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" -msgstr "" +msgstr "_Descarregar as actualizacións automaticamentes, mais non instalalas" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "" +msgstr "_Importar clave" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "" +msgstr "_Instalar actualizacións de seguridade sen requerir confirmación" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" @@ -1216,15 +1263,20 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" +"A información sobre o software disponíbel está anticuada\n" +"\n" +"Para instalar software e actualizacións de fontes engadidas hai pouco ou " +"modificadas terás que recargar a información sobre o software disponíbel.\n" +"\n" +"Precisarás dunha conexión á internet para continuar." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" msgstr "Comentario:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 -#, fuzzy msgid "Components:" -msgstr "Compoñentes" +msgstr "Compoñentes:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" @@ -1239,7 +1291,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1247,12 +1298,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Introduza a liña completa do repositorio APT que quere engadir\n" +"Introduce a liña APT completa do depósito que queres engadir como " +"fonte\n" "\n" -"A liña de APT contén o tipo, ubicación e contido dun repositorio, por " -"exemplo \"deb http://ftp.debian.org sarge main\". Pode atopar unha " -"descrición detallada da sintase na documentación." +"A liña APT inclúe o tipo, localización e componentes dun depósito, por " +"exemplo \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1267,27 +1317,24 @@ msgstr "" "Fonte" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Fonte" +msgstr "Modificar a Fonte" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "Analizando o CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Fonte" +msgstr "_Engadir Fonte" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 -#, fuzzy msgid "_Reload" -msgstr "Recargar" +msgstr "_Recargar" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "Mostra e instala as actualizacións dispoñibles" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" @@ -1298,10 +1345,12 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" +"Comprobar automáticamente se se atopa dispoñible unha nova versión da " +"distribución actual, e propoñer a súa actualización (se é posible)." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "" +msgstr "Comprobar se existen novas versións da distribución" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1309,590 +1358,579 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" +"Se se desactiva a comprobación automática de actualizacións terás que " +"recargar a lista de canais manualmente. Esta opción permite agochar o " +"recordatorio que se mostra neste caso." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "" +msgstr "Recorde recargar a lista de canles" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "Mostrar detalles dunha actualización" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" +msgstr "Almacena o tamaño da ventá do xestor de actualizacións" #: ../data/update-manager.schemas.in.h:7 msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" +"Almacena o estado do expandedor que contén a lista de mudanzas e a descrición" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "O tamaño da ventá" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" +msgstr "Configurar as fontes para programas e actualizacións instalábeis" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Actualizacións de Ubuntu 5.10" +msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Mantido pola comunidade (Universe)" +msgstr "Mantido pola Comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Controladores propietarios de dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Software contribuido" +msgstr "Aplicacións restrinxidas" -#. Description #: ../data/channels/Ubuntu.info.in:25 -#, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "CD con Ubuntu 4.10 \"Warty Warthog\"" +msgstr "Cdrom con Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Actualizacións de Ubuntu 5.04" +msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Mantido pola comunidade (Universe)" +msgstr "Mantido pola Comunidade (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Mantido pola comunidade (Universe)" +msgstr "Software de Código Aberto mantido pola Comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Non libre (Multiverse)" +msgstr "Controladores non libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Controladores propietarios para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Non libre (Multiverse)" +msgstr "Software restrinxido (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Software con restriccións de exportación estadounidense" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Actualizacións de Ubuntu 5.04" +msgstr "Cdrom con Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Actualizacións de backports" -#. Description #: ../data/channels/Ubuntu.info.in:110 -#, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "CD con Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "CD con Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Actualizacións de seguranza de Ubuntu 5.10" +msgstr "Actualizacións de Seguranza para Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Actualizacións de Ubuntu 5.10" +msgstr "Actualizacións para Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 -#, fuzzy msgid "Ubuntu 5.10 Backports" -msgstr "Actualizacións de Ubuntu 5.10" +msgstr "Backports de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "CD con Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "CD con Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Cdrom con Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 -#, fuzzy msgid "Officially supported" -msgstr "Soporte oficial" +msgstr "Soportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Actualizacións de seguranza de Ubuntu 5.10" +msgstr "Actualizacións de Seguranza para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Actualizacións de Ubuntu 5.10" +msgstr "Actualizacións para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Actualizacións de Ubuntu 5.10" +msgstr "Backports para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "CD con Ubuntu 4.10 \"Warty Warthog\"" +msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pola comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Non libre (Multiverse)" +msgstr "Software non libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "CD con Ubuntu 4.10 \"Warty Warthog\"" +msgstr "Cdrom con Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Soporte oficial" +msgstr "Xa non se mantén oficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "Dereito de copia restrinxido" +msgstr "Copyright restrinxido" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Actualizacións de seguranza de Ubuntu 4.10" +msgstr "Actualizacións de Seguranza para Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Actualizacións de Ubuntu 4.10" +msgstr "Actualizacións para Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Actualizacións de Ubuntu 5.10" +msgstr "Backports para Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 -#, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Actualizacións de seguranza de Debian estable" +msgstr "Actualizacións de seguridade de Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 -#, fuzzy msgid "Debian \"Etch\" (testing)" -msgstr "Debian de probas" +msgstr "Debian \"Etch\" (probas)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 -#, fuzzy msgid "Debian \"Sid\" (unstable)" -msgstr "Debian Non-US (Inestable)" +msgstr "Debian \"Sid\" (inestable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "Software compatible coa DFSG con dependencias non libres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" - -#, fuzzy -#~ msgid "Normal updates" -#~ msgstr "Instalando actualizacións..." +msgstr "Software non compatible coa DFSG" -#, fuzzy -#~ msgid "Important security updates of Ubuntu" -#~ msgstr "Actualizacións de seguranza de Ubuntu 5.10" - -#, fuzzy -#~ msgid "Cannot install all available updates" -#~ msgstr "Comprobando se hai actualizacións..." - -#, fuzzy -#~ msgid "Oficially supported" -#~ msgstr "Soporte oficial" - -#, fuzzy -#~ msgid "The upgrade aborts now. Please report this bug." +#, python-format +#~ msgid "" +#~ "Error scaning the CD\n" +#~ "\n" +#~ "%s" #~ msgstr "" -#~ "Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma " -#~ "un erro." +#~ "Erro explorando o CD\n" +#~ "\n" +#~ "%s" -#, fuzzy -#~ msgid "Hide details" -#~ msgstr "Detalles" +#~ msgid "" +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " +#~ msgstr "" +#~ "Ocorreu un problema imposible de resolver cando se calculaba a " +#~ "actualización. Por favor, informe disto como un fallo. " -#, fuzzy -#~ msgid "Channels" -#~ msgstr "Claves" +#~ msgid "" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." +#~ msgstr "" +#~ "O seu sistema non contén o paquete ubuntu-desktop, ou kubuntu-desktop, ou " +#~ "edubuntu-desktop, e non foi posible detectar que versión de Ubuntu está " +#~ "aexecutar.\n" +#~ " Por favor, instale un dos paquetes anteriores usando Synaptic ou apt-get " +#~ "antes de proceder." -#~ msgid "Keys" -#~ msgstr "Claves" +#~ msgid "" +#~ "Some third party entries in your souces.list where disabled. You can re-" +#~ "enable them after the upgrade with the 'software-properties' tool or with " +#~ "synaptic." +#~ msgstr "" +#~ "Desactiváronse algunhas entradas de terceiros no seu «sources.list». Pode " +#~ "volver a activalas trala actualización coa ferramenta «Propiedades do " +#~ "software», ou con Synaptic." -#~ msgid "Installation Media" -#~ msgstr "Soportes de instalación" +#~ msgid "" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "" +#~ "A actualización interromperase agora. O seu sistema pode quedar nun estado " +#~ "inutilizable. Estase levando a cabo unha recuperación (dpkg --configure -a)." -#~ msgid "Software Preferences" -#~ msgstr "Preferencias de software" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Algúns programas xa non están soportados oficialmente" -#~ msgid " " -#~ msgstr " " +#~ msgid "" +#~ "These installed packages are no longer officially supported, and are now " +#~ "only community-supported ('universe').\n" +#~ "\n" +#~ "If you don't have 'universe' enabled these packages will be suggested for " +#~ "removal in the next step. " +#~ msgstr "" +#~ "Estes paquetes instalados xa non están soportados oficialmente, e desde " +#~ "agora só están soportados pola comunidade («universe»).\n" +#~ "\n" +#~ "Se non ten activado o «universe», suxeriráselle que desinstale estes " +#~ "paquetes no seguinte paso. " -#, fuzzy -#~ msgid "Channel" -#~ msgstr "Claves" +#~ msgid "Restoring originale system state" +#~ msgstr "Restaurando o estado orixinal do sistema" -#, fuzzy -#~ msgid "Components" -#~ msgstr "Compoñentes" +#, python-format +#~ msgid "" +#~ "After your package information was updated the essential package '%s' can " +#~ "not be found anymore.\n" +#~ "This indicates a serious error, please report this as a bug." +#~ msgstr "" +#~ "Logo de actualizarse a información dos seus paquetes xa non é posible atopar " +#~ "o paquete esencial '%s».\n" +#~ "Isto indica un problema serio, por favor, informe disto como un fallo." -#~ msgid "_Custom" -#~ msgstr "_Personalizar" +#, python-format +#~ msgid "About %li days %li hours %li minutes remaining" +#~ msgstr "Faltan %li dias %li horas %li minutos" -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Actualizacións de Ubuntu 5.10" +#, python-format +#~ msgid "About %li hours %li minutes remaining" +#~ msgstr "Faltan %li horas %li minutos" -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Actualizacións de seguranza de Ubuntu 5.04" +#, python-format +#~ msgid "About %li minutes remaining" +#~ msgstr "Faltan %li minutos" -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Updates" -#~ msgstr "Actualizacións de Ubuntu 5.10" +#, python-format +#~ msgid "About %li seconds remaining" +#~ msgstr "Faltan %li segundos" -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Actualizacións de Ubuntu 5.10" +#~ msgid "Download is complete" +#~ msgstr "Completouse a descarga" -#, fuzzy -#~ msgid "Sections" -#~ msgstr "Seccións:" +#, python-format +#~ msgid "Downloading file %li of %li at %s/s" +#~ msgstr "Descargando ficheiro %li de %li a %s/s" -#~ msgid "Sections:" -#~ msgstr "Seccións:" +#, python-format +#~ msgid "Downloading file %li of %li" +#~ msgstr "Descargando ficheiro %li de %li" -#, fuzzy -#~ msgid "Reload the latest information about updates" -#~ msgstr "Recargar a información do paquete desde o servidor." +#~ msgid "The upgrade aborts now. Please report this bug." +#~ msgstr "" +#~ "A actualización cancelarase agora. Por favor, informe disto como un fallo." +#, python-format #~ msgid "" -#~ "Downloading changes\n" -#~ "\n" -#~ "Need to get the changes from the central server" +#~ "Replace configuration file\n" +#~ "'%s'?" #~ msgstr "" -#~ "Descargando informe de trocos\n" -#~ "\n" -#~ "Necesítanse descargar os trocos do servidor actual" - -#~ msgid "Show available updates and choose which to install" -#~ msgstr "Amosar actualización dispoñibles e escoller cales instalar" +#~ "Desexa reemplazar o ficheiro de configuración\n" +#~ "'%s'?" -#, fuzzy -#~ msgid "Error fetching the packages" -#~ msgstr "Erro ao quitar a clave" - -#~ msgid "Edit software sources and settings" -#~ msgstr "Editar fontes de software e preferencias" - -#~ msgid "Sources" -#~ msgstr "Fontes" +#~ msgid "" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +#~ msgstr "" +#~ "Por favor, informe disto como un fallo e inclúa os arquivos /var/log/dist-" +#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A actualización " +#~ "cancelarase agora.\n" +#~ "O seu arquivo «sources.list» orixinal gardouse en " +#~ "/etc/apt/sources.list.distUpgrade." -#~ msgid "day(s)" -#~ msgstr "día(s)" +#, python-format +#~ msgid "%s package is going to be removed." +#~ msgid_plural "%s packages are going to be removed." +#~ msgstr[0] "Vaise desinstalar %s paquete." +#~ msgstr[1] "Vanse desinstalar %s paquetes." -#~ msgid "Repository" -#~ msgstr "Repositorio" +#, python-format +#~ msgid "%s new package is going to be installed." +#~ msgid_plural "%s new packages are going to be installed." +#~ msgstr[0] "Vaise instalar %s paquete novo." +#~ msgstr[1] "Vanse instalar %s paquetes novos." -#~ msgid "Temporary files" -#~ msgstr "Ficheiros temporais" +#, python-format +#~ msgid "%s package is going to be upgraded." +#~ msgid_plural "%s packages are going to be upgraded." +#~ msgstr[0] "Vaise actualizar %s paquete." +#~ msgstr[1] "Vanse actualizar %s paquetes." -#~ msgid "User Interface" -#~ msgstr "Interface de usuario" +#, python-format +#~ msgid "You have to download a total of %s." +#~ msgstr "Debe descargar un total de %s." #~ msgid "" -#~ "Authentication keys\n" -#~ "\n" -#~ "You can add and remove authentication keys in this dialog. A key makes it " -#~ "possible to verify the integrity of the software you download." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" -#~ "Claves de autenticación\n" -#~ "\n" -#~ "Pode engadir e quitar claves de autenticación desde este diálogo. Unha " -#~ "clave fai posible verificar a integridade do software que descarga." +#~ "A actualización pode levar varias horas e non poderá ser cancelada despois " +#~ "en ningún momento." + +#~ msgid "Could not find any upgrades" +#~ msgstr "Non se puido atopar ningunha actualización" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "O seu sistema xa foi actualizado." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Engadir un novo ficheiro de clave de anel de confianza. Asegúrese de que " -#~ "obtivo a clave a través dun canle seguro e que confía no propietario. " +#~ "Actualizando a Ubuntu 6.06 LTS" -#~ msgid "Add repository..." -#~ msgstr "Engadir repositorio..." +#~ msgid "Downloading and installing the upgrades" +#~ msgstr "Descargando e instalando as actualizacións" -#~ msgid "Automatically check for software _updates." -#~ msgstr "Comprobar automaticamente as _actualizacións de software." +#~ msgid "Upgrading Ubuntu" +#~ msgstr "Actualizando Ubuntu" -#~ msgid "Automatically clean _temporary packages files" -#~ msgstr "Limpar _temporalmente os ficheiros de paquetes" +#~ msgid "" +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " +#~ msgstr "" +#~ "Fallou a verificación da actualización. Pode haber un problema coa rede ou o " +#~ "servidor. " -#~ msgid "Clean interval in days: " -#~ msgstr "Intervalo de limpeza en días: " +#, python-format +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "Descargando ficheiro %li de %li a %s/s" -#~ msgid "Delete _old packages in the package cache" -#~ msgstr "Borrar os paquetes _antigos da caché de paquetes" +#, python-format +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Descargando ficheiro %li de %li a velocidade descoñecida" -#~ msgid "Edit Repository..." -#~ msgstr "Editar repositorio..." +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "" +#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo máis " +#~ "tarde." -#~ msgid "Maximum age in days:" -#~ msgstr "Idade máxima en días:" +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "" +#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión a " +#~ "Internet." -#~ msgid "Maximum size in MB:" -#~ msgstr "Tamaño máximo en MB:" +#~ msgid "Cannot install all available updates" +#~ msgstr "Non se puideron instalar todas as actualizacións dispoñibles" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "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 "" -#~ "Recupera as claves entregadas orixinalmente coa distribución. Isto non " -#~ "cambiará as claves instaladas polo usuario." +#~ "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." -#~ msgid "Set _maximum size for the package cache" -#~ msgstr "Establecer tamaño _máximo para a caché de paquetes" +#~ msgid "The following updates will be skipped:" +#~ msgstr "Pasaranse por alto as seguintes actualizacións:" -#~ msgid "Settings" -#~ msgstr "Preferencias" +#~ msgid "Downloading the list of changes..." +#~ msgstr "Descargando a lista de cambios..." -#~ msgid "Show detailed package versions" -#~ msgstr "Amosar versións detalladas do paquete" - -#~ msgid "Show disabled software sources" -#~ msgstr "Amosar fontes de software desactivado" +#~ msgid "Hide details" +#~ msgstr "Ocultar detalles" -#~ msgid "Update interval in days: " -#~ msgstr "Intervalo de actualización en días: " +#~ msgid "Show details" +#~ msgstr "Mostrar detalles" -#~ msgid "_Add Repository" -#~ msgstr "_Engadir repositorio" +#, python-format +#~ msgid "New version: %s (Size: %s)" +#~ msgstr "Nova versión: %s (Tamaño: %s)" -#~ msgid "_Download upgradable packages" -#~ msgstr "_Descargar paquetes actualizables" +#~ msgid "Only one software management tool is allowed to run at the same time" +#~ msgstr "Só se pode executar unha ferramenta de xestión de software ao tempo" -#~ msgid "Status:" -#~ msgstr "Estado:" +#~ 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»)." #~ msgid "" -#~ "Available Updates\n" +#~ "You must check for updates manually\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Actualizacións dispoñibles\n" +#~ "Debe comprobar as actualizacións manualmente\n" #~ "\n" -#~ "O xestor de actualizacións atopou os seguintes paquetes actualizables. " -#~ "Pode actualizalos usando o botón Instalar." - -#~ msgid "Cancel downloading the changelog" -#~ msgstr "Cancelar a descarga do informe de cambios" +#~ "O seu sistema non comproba as actualizacións automatimente. Pode configurar " +#~ "este comportamento en \"Sistema\" -> \"Administración\" -> \"Propiedades do " +#~ "software\"." -#~ msgid "You need to be root to run this program" -#~ msgstr "Necesita ser root para executar este programa" +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Analizando o seu sistema\n" +#~ "\n" +#~ "As actualizacións de software corrixen erros, eliminan fallos de seguridade " +#~ "e proporcionan novas funcionalidades." -#~ msgid "Binary" -#~ msgstr "Binario" +#~ msgid "Cancel _Download" +#~ msgstr "Cancelar _descarga" -#~ msgid "Non-free software" -#~ msgstr "Software non libre" +#~ msgid "Channels" +#~ msgstr "Canles" -#~ msgid "Debian 3.0 \"Woody\"" -#~ msgstr "Debian 3.0 \"Woody\"" +#~ msgid "Keys" +#~ msgstr "Claves" -#~ msgid "Debian Stable" -#~ msgstr "Debian estable" +#~ msgid "Add _Cdrom" +#~ msgstr "Engadir _CD-ROM" -#~ msgid "Debian Unstable \"Sid\"" -#~ msgstr "Debian inestable \"Sid\"" +#~ msgid "Installation Media" +#~ msgstr "Soporte da instalación" -#~ msgid "Debian Non-US (Stable)" -#~ msgstr "Debian Non-US (Estable)" +#~ msgid "Software Preferences" +#~ msgstr "Preferencias do software" -#~ msgid "Debian Non-US (Testing)" -#~ msgstr "Debian Non-US (Probas)" +#~ msgid "_Download updates in the background, but do not install them" +#~ msgstr "_Descargar actualizacións en segundo plano, pero sen instalalas" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "" -#~ "Clave de asinado automático do ficheiro de Ubuntu " +#~ msgid " " +#~ msgstr " " -#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgid "" +#~ "The channel information is out-of-date\n" +#~ "\n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" +#~ "\n" +#~ "You need a working internet connection to continue." #~ msgstr "" -#~ "Clave de asinado automático das imaxes de CD de Ubuntu " - -#~ msgid "Choose a key-file" -#~ msgstr "Escolla un ficheiro de clave" +#~ "A información das canles está obsoleta\n" +#~ "\n" +#~ "Debe recargar a información das canles para poder instalar software e " +#~ "actualizacións a partir das canles recientemente engadidas ou cambiadas. \n" +#~ "\n" +#~ "Necesita unha conexión a internet para continuar." -#~ msgid "There is one package available for updating." -#~ msgstr "Hai un paquete dispoñible para ser actualizado." +#~ msgid "Channel" +#~ msgstr "Canles" -#~ msgid "There are %s packages available for updating." -#~ msgstr "Hai %s paquetes dispoñibles para ser actualizados." +#~ msgid "Components" +#~ msgstr "Compoñentes" -#~ msgid "There are no updated packages" -#~ msgstr "Non hai paquetes actualizados" +#~ msgid "" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a channel, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." +#~ msgstr "" +#~ "Introduza a liña de APT completa da canle que queira " +#~ "engadir\n" +#~ "\n" +#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, por " +#~ "exemplo \"deb http://ftp.debian.org sarge main\"." -#~ msgid "You did not select any of the %s updated package" -#~ msgid_plural "You did not select any of the %s updated packages" -#~ msgstr[0] "Non seleccionou ningún %s paquete actualizable" -#~ msgstr[1] "Non seleccionou ningún dos %s paquetes actualizables" +#~ msgid "Add Channel" +#~ msgstr "Engadir unha canle" -#~ msgid "You have selected %s updated package, size %s" -#~ msgid_plural "You have selected all %s updated packages, total size %s" -#~ msgstr[0] "Seleccionou %s paquete actualizable, tamaño %s" -#~ msgstr[1] "Seleccionou %s paquetes actualizables, de tamaño total %s" +#~ msgid "Edit Channel" +#~ msgstr "Cambiar unha canle" -#~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" -#~ msgstr[0] "Seleccionou %s paquete actualizable de %s, de tamaño %s" -#~ msgstr[1] "Seleccionou %s paquetes actualizables de %s, de tamaño total %s" +#~ msgid "_Add Channel" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Engadir unha canle" +#~ msgstr[1] "_Engadir canles" -#~ msgid "The updates are being applied." -#~ msgstr "Estanse aplicando as actualizacións." +#~ msgid "_Custom" +#~ msgstr "_Personalizado" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "If automatic checking for updates is disabeld, you have to reload the " +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" -#~ "Só pode executar unha aplicación de xestión de paquetes ao mesmo tempo. " -#~ "Por favor peche a outra aplicación primeiro." +#~ "Se se desactiva a comprobación automática de actualizacións, debe recargar a " +#~ "lista de canles manualmente. Esta opción permítelle ocultar a notificación " +#~ "que se mostra neste caso." -#~ msgid "Updating package list..." -#~ msgstr "Actualizando a lista de paquetes..." +#~ msgid "" +#~ "Stores the state of the expander that contains the list of changs and the " +#~ "description" +#~ msgstr "" +#~ "Almacena o estado do expansor que contén a lista de cambios e as súas " +#~ "descricións" -#~ msgid "There are no updates available." -#~ msgstr "Non hai actualizacións dispoñibles." +#~ msgid "Configure software channels and internet updates" +#~ msgstr "Configura canles de software e actualizacións por Internet" -#~ msgid "New version:" -#~ msgstr "Nova versión:" +#~ msgid "Software Properties" +#~ msgstr "Propiedades do software" -#~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." -#~ msgstr "" -#~ "Por favor actualícese a unha versión de Ubuntu linux. A versión que está " -#~ "usando non obterá máis actualizacións de seguranza nin outras " -#~ "actualizacións críticas. Visite http://www.ubuntulinux.org para máis " -#~ "información acerca de como actualizar." +#~ msgid "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" -#~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." -#~ msgstr "" -#~ "Está dispoñible unha nova versión co nome '%s'. Por favor visite http://" -#~ "www.ubuntulinux.org para recibir instruccións de como actualizar." +#~ msgid "Ubuntu 6.06 LTS Security Updates" +#~ msgstr "Actualizacións de seguridade de Ubuntu 6.06 LTS" -#~ msgid "Never show this message again" -#~ msgstr "Non amosar máis esta mensaxe" +#~ msgid "Ubuntu 6.06 LTS Updates" +#~ msgstr "Actualizacións de Ubuntu 6.06 LTS" -#~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "" -#~ "Non se atopou o informe de cambios, pode que o servidor non esté " -#~ "actualizado aínda." +#~ msgid "Ubuntu 6.06 LTS Backports" +#~ msgstr "«Backports» de Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/he.po b/po/he.po index f88c527b..50a7c398 100644 --- a/po/he.po +++ b/po/he.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-30 11:15+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-09-30 14:09+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" @@ -21,7 +21,6 @@ msgstr "" "X-Generator: KBabel 1.10.2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 -#, fuzzy msgid "Daily" msgstr "מידי יום" @@ -59,34 +58,31 @@ msgstr "אחרי חודש" msgid "After %s days" msgstr "אחרי %s ימים" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "מתקין עדכונים..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "שרת ראשי" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "השרת ב%s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "השרת הקרוב ביותר" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" @@ -101,21 +97,19 @@ msgstr "עדכוני תוכנה" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "פעיל" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "מקור" +msgstr "(קוד מקור)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "מקור" +msgstr "קוד מקור" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "יבוא מפתח" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" @@ -130,11 +124,12 @@ msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -146,7 +141,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "" +msgstr "אנא הזן שם לדיסק" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" @@ -166,16 +161,15 @@ msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "" +msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "לא ניתן לחשב את השדרוג" #: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy @@ -188,10 +182,9 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "" +msgstr "שגיאה באימות חלק מן החבילות" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -211,10 +204,9 @@ msgid "" "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "" +msgstr "לא ניתן לקבוע חבילת על" #: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy @@ -230,7 +222,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" -msgstr "" +msgstr "הוספת התקליטור נכשלה" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -241,14 +233,19 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"אירעה שגיאה בהוספת התקליטור, לכן השדרוג בוטל. אנא דווחו על כך כבאג אם מדובר " +"בתקליטור אובונטו תקני.\n" +"\n" +"הודעת השגיאה הייתה:\n" +"\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "" +msgstr "קורא מטמון" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "להוריד מידע מהאינטרנט לצורך השדרוג?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -260,7 +257,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "" +msgstr "לא נמצא אתר מראה תקני" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -273,11 +270,17 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"בעת סריקת מידע מאגרי התוכנה שלך לא נמצאה הפנייה לשרת מראה לצורך השדרוג. שרת " +"מראה מקומי או הפניה לשרת שפג תוקפה עשויים להיות הסיבה לכך.\n" +"\n" +"האם ברצונך לעדכון את רשימת המקורות (sources.list) בכל מקרה? אישור יגרום " +"לעדכון כל ההפניות \"%s\" ל-\"%s\".\n" +"\n" +"בחירה ב\"לא\" תבטל את העדכון." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "לייצר מקורות ברירת מחדל?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -287,20 +290,23 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"לאחר סריקת רשימת המקורות שלך (sources.list) לא נמצא רישום מתאים ל\"%s\".\n" +"\n" +"האם לקבוע את ברירת המחדל כרישום ל\"%s\"? בחירה ב\"לא\" תבטל את העדכון." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "מידע מאגרים לא תקין" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" +msgstr "עדכון מידע המאגרים יצר קובץ לא תקין. אנא דווחו על כך כבאג." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "" +msgstr "מקורות של ספקי צד שלישי בוטלו" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -332,17 +338,18 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"השדרגו יתבטל כעת. יש לפנות לפחות %s מהשטח ב-%s. רוקנו את הזבל והסירו חבילות " +"זמניות מהתקנות קודמות על ידי שימוש בפקודה \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -351,22 +358,22 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. אנא בדקו את החיבור לאינטרנט או את מדיית ההתקנה ונסו שנית. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "המיכה בכמה תוכנות הסתיימה" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -375,71 +382,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "להסיר חבילות שאינן בתוקף?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_דלג על השלב" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_הסר" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "" +msgstr "שגיאה בעת ביצוע" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" +msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 #, fuzzy msgid "Restoring original system state" msgstr "מאתחל את המערכת" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "" +msgstr "בודק את מנהל החבילות" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "מכין את השדרוג" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" -"כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "מעדכן מידע מאגרים" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "מידע חבילה לא תקין" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -450,23 +451,22 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "משדרג" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -478,24 +478,23 @@ msgid "Fetching is complete" msgstr "ההורדה הושלמה" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה." #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "נותרו %li דקות." #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "מוריד קובץ %li מתוך %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -504,7 +503,7 @@ msgstr "מוריד שינויים..." #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "לא ניתן להתקין את \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -512,7 +511,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -522,138 +520,137 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "" +msgstr "ארעה שגיאה חמורה" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "חבילה %s תשודרג." msgstr[1] "%s חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "חבילה חדשה %s תותקן." msgstr[1] "%s חבילות חדשות יותקנו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "חבילה %s תשודרג." msgstr[1] "%s חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "יש להוריד %s בסה\"כ." +msgstr "" +"\n" +"\n" +"יש להוריד %s בסה\"כ. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "השדרוג עשוי לקחת מספר שעות, ולא ניתן לבטלו בשלב מאוחר יותר." +msgstr "" +"הורדת והתקנת השדרוג עשויה לארוך מספר שעות. לא ניתן לבטל את התהליך בשלב מאוחר " +"יותר." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" -msgstr "המערכת שלך מעודכנת!" +msgstr "המערכת שלך מעודכנת" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "אין שדרוגים זמינים למערכת שלך. השדרוג יתבטל כעת." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "הסר %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "התקן %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "שדרג %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "נותרו בערך %li ימים, %li שעות ו-%li דקות." +msgstr "%li ימים, %li שעות ו-%li דקות" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "נותרו בערך %li שעות ו-%li דקות." +msgstr "%li שעות ו-%li דקות" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li דקות" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%liשניות" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "" +msgstr "נדרשת הפעלה מחדש" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" +msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם ברצונך לעשות זאת כעת?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -666,36 +663,38 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" +"לבטל את השדרוג המתבצע?\n" +"\n" +"המערכת עלולה להיות בלתי שמישה אם תבטלו את השדרוג. מומלץ ביותר להמשיך את מהלך " +"השדרוג." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" +msgstr "להפעיל מחדש את המערכת כדי להשלים את השדרוג?" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "" +msgstr "להתחיל את השדרוג?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "משדרג את אובונטו לגרסה 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "" +msgstr "מסדר ומנקה" #: ../DistUpgrade/DistUpgrade.glade.h:9 -#, fuzzy msgid "Details" -msgstr "פרטים" +msgstr "פרטים" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "ההבדל בין הרבצים" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "לא ניתן להתקין את השדרוג" +msgstr "מוריד ומתקין את השדרוג" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -714,9 +713,8 @@ msgid "Terminal" msgstr "מסוף" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_המשך בשידרוג" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -743,45 +741,41 @@ msgid "_Resume Upgrade" msgstr "_המשך בשידרוג" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_המשך בשידרוג" +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "לא ניתן למצוא הערות שיחרור גירסה" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "השרת עלול להיות עמוס מדי. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "לא ניתן להוריד הערות שחרור גירסה." #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "אנא בדקו את החיבור לאינטרנט." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "לא ניתן להריץ את כלי השדרוג" #: ../UpdateManager/DistUpgradeFetcher.py:150 -#, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." +msgstr "זהו כנראה באג בכלי השדרוג. אנא דווחו על זה כבאג." #: ../UpdateManager/DistUpgradeFetcher.py:171 -#, fuzzy msgid "Downloading the upgrade tool" -msgstr "מוריד שינוייים" +msgstr "מוריד את כלי השדרוג" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "כלי השדרוג ינחה אותך בתהליך השדרוג." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -793,28 +787,27 @@ msgstr "כלי שדרוג" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "ההורדה נכשלה" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" +msgstr "הורדת השדרוג נכשלה. עלולה להיות בעיית רשת. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "החילוץ נכשל" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" +msgstr "חילוץ השדרוג נכשל. עלולה להיות בעיה עם הרשת או השרת. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "האימות נכשל" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " @@ -831,173 +824,155 @@ msgid "" msgstr "אימות השדרוג נכשל. עלולה להיות בעיה עם הרשת או עם השרת. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" +msgstr "" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" +msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "גרסה חדשה של אובונטו זמינה!" +msgstr "רשימת השינויים אינה זמינה" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "גרסה חדשה של אובונטו זמינה!" +msgstr "" -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "נכשל בהורדת השינויים. אנא בדוק אם החיבור לאינטרנט עובד." +msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "עדכוני אבטחה - אובונטו 5.10" +msgstr "עדכוני אבטחה חשובים" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "עדכונים מומלצים" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "מתקין עדכונים..." +msgstr "עדכונים מוצעים" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_המשך בשידרוג" +msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "מתקין עדכונים..." +msgstr "עדכונים אחרים" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "גרסה %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "מוריד שינוייים" +msgstr "מוריד רשימת שינויים..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "" +msgstr "גודל ההורדה: %s" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "מתקין עדכונים..." msgstr[1] "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "אנא חכו, התהליך לארוך זמן מה." -#: ../UpdateManager/UpdateManager.py:650 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "ההורדה הושלמה" +msgstr "העדכון הושלם" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "מתקין עדכונים..." +msgstr "מחפש עדכונים" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "גרסה %s: \n" +msgstr "גרסה %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(גודל: %s)" -#: ../UpdateManager/UpdateManager.py:825 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" -msgstr "ההפצה שלך כבר לא נתמכת, סליחה." +msgstr "גרסת ההפצה שלך אינה נתמכת יותר" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" +"המערכת שלכם לא תקבל עדכוני אבטחה יותר. אנא שדרגו אותו לגירסה מאוחרת יותר של " +"אובונטו לינוקס. ראו http://www.ubuntu.com למידע נוסף על שידרוג המערכת." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "גירסה חדשה של ההפצה, \"%s\", זמינה" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "אינדקס התוכנות פגום" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" +"אי אפשר להתקין או להסיר אף תוכנה. יש להשתמש במנהל החבילות \"Synaptic\" או " +"להפעיל את הפקודה \"sudo apt-get install -f\" במסוף כדי לתקן בעיה זו." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1016,20 +991,12 @@ msgid "Keep your system up-to-date" msgstr "" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"שגיאה בסריקת התקליטור\n" -"\n" -"%s" +msgstr "לא ניתן להתקין את כל העדכונים" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "" -"שגיאה בסריקת התקליטור\n" -"\n" -"%s" +msgstr "פותח את מנהל העדכונים" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1037,15 +1004,15 @@ msgstr "שינויים" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "שינויים ותיאור העדכון" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "" +msgstr "בדו_ק" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "" +msgstr "בדיקת המצאות עדכונים במאגרי התוכנה" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1053,7 +1020,7 @@ msgstr "תיאור" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "" +msgstr "הערות שחרור גירסה" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1065,7 +1032,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "הראה התקדמות כל קובץ" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" @@ -1075,19 +1042,19 @@ msgstr "עדכוני תוכנה" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" +msgstr "עדכוני תוכנה מתקנים שגיאות ופרצות אבטחה ומוסיפים תכונות חדשות." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "ש_דרג" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "" +msgstr "שדרוג המערכת לגירסה החדשה של אובונטו." #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_בדוק" #: ../data/glade/UpdateManager.glade.h:22 #, fuzzy @@ -1096,7 +1063,7 @@ msgstr "_המשך בשידרוג" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_הסתר מידע זה בעתיד" #: ../data/glade/UpdateManager.glade.h:24 #, fuzzy @@ -1104,32 +1071,28 @@ msgid "_Install Updates" msgstr "מתקין עדכונים..." #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" msgstr "שינויים" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "עדכונים" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "עדכוני אינטרנט" +msgstr "עדכונים אוטומטיים" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "תקליטור/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 -#, fuzzy msgid "Internet updates" msgstr "עדכוני אינטרנט" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "עדכוני אינטרנט" +msgstr "אינטרנט" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1141,10 +1104,16 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +" כדי לשפר את החוויה למשתמש באובונטו, אנא קחו חלק בתחרות הפופולריות. אם " +"תעשו כן רשימת התוכנות המותקנות ותכיפות השימוש בהן תשלח אנונימית לפרוייקט " +"אובונטו מיד שבוע.\n" +"\n" +"בתוצאות נעשה שימוש כדי לשפר את התמיכה בתוכנות פופולריות, ולדרג את היישומים " +"בתוצאות החיפוש." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" -msgstr "" +msgstr "הוסף תקליטור" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1155,9 +1124,8 @@ msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "ההורדה הושלמה" +msgstr "הורד מ:" #: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy @@ -1165,20 +1133,18 @@ msgid "Import the public key from a trusted software provider" msgstr "הסר את המפתח הנבחר מרשימת המפתחות שאתה בוטח בהם." #: ../data/glade/SoftwareProperties.glade.h:14 -#, fuzzy msgid "Internet Updates" -msgstr "עדכוני אינטרנט" +msgstr "עדכוני אינטרנט" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "" +msgstr "רק עדכוני אבטחה משרתי אובונטו הרשמיים יותקנו באופן אוטומטי." #: ../data/glade/SoftwareProperties.glade.h:16 -#, fuzzy msgid "Restore _Defaults" -msgstr "שחזר ברירת מחדל" +msgstr "שחזר _ברירת מחדל" #: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy @@ -1187,35 +1153,32 @@ msgstr "שחזר מפתחות ברירת מחדל" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "מאפייני תוכנה" +msgstr "מקורות תוכנה" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "מקור" +msgstr "קוד מקור" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "סטטיסטיקה" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "שלח מידע סטטיסטי" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "צד שלישי" #: ../data/glade/SoftwareProperties.glade.h:23 -#, fuzzy msgid "_Check for updates automatically:" -msgstr "בדוק לעדכונים כל" +msgstr "_חפש עדכונים אוטומטית:" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" -msgstr "" +msgstr "_הורד עדכונים באופן אוטומטי, אך אל תתקין אותם" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1223,7 +1186,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "" +msgstr "_התקן עדכוני אבטחה ללא הודעה" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" @@ -1267,8 +1230,8 @@ msgid "" msgstr "" "הכנס את שורת APT השלמה של המאגר שברצונך להוסיף\n" "\n" -"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb http://ftp.debian." -"org sarge main\"\n" +"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb " +"http://ftp.debian.org sarge main\"\n" "אפשר למצוא הסבר מפורט על זה בתיעוד." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 @@ -1290,7 +1253,7 @@ msgstr "מקור" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "סורק תקליטור" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 #, fuzzy @@ -1304,7 +1267,7 @@ msgstr "טען מחדש" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "הצג והתקן העדכונים הזמינים" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" @@ -1314,11 +1277,11 @@ msgstr "מנהל עדכונים" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "" +msgstr "בדוק אוטומטית אם גירסה חדשה של הפצה זו זמינה, והצע לשדרג (אם ניתן)." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "" +msgstr "חפש גירסאות חדשות להפצה" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1333,7 +1296,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "הצג פרטי עדכונים" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" @@ -1347,273 +1310,278 @@ msgstr "" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "גודל החלון" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" +msgstr "הגדרת מקורות התוכנות להתקנה והעדכונים" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "עדכונים - אובונטו 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "מתוחזק ע\"י קהילה (Universe(" +msgstr "מתוחזק ע\"י הקהילה" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "דרייברים קניינים להתקנים" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "תוכנה שנתרמה" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "עדכונים - אובונטו 5.04" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "מתוחזק ע\"י קהילה (Universe(" +msgstr "מתוחזק ע\"י הקהילה (Universe(" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "מתוחזק ע\"י קהילה (Universe(" +msgstr "תוכנות קוד פתוח המתוחזקות ע\"י הקהילה" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "לא-חופשי (Multiverse(" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "לא-חופשי (Multiverse(" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "תוכנה מוגבלת בארה\"ב" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "עדכונים - אובונטו 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "נתמך רשמית" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "לא-חופשי (Multiverse(" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "נתמך רשמית" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "זכויות יוצרים מגבילות" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "עדכונים - אובונטו 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "דביאן 3.1 \"סארג'\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "עדכוני אבטחה - דביאן יציב" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "דביאן בדיקה" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "דביאן לא ארה\"ב (לא יציב)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" -#, fuzzy +#, python-format +#~ msgid "" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" +#~ msgstr "ההורדה תיקח בערך %s עם מודם 56k ובערך %s עם חיבור DSL במהירות 1Mbit" + +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "רשימת השינויים לא זמינה עדיין. נסו שנית מאוחר יותר." + +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "נכשל בהורדת רשימת השינויים. אנא בדוק אם החיבור לאינטרנט עובד." + +#~ msgid "By Canonical supported Open Source software" +#~ msgstr "תוכנות קוד פתוח הנתמכות ע\"י Canonical" + +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "תוכונות המוגבלות ע\"י זכויות יוצרים או בעיות משפטיות" + +#~ msgid "" +#~ "Canonical Ltd. no longer provides support for the following software " +#~ "packages. You can still get support from the community.\n" +#~ "\n" +#~ "If you havn't enabled community maintained software (universe), these " +#~ "packages will be suggested for removal in the next step." +#~ msgstr "" +#~ "Canonical Ltd. לא תומכת יותר בחבילות התוכנה הבאות. עדיין ניתן לקבל תמיכה " +#~ "מהקהילה.\n" +#~ "\n" +#~ "אם אל אפשרת התקנת תוכנות המתחוזקות ע\"י הקהילה (universe), החבילות האלה " +#~ "יסומנו להסרה בצעד הבא." + +#, python-format +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "מתקין עדכונים..." +#~ msgstr "עדכונים רגילים" + +#~ msgid "Downloading the list of changes..." +#~ msgstr "מוריד את רשימת השינויים..." + +#~ msgid "" +#~ "You must check for updates manually\n" +#~ "\n" +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ msgstr "" +#~ "יש לחפש עדכונים ידניתg>\n" +#~ "\n" +#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת\"-" +#~ "> \"ניהול\" -> \"אפשרויות תוכנה\"." + +#~ msgid "Cancel _Download" +#~ msgstr "בטל _הורדה" #~ msgid "Could not find any upgrades" #~ msgstr "לא ניתן למצוא שדרוג זמין" @@ -1636,6 +1604,7 @@ msgstr "" #~ msgid "Oficially supported" #~ msgstr "נתמך רשמית" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "נותרו %li שניות." @@ -1750,8 +1719,8 @@ msgstr "" #~ "תקינות התוכנה שאתה מוריד." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "הוסף קובץ מפתח חדש לרשימת המפתחות שאתה בוטח בהם. אנא וודא שאתה שקיבלת את " #~ "המפתח בדרך מאובטחת ושאתה בוטח בבעלים. " @@ -1781,8 +1750,8 @@ msgstr "" #~ msgstr "גודל מקסימלי במגה-בתים:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "שחזר את מפתחות ברירת המחדל שבאו עם ההפצה. זה לא ישנה את המפתחות המותקנים." @@ -1813,8 +1782,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "עדכונים זמינים\n" #~ "\n" @@ -1886,8 +1855,7 @@ msgstr "" #~ msgstr[1] "בחרת את כל %s החבילות המעודכנות, בגודל כולל של %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "בחרת %s מתוך חבילה מעודכנת אחת, בגודל של %s" #~ msgstr[1] "בחרת %s מתוך %s חבילות מעודכנות, בגודל כולל של %s" @@ -1895,8 +1863,8 @@ msgstr "" #~ msgstr "העדכונים מתבצעים כרגע." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "אפשר להריץ רק מנהל חבילות אחד באותו זמן. אנא סגור מנהלי חבילות אחרים קודם." @@ -1911,16 +1879,16 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת " -#~ "עדכוני אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org " -#~ "בשביל מידע אודות שדרוג." +#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת עדכוני " +#~ "אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org בשביל " +#~ "מידע אודות שדרוג." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "הפצה חדשה עם שם קוד '%s' זמינה. אנא ראה http://www.ubuntulinux.org/ בשביל " #~ "הוראות שדרוג." @@ -1929,4 +1897,4 @@ msgstr "" #~ msgstr "אל תראה את הודעה זו שוב." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." +#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." \ No newline at end of file diff --git a/po/hi.po b/po/hi.po index 7712f25f..6eea2d4a 100644 --- a/po/hi.po +++ b/po/hi.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:46+0000\n" -"Last-Translator: Rosetta Administrators \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-08-01 15:30+0000\n" +"Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,43 +19,42 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -msgstr "" +msgstr "प्रतिदिन" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "" +msgstr "हर दो दिन" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "" +msgstr "साप्ताहिक" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "" +msgstr "हर दो हफ्तों में" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" -msgstr "" +msgstr "हर %s दिन में" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "" +msgstr "एक हफ्ते बाद" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "" +msgstr "दो हफ्ते बाद" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "" +msgstr "एक महीने बाद" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" -msgstr "" +msgstr "%s दिन बाद" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -108,11 +105,11 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "कुंजी आयात करें" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "" +msgstr "चुने हुये दस्तावेज को आयात करने में त्रुटि" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -313,16 +307,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +324,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +347,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,23 +413,22 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -466,7 +456,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -482,7 +471,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -492,50 +480,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -543,39 +530,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,12 +587,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -621,7 +606,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -727,7 +711,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,153 +784,142 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1269,232 +1241,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/hr.po b/po/hr.po index 90a7741f..fb78eb28 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-24 20:54+0000\n" -"Last-Translator: Ante Karamatić \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:38+0000\n" +"Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,57 +56,53 @@ msgstr "Nakon mjesec dana" msgid "After %s days" msgstr "Nakon %s dana" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "_Instaliraj nadogradnje" +msgstr "%s nadogradnje" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Glavni poslužitelj" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Poslužitelj za %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Najbliži poslužitelj" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Osobni poslužitelji" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Nadogradnje programa" +msgstr "Softverski repozitorij" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Aktivno" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Izvorni kod)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Izvorni kod" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -125,12 +121,13 @@ msgid "Error removing the key" msgstr "Greška prilikom brisanja ključa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +165,6 @@ msgstr "Ne mogu nadograditi potrebne meta-pakete" msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" @@ -182,9 +178,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " -"prijavite ovo kao grešku. " +"prijavite ovo kao grešku." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" @@ -212,7 +207,6 @@ msgstr "" "Nije bilo moguće instalirati potreban paket. Molimo prijavite ovo kao " "grešku. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" @@ -232,9 +226,8 @@ msgstr "" "koristeći synaptic ili apt-get." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Preuzimanje nije uspjelo" +msgstr "Dodavanje CDa nije uspjelo" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -245,6 +238,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Došlo je do greške prilikom dodavanja CDa zbog kojeg će nadogradnja biti " +"prekinuta. Molim, prijavite ovo kao grešku, ako je ovo ispravan Ubuntu CD.\n" +"\n" +"Poruka je bila:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -252,7 +250,7 @@ msgstr "Čitam spremnik" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Preuzeti podatke za nadogradnju putem mreže?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -261,6 +259,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Nadogradnja može provjeriti dostupnost novih paketa i preuzeti pakete putem " +"Interneta, ukoliko nisu na CD-u.\n" +"Ako imate brz ili jeftin pristup mreži, trebali biste odgovoriti 'Da' ovdje. " +"Ukoliko ne želite preuzeti pakete putem mreže, odgovorite 'Ne'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -285,7 +287,6 @@ msgstr "" "odaberete 'Da' nadograditi će se svih '%s' do '%s' unosa.\n" "Ako odaberete 'ne' nadogradnja će se prekinuti." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" @@ -298,8 +299,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za '%" -"s'.\n" +"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za " +"'%s'.\n" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." @@ -357,17 +358,15 @@ msgstr "" "Ispraznite smeće i uklonite privremene pakete od prošlih instalacija " "koristeći 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -376,13 +375,16 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " -"Obnavljanje je pokrenuto (dpkg --configure -a)." +"Obnavljanje je pokrenuto (dpkg --configure -a).\n" +"\n" +"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke u " +"/var/log/dist-upgrade/ direktoriju u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +392,11 @@ msgstr "" "Nadogradnja se prekida. Molim provjerite vašu internet vezu ili " "instalacijski medij i pokušajte ponovo. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -407,25 +409,25 @@ msgstr "" "repozitoriju kojeg održava zajednica ('Universe').\n" "\n" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " -"uklanjanje. " +"uklanjanje." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Preskoči ovaj korak" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Ukloni" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Greška prilikom čina" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,29 +435,27 @@ msgstr "" "Neki problemi su se pojavili prilikom čišćenja. Molim pogledajte poruku za " "više informacija. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Pripremam nadogradnju" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -463,18 +463,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " -"prijavite ovo kao grešku. " +"prijavite ovo kao grešku." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Neispravni podaci paketa" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -484,54 +484,53 @@ msgid "" msgstr "" "Nakon što su podaci paketa nadograđeni, bitan paket '%s' se ne može više " "naći.\n" -"Ovo upućuje na ozbiljnu grešku, molim prijavite ovo kao bug." +"Ovo upućuje na ozbiljnu grešku, molim prijavite ovo kao grešku u 'update-" +"manager' paketu i uključite datoteke u /var/log/dist-upgrade/ direktoriju u " +"prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Pitam za potvrdu" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Nadograđujem" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Molim, ubacite '%s' u uređaj '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Nadogradnja je gotova" +msgstr "Preuzimanje je završeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Otprilike je ostalo %li minuta" +msgstr "Otprilike je ostalo %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Preuzimam datoteku %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Primjenjujem promjene" @@ -546,10 +545,11 @@ 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 bugreport." msgstr "" +"Nadogradnja se prekida. Molim, prijavite ovu grešku za 'update-manager' " +"paket i uključite u prijavu datoteke iz /var/log/dist-upgrade direktorija." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -559,67 +559,68 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Pojavila se ozbiljna greška" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-upgrade.log " -"i /var/log/dist-upgrade-apt.log u vaše izvješće. Nadogradnja se sada " -"prekida.\n" -"Vaša originalna sources.list datoteka je spremljena u /etc/apt/sources.list." -"distUpgrade." +"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-" +"upgrade/main.log i /var/log/dist-upgrade-apt.log u vaše izvješće. " +"Nadogradnja se sada prekida.\n" +"Vaša originalna sources.list datoteka je spremljena u " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket će biti uklonjen." msgstr[1] "%s paketa će biti uklonjena." msgstr[2] "%s paketa će biti uklonjeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s novi paket će biti instaliran." msgstr[1] "%s nova paketa će biti instalirana." msgstr[2] "%s novih paketa će biti instalirano." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket će biti nadograđen." msgstr[1] "%s paketa će biti nadograđena." msgstr[2] "%s paketa će biti nadograđeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Morate preuzeti ukupno %s." +msgstr "" +"\n" +"\n" +"Morate preuzeti ukupno %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -628,64 +629,62 @@ msgstr "" "Nadogradnja može potrajati nekoliko sati i ne može biti prekinuta niti u " "jednom trenutku." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Ukloni %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instaliraj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Otprilike je ostalo %li dana %li say i %li minuta" +msgstr "%li dana %li sati i %li minuta" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Otprilike je ostalo %li sati i %li minuta" +msgstr "%li sati i %li minuta" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minuta" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li sekundi" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -702,7 +701,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -723,8 +721,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ponovno pokretanje računala potrebno je za završetak nadogradnje" +"Ponovno pokretanje računala potrebno je za završetak " +"nadogradnje" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -817,7 +815,6 @@ msgstr "Nisam mogao dobaviti bilješke izdanja" msgid "Please check your internet connection." msgstr "Molim, provjerite vašu internet vezu." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nisam mogao pokrenuti alat za nadogradnju" @@ -851,7 +848,8 @@ msgstr "Preuzimanje nije uspjelo" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Preuzimanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži. " +msgstr "" +"Preuzimanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -891,22 +889,20 @@ msgstr "" "poslužiteljem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Preuzimam datoteku %li od %li pri %s/s" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." +msgstr "Popis promjena nije dostupan." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" @@ -914,7 +910,7 @@ msgid "" msgstr "" "Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -923,64 +919,57 @@ msgstr "" "Preuzimanje popisa promjena nije uspjelo. Molim, provjerite svoju internet " "vezu." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 sigurnosne nadogradnje" +msgstr "Važne sigurnosne nadogradnje" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Preporučene nadogradnje" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "_Instaliraj nadogradnje" +msgstr "Predložene nadogradnje" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 backporti" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Nastavi nadogradnju" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "_Instaliraj nadogradnje" +msgstr "Druge nadogradnje" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Verzija %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Preuzimam popis promjena..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "Pro_vjeri" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Veličina preuzimanja: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -988,40 +977,39 @@ msgstr[0] "Možete instalirati %s nadogradnju" msgstr[1] "Možete instalirati %s nadogradnje" msgstr[2] "Možete instalirati %s nadogradnji" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Molim pričekajte, ovo može potrajati." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Nadogradnja je gotova" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "_Instaliraj nadogradnje" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nova verzija: %s (Veličina: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Verzija %s: \n" +msgstr "Verzija %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Veličina: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Vaša distibucija više nije podržana" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1031,17 +1019,16 @@ msgstr "" "na noviju verziju Ubuntu Linuxa. Pogledajte na http://www.ubuntu.com za više " "detalja o nadogradnji." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Novo izdanje distribucije, '%s', je dostupno" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Popis programa je oštećen" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1051,27 +1038,23 @@ msgstr "" "upravitelja paketima \"Synaptic\" ili upišite \"sudo apt-get install -f\" u " "terminal za ispravljanje ovog problema." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Ništa" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1109,7 +1092,7 @@ msgstr "Promjene" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Promjene i opis nadogradnje" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1177,31 +1160,28 @@ msgid "_Install Updates" msgstr "_Instaliraj nadogradnje" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Promjene" +msgstr "promjene" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "nadogradnje" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internet nadogradnje" +msgstr "Automatske nadogradnje" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Internet nadogradnje" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internet nadogradnje" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1213,6 +1193,12 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Kako bismo poboljšali Ubuntu, molim odvojite trenutak i sudjelujte u " +"anketi. Ako to želite, lista instaliranog softvera i periodičnost njegove " +"uporabe biti će anonimno poslana Ubuntu projektu svaki tjedan.\n" +"\n" +"Rezultati će se iskoristiti kako bi se povećala podrška za popularne " +"programe i kako bi se programi rangirali više na ljestvici pretrage." #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy @@ -1228,9 +1214,8 @@ msgid "D_elete downloaded software files:" msgstr "_Obriši dobavljene datoteke programa:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Preuzimanje je završeno" +msgstr "Preuzimanje sa:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1258,34 +1243,32 @@ msgstr "Vrati uobičajene ključeve vaše distribucije" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Postavke nadogradnje" +msgstr "Softver repozitoriji" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Izvorni kod" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistike" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Pošalji statističke informacije" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Treća strana" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Provjeri postojanje nadogradnji automatski:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "P_reuzmi nadogradnje u pozadini, ali ih ne instaliraj" +msgstr "P_reuzmi nadogradnje automatski, ali ih ne instaliraj" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1341,8 +1324,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Unesite kompletnu APT liniju repozitorija koji želite dodati\n" +"Unesite kompletnu APT liniju repozitorija koji želite " +"dodati\n" "\n" "APT linija uključuje vstu, lokaciju i komponente kanala, na primjer \"deb " "http://ftp.debian.org sarge main\"." @@ -1361,7 +1344,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Uredi izvor" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1369,7 +1352,7 @@ msgstr "Pretražujem CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "_Dodaj izvor" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1430,256 +1413,195 @@ msgid "The window size" msgstr "Veličina prozora" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Podesi repozitorije i internet nadogradnje" +msgstr "Podesi repozitorije i nadogradnje" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 osvježenja" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Održavani od strane zajednice (Universe)" +msgstr "Održavani od strane zajednice" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Neslobodni upogonitelji za uređaje" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Neslobodni (Multiverse)" +msgstr "Neslobodni softver" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CDROM sa Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Održavani od strane zajednice (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Održavani od strane zajednice (Universe)" +msgstr "Održavani od strane zajednice (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Održavani od strane zajednice (Universe)" +msgstr "Softver održavan od strane zajednice" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Neslobodni (Multiverse)" +msgstr "Neslobodni pogonski programi" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Neslobodni upogonitelji za uređaje " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Neslobodni (Multiverse)" +msgstr "Ograničeni softver (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "CDROM s Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Backport nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 osvježenja" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backporti" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Cdrom sa Ubuntu 5.04 ' Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Službeno podržani" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 sigurnosne nadogradnje" +msgstr "Ubuntu 5.04 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 osvježenja" +msgstr "Ubuntu 5.04 nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 backporti" +msgstr "Ubuntu 5.04 backporti" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Wart Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Održavani od strane zajednice (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodni (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cdrom sa Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Neki paketi više nisu službeno podržani" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ograničeno autorsko pravo" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 sigurnosne nadogradnje" +msgstr "Ubuntu 4.10 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 osvježenja" +msgstr "Ubuntu 4.10 osvježenja" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 backporti" +msgstr "Ubuntu 4.10 backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sigurnosne nadogradnje" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testni)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (nestabilni)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilni programi sa neslobodnim ovisnostima" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" @@ -1699,20 +1621,16 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "Your system has already been upgraded." #~ msgstr "Vaš sustav je već nadograđen." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Nadograđujem na Ubuntu 6.06 LTS" +#~ "Nadograđujem na Ubuntu 6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 sigurnosne nadogradnje" +#~ msgstr "Uvezi sigurnosne nadogradnje za Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Nadogradi na zadnju verziju Ubuntua" +#~ msgstr "Ubuntu nadogradnje" #~ msgid "Cannot install all available updates" #~ msgstr "Ne mogu instalirati sve dostupne nadogradnje" @@ -1734,8 +1652,8 @@ msgstr "DFSG-nekompatibilni programi" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Neke nadogradnje zahtijevaju uklanjanje pojedinih programa. Upotrijebite " #~ "opciju \"Označi sve nadogradnje\" upravitelja paketima \"Synaptic\" ili " @@ -1745,6 +1663,7 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "The following updates will be skipped:" #~ msgstr "Slijedeći paketi će biti preskočeni:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Otprilike je ostalo %li sekundi" @@ -1797,9 +1716,11 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "Edit Channel" #~ msgstr "Uredi repozitorij" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Dodaj repozitorij" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Dodaj repozitorij" +#~ msgstr[1] "_Dodaj repoztorije" +#~ msgstr[2] "_Dodaj repozotrije" #~ msgid "_Custom" #~ msgstr "_Prilagođeno" @@ -1814,4 +1735,4 @@ msgstr "DFSG-nekompatibilni programi" #~ msgstr "Ubuntu 6.06 LTS osvježenja" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backporti" +#~ msgstr "Ubuntu 6.06 LTS backporti" \ No newline at end of file diff --git a/po/hu.po b/po/hu.po index ab35a0d7..e7f789c0 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-28 21:22+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-06 10:07+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" @@ -55,57 +55,53 @@ msgstr "Egy hónap után" msgid "After %s days" msgstr "%s nap után" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "_Telepítés" +msgstr "%s frissítés" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Fő kiszolgáló" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Kiszolgáló a következőhöz: %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Legközelebbi kiszolgáló" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Egyéni kiszolgálók" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Szoftverfrissítések" +msgstr "Szoftvercsatorna" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Aktív" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Forráskód)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Forráskód" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -124,12 +120,13 @@ msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"Az Ön által kijelölt kulcs nem távolítható el. Kérem, jelentse ezt hibaként." +"Az Ön által kijelölt kulcs nem távolítható el. Kérem jelentse ezt hibaként." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,23 +165,22 @@ msgstr "A szükséges meta-csomagok nem frissíthetőek" msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"A frissítés megtervezése közben feloldhatatlan probléma lépett fel. Kérem, " -"jelentse ezt hibaként. " +"A frissítés megtervezése közben feloldhatatlan probléma lépett fel.\n" +"\n" +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " +"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" @@ -210,13 +206,11 @@ msgid "" "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -227,13 +221,12 @@ msgstr "" "Az Ön rendszere nem tartalmazza az ubuntu-desktop, kubuntu-desktop vagy " "edubuntu-desktop csomagok egyikét sem, és nem lehetett megállapítani, hogy " "az Ubuntu mely változatát használja.\n" -" Kérem, előbb telepítse a fenti csomagok egyikét a synaptic vagy az apt-get " -"használatával." +" A folytatás előtt telepítse a fenti csomagok egyikét a synaptic vagy az apt-" +"get használatával." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "A letöltés meghiúsult" +msgstr "A CD hozzáadsa meghiúsult" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -244,6 +237,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Hiba történt a CD hozzáadása során, a frissítés félbeszakad. Jelentse ezt " +"hibaként, ha ez egy érvényes Ubuntu CD.\n" +"\n" +"A hibaüzenet:\n" +"\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -251,7 +249,7 @@ msgstr "Gyorsítótár beolvasása" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Letölt adatokat a hálózatról a frissítéshez?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -260,6 +258,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"A frissítés használhatja a hálózatot a legújabb frissítések ellenőrzésére és " +"letöltheti a jelenlegi CD-n el nem érhető csomagokat.\n" +"Ha gyors vagy olcsó hálózati kapcsolattal rendelkezik, válaszoljon igennel. " +"Ha a hálózat elérése drásga, válaszoljon nemmel." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -285,7 +287,6 @@ msgstr "" "frissítve. \n" "A \"Nem\" kiválasztása megszakítja a frissítést." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" @@ -321,15 +322,14 @@ msgid "Third party sources disabled" msgstr "A külső források letiltva" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"A sources.list néhány külső forrása le lett tiltva. Újraengedélyezheti őket " -"a frissítés után a Szoftvertulajdonságok eszközzel, vagy a Synaptic " -"csomagkezelővel." +"A sources.list néhány harmadik féltól származó forrása le lett tiltva. " +"Újraengedélyezheti őket a frissítés után a Szoftvertulajdonságok eszközzel, " +"vagy a Synaptic csomagkezelővel." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -354,21 +354,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) %" -"s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " +"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) " +"%s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " "fájljait a \"sudo apt-get clean\" parancs kiadásával." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -377,13 +375,16 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " -"állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a)." +"állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a).\n" +"\n" +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " +"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +392,11 @@ msgstr "" "A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy " "a telepítő médiát és próbálja újra. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Egyes alkalmazások támogatása megszűnt" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -408,25 +409,25 @@ msgstr "" "közösség által (\"universe\").\n" "\n" "Ha nincs engedélyezve a \"universe\" tároló, akkor ezek a csomagok a " -"következő lépésben ki lesznek jelölve eltávolításra. " +"következő lépésben ki lesznek jelölve eltávolításra." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "Ezen lé_pés kihagyása" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Eltávolítás" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,29 +435,27 @@ msgstr "" "A frissítés befejező fázisa közben hiba lépett fel. Az alábbi üzenet további " "információkat tartalmaz a hibára vonatkozóan. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "\"%s\" visszaportolt változatának letöltése" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Frissítés előkészítése" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -464,18 +463,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "A frissítés megtervezése közben feloldhatatlan probléma lépett fel. Kérem, " -"jelentse ezt hibaként. " +"jelentse ezt hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "Csomagtároló információ frissítése" +msgstr "Csomagtároló-információk frissítése" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -485,54 +484,53 @@ msgid "" msgstr "" "A csomaginformációk frissítése után a(z) \"%s\" alapvető csomag nem " "található többé.\n" -"Ez egy komoly problémát jelez, jelentse hibaként." +"Ez egy komoly problémát jelez, jelentse ezt a hibát az \"update-manager\" " +"csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " +"fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Megerősítés kérése" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Frissítés folyamatban" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Helyezze be a következő médiát: '%s', ebbe a meghajtóba: '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "A frissítés befejeződött" +msgstr "A letöltés befejeződött" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s" +msgstr "Fájl letöltése (%li., összesen: %li), sebesség: %s/mp" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Kb. %li perc van hátra" +msgstr "Kb. %s van hátra" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Fájl letöltése: %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Módosítások alkalmazása..." @@ -547,144 +545,149 @@ 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 bugreport." msgstr "" +"A frissítés most félbeszakad. Jelentse ezt a hibát az \"update-manager\" " +"csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " +"fájlokat a hibajelentésbe." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Lecseréli a(z)\n" +"Lecseréli a személyre szabott\n" "\"%s\"\n" "konfigurációs fájlt?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" +"A beállítófájl összes módosítása elvész, ha lecseréli az újabb verzióra." -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "A 'diff' parancs nem található" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Végzetes hiba történt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Kérem, jelentse ezt hibaként és a hibajelentéshez mellékelje a /var/log/dist-" -"upgrade.log és /va/log/dist-upgrade-apt.log fájlokat. A frissítés most " +"Jelentse ezt hibaként és a hibajelentéshez mellékelje a /var/log/dist-" +"upgrade/main.log és /var/log/dist-upgrade/apt.log fájlokat. A frissítés most " "félbeszakad.\n" "Az eredeti sources.list /etc/apt/sources.list.distUpgrade néven került " "mentésre." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s csomag el lesz távolítva." +msgstr[0] "%d csomag el lesz távolítva." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s új csomag kerül telepítésre." +msgstr[0] "%d új csomag kerül telepítésre." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s csomag frissítve lesz." +msgstr[0] "%d csomag frissítve lesz." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Összes letöltendő adatmennyiség: %s." +msgstr "" +"\n" +"\n" +"Összes letöltendő adatmennyiség: %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"A frissítés több órát is igénybe vehet és a későbbiek során nem lehet " -"bármikor megszakítani." +"A frissítés letöltése és telepítése több órát is igénybe vehet és a " +"későbbiek során nem lehet bármikor megszakítani." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Nem állnak rendelkezésre frissítések a rendszeréhez. A frissítés most " +"megszakad." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s eltávolítása" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s telepítése" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s frissítése" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Kb. %li nap, %li óra és %li perc van hátra" +msgstr "%li nap, %li óra és %li perc van hátra" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Kb. %li óra és %li perc van hátra" +msgstr "Kb. %li óra és %li perc" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li perc" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li másodperc" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" +"A letöltés körülbelül %s-ig tart 1 Mbit DSL kapcsolaton és %s-ig 56k modem " +"használatával" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -700,7 +703,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -728,7 +730,7 @@ msgstr "Megkezdi a frissítést?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Az Ubuntu frissítése a 6.10-es változatra." #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -770,7 +772,7 @@ msgstr "Frissítés _folytatása" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "Folytatás" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -813,7 +815,6 @@ msgstr "A kiadási megjegyzések nem tölthetők le" msgid "Please check your internet connection." msgstr "Kérjük ellenőrizze az internetkapcsolatát." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nem sikerült futtatni a frissítőeszközt" @@ -888,28 +889,27 @@ msgstr "" "kiszolgálóval. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." +msgstr "A módosítások listája nem érhető el" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -918,103 +918,92 @@ msgstr "" "A módosítások listájának letöltése meghiúsult. Ellenőrizze az " "internetkapcsolatát." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 biztonsági frissítések" +msgstr "Fontos biztonsági frissítések" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Ajánlott frissítések" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "_Telepítés" +msgstr "Javasolt frissítések" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Visszaportolt csomagok" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "Frissítés _folytatása" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "_Telepítés" +msgstr "Egyéb frissítések" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "%s verzió: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Módosítások listájának letöltése..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "_Kijelölések törlése" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Ellenőrzés" +msgstr "Összes _ellenőrzése" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Letöltés mérete: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s frissítést telepíthet" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Kis türelmet, ez eltarthat egy ideig." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "A frissítés befejeződött" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "_Telepítés" +msgstr "Frissítések keresése" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Új verzió: %s (Méret: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "%s verzió: \n" +msgstr "%s verzió" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Méret: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "A terjesztés már nem támogatott" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1024,17 +1013,16 @@ msgstr "" "Frissítsen az Ubuntu Linux egy újabb változatára. A frissítéssel kapcsolatos " "információkat az http://www.ubuntu.com weboldalon talál." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "A szoftverindex sérült" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1044,27 +1032,23 @@ msgstr "" "csomagkezelőt vagy futtassa a \"sudo apt-get install -f\" parancsot egy " "terminálban a probléma megoldása érdekében." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Nincs" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1074,8 +1058,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Önnek kézzel kell megkeresnie a rendelkezésre álló frissítéseket\n" +"Önnek kézzel kell megkeresnie a rendelkezésre álló " +"frissítéseket\n" "\n" "Az Ön rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a " "viselkedést a \"Rendszer\" -> \"Adminisztráció\" -> \"Szoftverbeállítások\" " @@ -1086,17 +1070,15 @@ msgid "Keep your system up-to-date" msgstr "Tartsa naprakészen a rendszerét" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Hiba történt a CD beolvasása közben\n" -"\n" +"Nem minden frissítés telepíthető \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Megkezdi a frissítést?" +msgstr "Frissítéskezelő indítása" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1104,7 +1086,7 @@ msgstr "Módosítások" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "A frissítés módosításai és leírása" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1129,6 +1111,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Disztribúciófrissítés futtatása, a lehető legtöbb frissítés telepítése " +"érdekében. \n" +"\n" +"Ezt egy befejezetlen frissítés, nem hivatalos szoftverforrások vagy " +"fejlesztői verzió futtatása okozhatja." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1159,9 +1146,8 @@ msgid "_Check" msgstr "_Ellenőrzés" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "Frissítés _folytatása" +msgstr "_Disztribúció frissítése" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1172,31 +1158,28 @@ msgid "_Install Updates" msgstr "_Telepítés" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Módosítások" +msgstr "módosítás" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "frissítés" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Hálózati frissítések" +msgstr "Automatikus frissítések" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CD-ROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Hálózati frissítések" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Hálózati frissítések" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1208,6 +1191,13 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Az Ubuntu által biztosított felhasználói élmény javítása érdekében kérjük " +"vegyen részt a népszerűségi versenyben. Ha így dönt, akkor a telepített " +"szoftverek listája és azok használatának gyakorisága hetente összegyűjtésre " +"és névtelenül elküldésre kerül az Ubuntu projektnek.\n" +"\n" +"Az eredmények a népszerű alkalmazások támogatásának javításához és a " +"keresési eredmények rangsorolásához kerülnek felhasználásra." #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy @@ -1223,9 +1213,8 @@ msgid "D_elete downloaded software files:" msgstr "L_etöltött csomagok törlése:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "A letöltés befejeződött" +msgstr "Letöltés innen:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1253,34 +1242,32 @@ msgstr "A disztribúcióra jellemző alapértelmezett kulcsok visszaállítása" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Szoftvertulajdonságok" +msgstr "Szoftverforrások" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Forráskód" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statisztika" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Statisztikai információk beküldése" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Harmadik fél" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Frissítések automatikus keresése:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "Frissítések _letöltése a háttérben, telepítés nélkül" +msgstr "Frissítések automatikus _letöltése, a telepítésük nélkül" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1291,7 +1278,6 @@ msgid "_Install security updates without confirmation" msgstr "_Biztonsági frissítések telepítése megerősítés nélkül" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1300,10 +1286,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A csatornainformáció elévült\n" +"Az elérhető szoftverekkel kapcsolatos információk " +"elévültek\n" "\n" -"Új szoftverek telepítéséhez vagy frissítéséhez újra kell tölteni az újonnan " -"hozzáadott vagy módosított csatornák információit. \n" +"Szoftverek és frissítések telepítéséhez újonnan felvett vagy módosított " +"forrásokból, újra le kell töltenie az elérhető szoftverekkel kapcsolatos " +"információkat.\n" "\n" "A folytatáshoz működő hálózati kapcsolatra van szükség." @@ -1328,7 +1316,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1336,10 +1323,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Adja meg a felvenni kívánt csatorna teljes APT sorát\n" +"Adja meg a forrásként felvenni kívánt tároló teljes APT " +"sorát\n" "\n" -"Az APT sor tartalmazza a csatorna típusát, helyét és összetevőit, például " -"\"deb http://ftp.debian.org sarge main\"." +"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1355,7 +1343,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Forrás szerkesztése" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1363,7 +1351,7 @@ msgstr "CD-ROM átvizsgálása" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "_Forrás hozzáadása" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1390,15 +1378,14 @@ msgid "Check for new distribution releases" msgstr "Új disztribúciókiadások keresése" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"Ha a frissítések automatikus keresése le van tiltva, a csatornalistát kézzel " -"kell újratölteni. Ezzel a beállítással elrejtheti az ilyen helyzetekben " -"megjelenő emlékeztetőt." +"Ha a frissítések automatikus keresése le van tiltva, akkor a csatornalistát " +"kézzel kell újratölteni. Ezzel a beállítással elrejtheti az ilyen " +"helyzetekben megjelenő emlékeztetőt." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1426,262 +1413,199 @@ msgid "The window size" msgstr "Az ablak mérete" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Szoftvercsatornák és internetes frissítések beállítása" +msgstr "Telepíthető szoftverek és frissítések forrásának beállítása" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 frissítések" +msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Közösségi karbantartású (Universe)" +msgstr "Közösségi karbantartású" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Szabadalmazott eszközmeghajtók" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Nem-szabad (Multiverse)" +msgstr "Nem-szabad" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Az Ubuntu 6.10 \"Edgy Eft\" CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Közösségi karbantartású (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Közösségi karbantartású (Universe)" +msgstr "Közösségi karbantartású (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Közösségi karbantartású (Universe)" +msgstr "Közösségi karbantartású nyílt forrású szoftverek" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Nem-szabad (Multiverse)" +msgstr "Nem-szabad meghajtók" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Szabadalmazott eszközmeghajtók " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Nem-szabad (Multiverse)" +msgstr "Nem-szabad szoftverek (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" -msgstr "" +msgid "Software restricted by copyright or legal issues" +msgstr "Szerzői vagy egyéb jogi problémák miatt korlátozott szoftver" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Az Ubuntu 6.06 LTS \"Dapper Drake\"-et tartalmazó CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Visszaportolt frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Az Ubuntu 5.04 \"Hoary Hedgehog\"-ot tartalmazó CD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Hivatalosan támogatott" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 biztonsági frissítések" +msgstr "Ubuntu 5.04 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 frissítések" +msgstr "Ubuntu 5.04 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 visszaportolt csomagok" +msgstr "Ubuntu 5.04 visszaportolt csomagok" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Közösségi karbantartású (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nem-szabad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Az Ubuntu 4.10 \"Warty Warthog\"-ot tartalmazó CD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Néhány szoftver már nincs hivatalosan támogatva" +msgstr "Hivatalosan már nem támogatott" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Szerzői jogi korlátozás alatt" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 biztonsági frissítések" +msgstr "Ubuntu 4.10 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 frissítések" +msgstr "Ubuntu 4.10 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 visszaportolt csomagok" +msgstr "Ubuntu 4.10 visszaportolt csomagok" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" biztonsági frissítések" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (tesztelés alatt)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instabil)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "_Telepítés" +#~ msgstr "Normális frissítések" #~ msgid "Cancel _Download" #~ msgstr "Letöltés _megszakítása" @@ -1695,20 +1619,17 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "Your system has already been upgraded." #~ msgstr "Az Ön rendszere már frissítve lett." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Frissítés az Ubuntu 6.06 LTS " +#~ "Frissítés az Ubuntu 6.10 " #~ "változatra" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 biztonsági frissítések" +#~ msgstr "Az Ubuntu fontos biztonsági frissítései" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Frissítés az Ubuntu legújabb változatára" +#~ msgstr "Az Ubuntu frissítései" #~ msgid "Cannot install all available updates" #~ msgstr "Nem telepíthető minden rendelkezésre álló frissítés" @@ -1730,8 +1651,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Néhány frissítés további szoftverek eltávolítását igényli. Használja a " #~ "Synaptic csomagkezelő \"Minden frissítés kijelölése\" funkcióját, vagy " @@ -1741,6 +1662,7 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "The following updates will be skipped:" #~ msgstr "A következő frissítések ki lesznek hagyva:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Kb. %li másodperc van hátra" @@ -1765,8 +1687,7 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic " -#~ "programokat." +#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic programokat." #~ msgid "Channels" #~ msgstr "Csatornák" @@ -1796,7 +1717,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgstr "Csatorna szerkesztése" #~ msgid "_Add Channel" -#~ msgstr "Csatorna hozzá_adása" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "Csatorna hozzá_adása" #~ msgid "_Custom" #~ msgstr "_Egyéni" @@ -1811,4 +1733,4 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgstr "Ubuntu 6.06 LTS frissítések" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" +#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" \ No newline at end of file diff --git a/po/id.po b/po/id.po index 70ba74e1..4cd6c8b7 100644 --- a/po/id.po +++ b/po/id.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-28 18:46+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:38+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Setelah satu bulan" msgid "After %s days" msgstr "Setelah %s hari" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "_Instal Update" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,12 +121,13 @@ msgid "Error removing the key" msgstr "Kesalahan menghapus kunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" @@ -182,9 +179,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " -"bug. " +"bug." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" @@ -212,7 +208,6 @@ msgstr "" "Tidak memungkinkan untuk menginstal paket yang dibutuhkan. Silakan laporkan " "ini sebagai bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" @@ -286,7 +281,6 @@ msgstr "" "pilih 'Yes' disini, berkas akan memutakhirkan semua entri '%s' ke '%s'.\n" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Membuat sumber baku?" @@ -358,16 +352,15 @@ msgstr "" "cakram pada %s. Kosongkan sampah anda dan hapus paket sementara dari " "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +372,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Sistem anda dapat menjadi tidak dapat " "digunakan. Perbaikan sedang berjalan (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +384,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Silakan periksa koneksi internet anda atau " "media instalasi dan coba lagi nanti. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -408,25 +401,25 @@ msgstr "" "disokong melalui komunitas ('universe').\n" "\n" "Jika anda tidak mengaktifkan komponen 'universe' paket ini akan diajurkan " -"untuk penghapusan dalam langkah selanjutnya. " +"untuk penghapusan dalam langkah selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Lewati Langkah Ini" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Hapus" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,29 +427,27 @@ msgstr "" "Beberapa kesalahan terjadi pada waktu pembersihan. Silakan lihat pesan di " "bawah untuk informasi lebih lanjut. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Memeriksa manajer paket" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Menyiapkan upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -464,18 +455,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " -"bug. " +"bug." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Informasi paket tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -488,23 +479,22 @@ msgstr "" "Ini mengindikasikan adanya kesalahan serius, silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Menanyakan konfigurasi" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Meng-upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,24 +506,23 @@ msgid "Fetching is complete" msgstr "Pemutakhiran selesai" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Mengunduh berkas %li dari %li pada %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "Sekitar %li menit lagi" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Mengunduh berkas %li dari %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Sahkan perubahan" @@ -549,9 +538,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -561,60 +549,62 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak dapat ditemukan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Terjadi kesalahan fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-upgrade." -"log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade akan " -"dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam /etc/apt/" -"sources.list.distUpgrade." +"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-" +"upgrade.log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade " +"akan dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Anda harus mengunduh sebanyak %s." +msgstr "" +"\n" +"\n" +"Anda harus mengunduh sebanyak %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -623,45 +613,44 @@ msgstr "" "Upgrade membutuhkan waktu beberapa jam dan tidak dapat dibatalkan setelah " "itu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Hapus %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instal %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Sekitar %li hari %li jam %li menit lagi" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Sekitar %li jam %li menit lagi" @@ -676,12 +665,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -698,7 +686,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -811,7 +798,6 @@ msgstr "Tidak dapat mengunduh catatan luncuran" msgid "Please check your internet connection." msgstr "Silakan periksa koneksi internet anda." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Tidak dapat menjalankan alat upgrade" @@ -884,28 +870,28 @@ msgstr "" "dengan server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Mengunduh berkas %li dari %li dengan %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Mengunduh berkas %li dari %li dengan %s/s" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Senarai dari perubahan belum tersedia. Silakan coba lagi nanti." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Senarai dari perubahan belum tersedia. Silakan coba lagi nanti." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -914,123 +900,117 @@ msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Pemutakhiran lewat Internet" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 6.06 LTS Backports" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Lanjutkan Upgrade" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versi %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Mengunduh senarai dari perubahan..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Periksa" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Ukuran unduh: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Anda dapat instal %s pemutakhiran" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Silakan tunggu, hal ini membutuhkan beberapa waktu." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Pemutakhiran selesai" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versi baru: %s (Ukuran: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Versi %s: \n" +msgstr "Versi %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Distribusi anda tidak disokong lagi" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" "Anda tidak akan mendapatkan perbaikan keamanan atau pemutakhiran penting " -"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." -"ubuntu.com untuk informasi lebih lanjut." +"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat " +"http://www.ubuntu.com untuk informasi lebih lanjut." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1040,23 +1020,19 @@ msgstr "" "Silakan gunakan manajer paket \"Synaptic\" atau jalankan \"sudo apt-get " "install -f\" dalam terminal untuk memperbaiki persoalan ini." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1331,8 +1307,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Masukkan baris lengkap APT dari kanal yang ingin anda tambah \n" +"Masukkan baris lengkap APT dari kanal yang ingin anda tambah " +"\n" "\n" "Baris APT menyertakan tipe, lokasi dan komponen dari kanal, sebagai contoh " "\"deb http://ftp.debian.org sarge main\"." @@ -1425,252 +1401,210 @@ msgstr "Ukuran jendela" msgid "Configure the sources for installable software and updates" msgstr "Mengatur kanal perangkat lunak dan pemutakhiran lewat internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Tidak-bebas (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Updates" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Tidak-bebas (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Tidak-bebas (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi disokong" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Tidak-bebas (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Hak cipta terlarang" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "Perangkat Lunak yang sesuai dengan DFSG tapi tergantung pada Perangkat Lunak " "Tidak-Bebas" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" @@ -1694,8 +1628,7 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Mengupgrade ke Ubuntu 6.06 LTS" +#~ "Mengupgrade ke Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1725,17 +1658,18 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Beberapa pemutakhiran butuh penghapusan perangkat lunak yang ada. Gunakan " #~ "fungsi \"Mark All Upgrades\" dari paket manajer paket \"Synaptic\" atau " -#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk " -#~ "memutakhirkan sistem anda." +#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk memutakhirkan " +#~ "sistem anda." #~ msgid "The following updates will be skipped:" #~ msgstr "Pemutakhiran berikut akan dilewati:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Sekitar %li detik lagi" @@ -1793,10 +1727,11 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgstr "Edit Kanal" #~ msgid "_Add Channel" -#~ msgstr "_Tambah Kanal" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Tambah Kanal" #~ msgid "_Custom" #~ msgstr "_Custom" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/it.po b/po/it.po index 33e5f71c..6f370bd5 100644 --- a/po/it.po +++ b/po/it.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-24 14:01+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-06 12:46+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" @@ -56,59 +56,53 @@ msgstr "Dopo un mese" msgid "After %s days" msgstr "Dopo %s giorni" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Installazione degli aggiornamenti" +msgstr "%s aggiornamenti" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Server principale" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server in %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Server più vicino" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Server personalizzati" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Aggiornamenti Software" +msgstr "Canale software" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Attivo" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Sorgente" +msgstr "(codice sorgente)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Sorgente" +msgstr "Codice sorgente" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -129,13 +123,14 @@ msgid "Error removing the key" msgstr "Errore nel rimuovere la chiave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La chiave selezionata non può essere rimossa. Notificare questo evento come " "bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -155,16 +150,16 @@ msgstr "Inserire un disco nell'unità:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "Pacchetti non integri" +msgstr "Pacchetti danneggiati" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Il sistema contiene pacchetti non integri che non possono essere aggiustati " -"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" -"\" per risolvere il probelma." +"Il sistema contiene pacchetti danneggiati che non possono essere aggiustati " +"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-" +"get\" per risolvere il problema." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -174,13 +169,11 @@ msgstr "Impossibile aggiornare i meta-pacchetti richiesti" msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,9 +181,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Si è verificato un problema irrisolvibile durante il calcolo " -"dell'aggiornamento. Notificare questo evento come bug. " +"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»." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" @@ -202,13 +197,13 @@ msgid "" "unauthenticated packages." msgstr "" "Non è stato possibile autenticare alcuni pacchetti. Questo potrebbe essere " -"un problema di rete passeggero, riprovare più tardi. Segue una lista di " +"un problema di rete passeggero, riprovare più tardi. Segue l'elenco dei " "pacchetti non autenticati." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "Impossibile installare \"%s\"" +msgstr "Impossibile installare «%s»" #: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" @@ -218,13 +213,11 @@ msgstr "" "Non è stato possibile installare un pacchetto richiesto. Notificare questo " "evento come bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -235,13 +228,12 @@ msgstr "" "Il sistema non contiene un pacchetto ubuntu-desktop, kubuntu-desktop o " "edubuntu-desktop e non è stato possibile riconoscere la versione di Ubuntu " "in esecuzione.\n" -" Prima di procedere, usare synaptic o apt-get per installare uno dei " +" Prima di procedere, usare \"synaptic\" o \"apt-get\" per installare uno dei " "pacchetti sopra menzionati." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Prelievo fallito" +msgstr "Aggiunta del CD fallita" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -252,6 +244,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Si è verificato un errore nell'aggiungere il CD, l'aggiornamento verrà " +"interrotto. Segnalare il bug se si tratta di un CD Ubuntu valido.\n" +"\n" +"Il messaggio di errore era:\n" +"\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -259,7 +256,7 @@ msgstr "Lettura della cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Recuperare dalla rete i dati per l'aggiornamento?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -268,6 +265,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Il processo di aggiornamento può usare la rete per controllare gli ultimi " +"aggiornamenti e per recuperare i pacchetti che non sono nel CD corrente.\n" +"Se si possiede un accesso alla rete veloce e economico rispondere \"Sì\". " +"Altrimenti scegliere \"No\"." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -284,16 +285,15 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"Durante la scansione delle informazioni sui repository in uso non è strata " +"Durante la scansione delle informazioni sui repository in uso non è stata " "trovata nessuna voce di mirror per l'aggiornamento. Questo può verificarsi " "qualora si abbia in esecuzione un mirror interno o qualora le informazioni " "sul mirror siano datate.\n" "\n" -"Riscrivere lo stesso il proprio file «sources.list»? Scegliendo di sì, tutte " -"le voci «%s» verranno aggiornate a «%s»\n" -"Scegliendo di no, l'aggiornamento verrà annullato." +"Riscrivere lo stesso il proprio file «sources.list»? Scegliendo di «Sì», " +"tutte le voci «%s» verranno aggiornate a «%s»\n" +"Scegliendo «No» l'aggiornamento verrà annullato." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" @@ -306,8 +306,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Dopo la scansione del proprio file «sorces.list», non è stata trovata alcuna " -"voce valida per «%s».\n" +"Dopo la scansione del proprio file «sources.list», non è stata trovata " +"alcuna voce valida per «%s».\n" "\n" "Aggiungere le voci predefinite per «%s»? Selezionando «No», l'aggiornamento " "verrà annullato." @@ -329,14 +329,13 @@ msgid "Third party sources disabled" msgstr "Sorgenti di terze parti disabilitate" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"Sono state disabilitate alcune voci di terze parti nel proprio file «sources." -"list». È possibilie abilitarle di nuovo dopo l'aggiornamento con lo " +"Sono state disabilitate alcune voci di terze parti nel proprio file " +"«sources.list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo " "strumento «software-properties» o con synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 @@ -366,17 +365,15 @@ msgstr "" "il cestino e rimuovere i pacchetti temporanei di precedenti installazione " "usando \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Impossibile installare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -386,13 +383,16 @@ msgid "" msgstr "" "Interruzione immediata dell'aggiornamento. Il sistema potrebbe trovarsi in " "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" -"a)." +"a).\n" +"\n" +"Riportare questo bug per il pacchetto 'update-manager' includendo i file in " +"/var/log/dist-upgrade/ nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,12 +400,11 @@ msgstr "" "Interruzione immediata dell'aggiornamento. Controllare la connessione a " "internet o il supporto di installazione e riprovare. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Supporto terminato per alcune applicazioni" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -413,30 +412,30 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Questi pacchetti, pur essendo installati, non sono più supportati " -"ufficialmente; ora sono semplicemente mantenuti dalla comunità " -"(«universe»).\n" +"Canonical Ltd. non fornisce più supporto per i seguenti pacchetti software. " +"È comunque possibile avere supporto dalla comunità.\n" "\n" -"Se non è abilitato il repository «universe», verrà suggerita la rimozione di " -"questi pacchetti al prossimo passo. " +"Se non è abilitato il repository del software mantenuto dalla comunità " +"(«universe»), verrà suggerita la rimozione di questi pacchetti al prossimo " +"passo." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Salta questo passo" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Rimuovi" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Errore durante il commit" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,48 +443,45 @@ msgstr "" "Si sono verificati alcuni problemi durante la pulizia. Leggere il messaggio " "seguente per maggiori informazioni. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "Ripristino stato originale del sistema" +msgstr "Ripristino dello stato originale del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Recupero del backport di «%s»" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "Controllo gestore dei pacchetti" +msgstr "Controllo del gestore di pacchetti" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Preparazione dell'aggiornamento" +msgstr "Preparazione dell'aggiornamento fallito" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Si è verificato un problema irrisolvibile durante il calcolo " -"dell'aggiornamento. Notificare questo evento come bug. " +"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." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Aggiornamento delle informazione sui repository" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -493,56 +489,55 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Dopo l'aggiornamento delle di pacchetto informazioni non è più possibile " +"Dopo l'aggiornamento delle informazioni di pacchetto non è più possibile " "trovare il pacchetto essenziale «%s».\n" -"Ciò indica un errore grave, segnalare questo evento come un bug." +"Ciò indica un errore grave, segnalare questo evento come un bug per il " +"pacchetto 'update-manager' includendo i file in /var/log/dist-upgrade/ nel " +"rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Richiesta di conferma" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "Inserire \"%s\" nell'unità \"%s\"" +msgstr "Inserire «%s» nell'unità «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Aggiornamento completato" +msgstr "Il recupero è stato completato" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "Scaricamento del file %li di %li a %s/s" +msgstr "Recupero del file %li di %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Circa %li minuti rimanenti" +msgstr "Circa %s minuti rimanenti" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "Scaricamento del file %li di %li" +msgstr "Recupero del file %li di %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applicazione dei cambiamenti" @@ -550,157 +545,163 @@ msgstr "Applicazione dei cambiamenti" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "Impossibile installare \"%s\"" +msgstr "Impossibile installare «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"L'aggiornamento si interromperà ora. Segnalare questo bug per il pacchetto " +"'update-manager' e di includere i file in /var/log/dist-upgrade/ nella " +"segnalazione." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Sostituire il file di configurazione\n" -"\"%s\"?" +"Sostituire il file di configurazione personalizzato\n" +"«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" +"Se si decide di sostituire il file di configurazione con una versione più " +"recente, tutte le modifiche apportate andranno perse." -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Il comando \"diff\" non è stato trovato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Si è verificato un errore fatale" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Segnalare questo evento come un bug e includere nella notifica i file /var/" -"log/dist-upgrade.log e /var/log/dist-upgrade-apt.log. L'aggiornamento viene " -"interrotto.\n" -"Il file sorces.list originale è stato salvato in /etc/apt/sources.list." -"distUpgrade." +"Segnalare questo evento come un bug e includere nella notifica i file " +"/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. " +"L'aggiornamento viene interrotto.\n" +"Il file sources.list originale è stato salvato in " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s pacchetto sta per essere rimosso." -msgstr[1] "%s pacchetti stanno per essere rimossi." +msgstr[0] "%d pacchetto sta per essere rimosso." +msgstr[1] "%d pacchetti stanno per essere rimossi." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s nuovo pacchetto sta per essere installato." -msgstr[1] "%s nuovi pacchetti stanno per essere installati." +msgstr[0] "%d nuovo pacchetto sta per essere installato." +msgstr[1] "%d nuovi pacchetti stanno per essere installati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s pacchetto sta per essere aggiornato." -msgstr[1] "%s pacchetti stanno per essere aggiornati." +msgstr[0] "%d pacchetto sta per essere aggiornato." +msgstr[1] "%d pacchetti stanno per essere aggiornati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "È necessario scaricare un totale di %s." +msgstr "" +"\n" +"\n" +"È necessario scaricare un totale di %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"L'aggiornamento può richiedere diverse ore e non può essere annullato in " -"nessun momento successivo." +"Il recupero e l'installazione degli aggiornamenti può richiedere diverse ore " +"e non può essere annullato in un momento successivo." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -"Chiudere tutte le applicazioni e i documenti aperti per prevenire la perdita " -"di dati." +"Per prevenire la perdita di dati, chiudere tutte le applicazioni e i " +"documenti aperti." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" -msgstr "Il sistema è aggiornato!" +msgstr "Il sistema è aggiornato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Non ci sono aggiornamenti disponibili per questo sistema. L'aggiornamento " +"sarà annullato." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Rimuovere %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installare %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Aggiornare %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Circa %li giorni, %li ore e %li minuti rimanenti" +msgstr "%li giorni %li ore %li minuti" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Circa %li ore e %li minuti rimanenti" +msgstr "%li ore %li minuti" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minuti" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li secondi" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" +"Con una connessione DSL a 1 Mbit questo scaricamento richiede circa %s, con " +"una connessione via modem a 56k circa %s" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "Riavvio richiesto" +msgstr "Richiesto riavvio" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" @@ -710,7 +711,6 @@ msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -730,7 +730,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Riavviare il sistema per completare l'aggiornamento" +msgstr "" +"Riavviare il sistema per completare l'aggiornamento" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -738,7 +739,7 @@ msgstr "Avviare l'aggiornamento?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Aggiornamento di Ubuntu alla versione 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -753,9 +754,8 @@ msgid "Difference between the files" msgstr "Differenze tra i file" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Scaricamento e installazione degli aggiornamenti" +msgstr "Recupero e installazione degli aggiornamenti" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -774,13 +774,12 @@ msgid "Terminal" msgstr "Terminale" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Riprendi aggiornamento" +msgstr "A_nnula aggiornamento" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Continua" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -803,9 +802,8 @@ msgid "_Resume Upgrade" msgstr "_Riprendi aggiornamento" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Riprendi aggiornamento" +msgstr "_Avvia aggiornamento" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -823,7 +821,6 @@ msgstr "Impossibile scaricare le note di rilascio" msgid "Please check your internet connection." msgstr "Controllare la propria connessione a internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossibile eseguire lo strumento di aggiornamento" @@ -855,12 +852,12 @@ msgstr "Strumento di aggiornamento" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "Prelievo fallito" +msgstr "Recupero fallito" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" -"Fallito il prelievo dell'aggiornamento. Potrebbe dipendere da un problema di " +"Recupero dell'aggiornamento fallito. Potrebbe dipendere da un problema di " "rete. " #: ../UpdateManager/DistUpgradeFetcher.py:214 @@ -873,14 +870,13 @@ msgid "" "with the server. " msgstr "" "Fallita l'estrazione dell'aggiornamento. Potrebbe dipendere da un problema " -"con la connesione di rete o con il server. " +"con la connessione di rete o con il server. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" msgstr "Verifica fallita" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " @@ -901,136 +897,122 @@ msgstr "" "problema con la connessione di rete o con il server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Scaricamento del file %li di %li a %s/s" +msgstr "Scaricamento del file %(current)li di %(total)li a %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Scaricamento del file %li di %li a %s/s" +msgstr "Scaricamento del file %(current)li di %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." +msgstr "L'elenco dei cambiamenti non è disponibile" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." +"L'elenco dei cambiamenti non è ancora disponibile.\n" +"Riprovare più tardi." -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Fallito lo scaricamento dell'elenco dei cambiamenti. Verificare la " -"connessione ad Internet." +"Fallito lo scaricamento dell'elenco dei cambiamenti. \n" +"Verificare la connessione a Internet." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" +msgstr "Aggiornamenti di sicurezza importanti" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Aggiornamenti raccomandati" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Installazione degli aggiornamenti" +msgstr "Aggiornamenti proposti" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backport" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Riprendi aggiornamento" +msgstr "Aggiornamenti della distribuzione" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Installazione degli aggiornamenti" +msgstr "Altri aggiornamenti" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versione %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "Scaricamento dell'elenco dei cambiamenti..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 +#, fuzzy msgid "_Uncheck All" -msgstr "" +msgstr "_Decontrassegnare tutti" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" -msgstr "_Verifica" +msgstr "_Contrassengare tutti" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Dati da scaricare: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "È possibile installare %s aggiornamento" msgstr[1] "È possibile installare %s aggiornamenti" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "Attendere, l'operazione potrebbere richiedere del tempo." +msgstr "Attendere, l'operazione potrebbe richiedere del tempo." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "Aggiornamento completato" +msgstr "L'aggiornamento è stato completato" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "Verifica degli aggiornamenti..." -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nuova versione: %s (Dimensione: %s)" +msgstr "Dalla versione %(old_version)s alla %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Versione %s: \n" +msgstr "Versione %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Dimensione: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "La distribuzione in uso non è più supportata" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1038,52 +1020,46 @@ msgid "" msgstr "" "Non si riceveranno più aggiornamenti di sicurezza o critici. Passare a una " "versione più aggiornata di Ubuntu Linux. Per maggiori informazioni " -"consultare http://www.ubuntu.com" +"consultare http://www.ubuntu.com." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "L'indice dei programmi è rovinato" +msgstr "L'indice del software è danneggiato" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" "Impossibile installare o rimuovere alcun programma. Utilizzare il gestore " -"dei pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get install -f\" " -"in un terminale per risolvere il problema." +"dei pacchetti \"Synaptic\" o eseguire in un terminale \"sudo apt-get install " +"-f\" per risolvere il problema." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Niente" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 kB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f kB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1093,25 +1069,21 @@ msgstr "" "È necessario controllare gli aggiornamenti manualmente\n" "\n" "Il controllo automatico della disponibilità di aggiornamenti non è attivo. È " -"possibile configurare questo comportamento in \"Sistema\" -> " -"\"Amministrazione\" -> \"Proprietà software\"." +"possibile configurare questo comportamento in Sorgenti software nella " +"scheda Aggiornamenti internet." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Mantenere aggiornato il sistema" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Errore nella scansione del CD\n" -"\n" -"%s" +"Non tutti gli aggiornamenti possono essere installati" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Avviare l'aggiornamento?" +msgstr "Avvio del gestore di aggiornamenti" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1119,7 +1091,7 @@ msgstr "Cambiamenti" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Cambiamenti e descrizione dell'aggiornamento" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1127,7 +1099,7 @@ msgstr "_Verifica" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Verifica la presenza di nuovi aggiornamenti nei canali software" +msgstr "Verifica la presenza di nuovi aggiornamenti nei canali software" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1144,6 +1116,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Eseguire un aggiornamento della distribuzione per installare quanti più " +"aggiornamenti possibili. \n" +"\n" +"Questo può essere causato da un aggiornamento incompleto, da pacchetti " +"software non ufficiali o dall'esecuzione di una versione di sviluppo." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1174,9 +1151,8 @@ msgid "_Check" msgstr "_Verifica" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Riprendi aggiornamento" +msgstr "Aggiorna _distribuzione" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1187,31 +1163,28 @@ msgid "_Install Updates" msgstr "I_nstalla aggiornamenti" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Cambiamenti" +msgstr "cambiamenti" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "aggiornamenti" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Aggiornamenti internet" +msgstr "Aggiornamenti automatici" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CD-ROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Aggiornamenti internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Aggiornamenti internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1223,11 +1196,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Partecipando al sondaggio di popolarità è possibile migliorare " +"l'esperienza utente di Ubuntu. Scegliendo di partecipare, ogni settimana " +"verranno inviati in via anonima al progetto Ubuntu l'elenco del software " +"installato e la frequenza di utilizzo.\n" +"\n" +"I risultati sono utilizzati per migliorare il supporto alle applicazioni più " +"popolari e per classificarle nei risultati di ricerca." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Aggiungi C_D-ROM" +msgstr "Aggiungi CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1238,9 +1217,8 @@ msgid "D_elete downloaded software files:" msgstr "_Elimina i file di software scaricati:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Scaricamento completato" +msgstr "Scaricare da:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1255,7 +1233,7 @@ msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -"Solo gli aggiornamenti di sicurezza dai servers ufficiali di Ubuntu saranno " +"Solo gli aggiornamenti di sicurezza dai server ufficiali di Ubuntu saranno " "installati automaticamente" #: ../data/glade/SoftwareProperties.glade.h:16 @@ -1268,35 +1246,32 @@ msgstr "Ripristina le chiavi predefinite della distribuzione in uso" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Proprietà software" +msgstr "Sorgenti software" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Sorgente" +msgstr "Codice sorgente" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistiche" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Inviare informazioni statistiche" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Terze parti" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Verificare aggiornamenti automaticamente:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Scaricare gli aggiornamenti in background, ma non installarli" +msgstr "_Scaricare gli aggiornamenti automaticamente, ma non installarli" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1307,7 +1282,6 @@ msgid "_Install security updates without confirmation" msgstr "I_nstallare gli aggiornamenti di sicurezza senza richiedere conferma" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1316,12 +1290,13 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Le informazioni sul canale non sono aggiornate\n" +"Le informazioni sul software disponibile sono scadute\n" "\n" -"È necessario ricaricare le informazioni sul canale per installare software e " -"aggiornamenti provenienti dai canali aggiunti o modificati di recente. \n" +"È necessario ricaricare le informazioni sul software disponibile per " +"installare software e aggiornamenti provenienti dai canali aggiunti o " +"modificati di recente. \n" "\n" -"Per continuare è neccessaria una connessione a internet funzionante." +"Per continuare è necessaria una connessione a internet funzionante." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1344,7 +1319,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1352,11 +1326,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Inserire la riga APT completa del canale che si vuole aggiungere\n" +"Inserire la riga APT completa del repository che si vuole aggiungere " +"come sorgente\n" "\n" -"La riga APT include il tipo, la posizione ed i componenti di un canale, per " -"esempio \"deb http://ftp.debian.org sarge main\"." +"La riga APT include il tipo, la posizione ed i componenti di un repository, " +"per esempio \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1371,18 +1345,16 @@ msgstr "" "Sorgenti" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Sorgente" +msgstr "Modifica sorgente" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "Scansione CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Sorgente" +msgstr "_Aggiungi sorgente" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1394,7 +1366,7 @@ msgstr "Mostra e installa gli aggiornamenti disponibili" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "Gestore aggiornamenti" +msgstr "Gestione aggiornamenti" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1410,7 +1382,6 @@ msgid "Check for new distribution releases" msgstr "Controlla nuovi rilasci della distribuzione" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " @@ -1433,12 +1404,11 @@ msgid "Stores the size of the update-manager dialog" msgstr "Salva la dimensione della finestra dell'update-manager" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Salva lo stato dell'espansore che contiene l'elenco dei cambiamenti e la " +"Memorizza lo stato dell'espansore che contiene l'elenco dei cambiamenti e la " "descrizione" #: ../data/update-manager.schemas.in.h:8 @@ -1446,264 +1416,231 @@ msgid "The window size" msgstr "Dimensione della finestra" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Configura i canali software gli aggiornamenti da internet" +msgstr "" +"Configura le sorgenti per gli aggiornamenti e per il software installabile" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Aggiornamenti di Ubuntu 5.10" +msgstr "Ubuntu 6.10 «Edgy Eft»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Mantenuto dalla comunità (Universe)" +msgstr "Mantenuto dalla comunità" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Driver proprietari per i dispositivi" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Software contribuito" +msgstr "Software con restrizioni" -#. Description #: ../data/channels/Ubuntu.info.in:25 -#, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "CD con Ubuntu·4.10·\"Warty·Warthog\"" +msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Ubuntu 6.06 LTS «Dapper Drake»" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +msgid "Canonical supported Open Source software" +msgstr "Software open source supportato da Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Mantenuto dalla comunità (Universe)" +msgstr "Mantenuto dalla comunità (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Mantenuto dalla comunità (Universe)" +msgstr "Software open source mantenuto dalla comunità" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Non libero (Multiverse)" +msgstr "Driver non liberi" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Driver proprietari per dispositivi " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Non libero (Multiverse)" +msgstr "Software con restrizioni (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Software non esportabile dagli USA" +msgid "Software restricted by copyright or legal issues" +msgstr "Software con restrizioni per copyright o motivi legali" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "CD-ROM con Ubuntu 6.06 LTS «Drapper Drake»" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Aggiornamenti di backport" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Aggiornamenti di Ubuntu 5.10" +msgstr "Aggiornamenti per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Backport di Ubuntu 5.10" +msgstr "Backport per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "CD con Ubuntu·5.04·\"Hoary·Hedgehog\"" +msgstr "Ubuntu 5.04 «Hoary Hedgehog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "CD con Ubuntu·5.04·\"Hoary·Hedgehog\"" +msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "Supportato ufficialmente" +msgstr "Supportati ufficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" +msgstr "Aggiornamenti di sicurezza per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Aggiornamenti di Ubuntu 5.10" +msgstr "Aggiornamenti per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Backport di Ubuntu 5.10" +msgstr "Backport per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "CD con Ubuntu·4.10·\"Warty·Warthog\"" +msgstr "Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "Mantenuto dalla comunità (Universe)" +msgstr "Mantenuti dalla comunità (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Non libero (Multiverse)" +msgstr "Non libero (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "CD con Ubuntu·4.10·\"Warty·Warthog\"" +msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" msgstr "Software non più supportato ufficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright con restrizioni" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Aggiornamenti di Ubuntu 4.10" +msgstr "Aggiornamenti per Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Backport di Ubuntu 5.10" +msgstr "Backport per Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" -msgstr "Debian 3.1 \"Sarge\"" +msgstr "Debian 3.1 «Sarge»" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Aggiornamenti di sicurezza per Debian 3.1 \"Sarge\"" +msgstr "Aggiornamenti di sicurezza per Debian 3.1 «Sarge»" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "Debian \"Etch\" (testing)" +msgstr "Debian «Etch» (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "Debian \"Sid\" (Unstable)" +msgstr "Debian «Sid» (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibile con le DFSG con dipendenze non libere" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" +#~ msgid "" +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." +#~ msgstr "" +#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte le " +#~ "personalizzazioni apportate dall'utente o da uno script." + +#, python-format +#~ msgid "" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" +#~ msgstr "" +#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con una " +#~ "connessione DSL da 1Mbit" + +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "" +#~ "L'elenco dei cambiamenti non è ancora disponibile. Riprovare più tardi." + +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "" +#~ "Fallito lo scaricamento dell'elenco dei cambiamenti. Verificare la " +#~ "connessione ad Internet." + +#~ msgid "By Canonical supported Open Source software" +#~ msgstr "Software open source supportato da Canonical" + +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Software con restrizioni per copyright o questioni legali" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Scaricamento del file %li di %li a velocità sconosciuta" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "Installazione degli aggiornamenti" +#~ msgstr "Aggiornamenti normali" #~ msgid "Cancel _Download" #~ msgstr "Annulla _scaricamento" @@ -1717,20 +1654,16 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "Il sistema è già stato aggiornato." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Aggiornamento a Ubuntu 6.06 LTS" +#~ "Aggiornamento a Ubuntu 6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" +#~ msgstr "Importanti aggiornamenti di sicurezza per Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Aggiorna all'ultima versione di Ubuntu" +#~ msgstr "Aggiornamenti per Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Impossibile installare tutti gli aggiornamenti disponibili" @@ -1751,17 +1684,18 @@ msgstr "Software non compatibile con le DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. " -#~ "Utilizzare la funzione \"Marca tutti gli aggiornamenti\" del gestore di " -#~ "pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade" -#~ "\" in un terminale per aggiornare completamente il sistema." +#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. Utilizzare " +#~ "la funzione \"Marca tutti gli aggiornamenti\" del gestore di pacchetti " +#~ "\"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade\" in un " +#~ "terminale per aggiornare completamente il sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "I seguenti aggiornamenti saranno tralasciati:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Circa %li secondi rimanenti" @@ -1770,8 +1704,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come " -#~ "bug." +#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come bug." #~ msgid "Upgrading Ubuntu" #~ msgstr "Aggiornamento di Ubuntu" @@ -1790,8 +1723,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" " -#~ "prima di continuare." +#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" prima " +#~ "di continuare." #~ msgid "Channels" #~ msgstr "Canali" @@ -1820,9 +1753,10 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Edit Channel" #~ msgstr "Modifica canale" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Aggiungi canale" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Aggiungi canale" +#~ msgstr[1] "_Aggiungi canali" #~ msgid "_Custom" #~ msgstr "_Personalizzato" @@ -1843,27 +1777,27 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Nessuna voce valida trovata" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Durante la scansione delle informazioni sui repository, non è stata " -#~ "trovata alcuna voce valida per l'aggiornamento.\n" +#~ "Durante la scansione delle informazioni sui repository, non è stata trovata " +#~ "alcuna voce valida per l'aggiornamento.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in " -#~ "uno stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg " -#~ "--configure -a)." +#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in uno " +#~ "stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg --" +#~ "configure -a)." #~ msgid "" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Notificare questo evento come bug e includere nella notifica i file \"~/" -#~ "dist-upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene " -#~ "interrotto ora. " +#~ "Notificare questo evento come bug e includere nella notifica i file \"~/dist-" +#~ "upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene interrotto " +#~ "ora. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1883,8 +1817,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analisi del sistema in uso\n" #~ "\n" @@ -1892,8 +1826,8 @@ msgstr "Software non compatibile con le DFSG" #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Gli aggiornamenti software possono correggere errori, eliminare " #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." @@ -1904,18 +1838,18 @@ msgstr "Software non compatibile con le DFSG" #~ "installed therefor" #~ msgstr "" #~ "L'installazione automatica è limitata ai soli aggiornamenti di sicurezza " -#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software " -#~ "\"unattended-upgrades\" deve perciò essere installato" +#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software \"unattended-" +#~ "upgrades\" deve perciò essere installato" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Inserire la riga APT completa del canale che si vuole aggiungere\n" +#~ "Inserire la riga APT completa del canale che si vuole " +#~ "aggiungere\n" #~ "\n" #~ "La riga APT contiene il tipo, la posizione e le sezioni di un canale, ad " #~ "esempio \"deb http://ftp.debian.org sarge main\"" @@ -1934,8 +1868,8 @@ msgstr "Software non compatibile con le DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Download delle modifiche in corso\n" +#~ "Download delle modifiche in " +#~ "corso\n" #~ "\n" #~ "Devo scaricare le modifiche dal server centrale" @@ -1977,11 +1911,11 @@ msgstr "Software non compatibile con le DFSG" #~ "permette di verificare l'integrità del software che scarichi." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati " -#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " +#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati di " +#~ "aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " #~ "proprietario. " #~ msgid "Add repository..." @@ -2009,8 +1943,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Dimensione massima in MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Ripristina le chiavi di default della distribuzione.\n" #~ "Questo non modificherà le chiavi installate dal'utente." @@ -2042,13 +1976,13 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Aggiornamenti Disponibili\n" #~ "\n" -#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando " -#~ "il pulsante Installa." +#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando il " +#~ "pulsante Installa." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancella il download delle modifiche" @@ -2083,8 +2017,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " +#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " #~ msgid "Choose a key-file" #~ msgstr "Scegli un file di chiave" @@ -2109,8 +2042,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr[1] "" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Hai selezionato %s pacchetti su %s, dimensione %s" #~ msgstr[1] "" @@ -2118,8 +2050,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Gli aggiornamenti sono in fase di applicazione." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Puoi eseguire una sola applicazione di gestione dei pacchetti " #~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione." @@ -2135,28 +2067,27 @@ msgstr "Software non compatibile con le DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione " -#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri " -#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org " -#~ "per informazioni riguardo all'aggiornamento." +#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione che " +#~ "stai usando non riceverà più aggiornamenti di sicurezza o altri " +#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org per " +#~ "informazioni riguardo all'aggiornamento." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "È disponibile una nuova release di Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://" -#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento" +#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su " +#~ "http://www.ubuntulinux.org/ per informazioni sull'aggiornamento" #~ msgid "Never show this message again" #~ msgstr "Non mostrare più questo messaggio" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" -#~ "Modifiche non trovate, il server potrebbe non essere stato ancora " -#~ "aggiornato." +#~ "Modifiche non trovate, il server potrebbe non essere stato ancora aggiornato." \ No newline at end of file diff --git a/po/ja.po b/po/ja.po index 9bbb7e5a..5fcdda7f 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.42.4\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-24 07:06+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" "MIME-Version: 1.0\n" @@ -56,38 +56,35 @@ msgstr "1ヶ月後" msgid "After %s days" msgstr "%s 日後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "アップデートをインストール中" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "メインサーバ" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "%s のサーバ" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "最も近いサーバ" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "カスタムサーバ" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 @@ -98,7 +95,7 @@ msgstr "ソフトウェアのアップデート" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "有効" #: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy @@ -120,19 +117,19 @@ msgstr "選択したファイルのインポートエラー" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" +msgstr "選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "鍵削除のエラー" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -159,8 +156,7 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" -"す。 Synaptic や apt-get を使って最初に修正してください。" +"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれています。 Synaptic や apt-get を使って最初に修正してください。" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -170,7 +166,6 @@ msgstr "要求されたメタパッケージがアップグレードできませ msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" @@ -182,9 +177,8 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "算定中に解決できない問題がおきました。バグとして報告してください。 " +msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" @@ -195,9 +189,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワー" -"クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" -"ジが表示されます。" +"" +"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワークの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケージが" +"表示されます。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -208,10 +202,8 @@ msgstr "'%s' がインストールできません" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"要求されたパッケージのインストールができません。バグとして報告してください。 " +msgstr "要求されたパッケージのインストールができません。バグとして報告してください。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" @@ -225,11 +217,9 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケー" -"ジ が含まれていません。そして実行している ubuntu のバージョンが検出できませ" -"ん。 \n" -"開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインス" -"トールしてください。" +"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケージ " +"が含まれていません。そして実行している ubuntu のバージョンが検出できません。 \n" +"開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインストールしてください。" #: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy @@ -252,7 +242,7 @@ msgstr "キャッシュを読み込み中" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "アップグレードをするためにネットワーク経由でデータを取得しますか?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -277,14 +267,11 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりま" -"せんでした。内部ミラーないしミラー情報が古いと思われます。\n" +"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりませんでした。内部ミラーないしミラー情報が古いと思われます。\n" "\n" -"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリ" -"を '%s' エントリにアップデートします。 'いいえ' を選択するとアップデートを" -"キャンセルします。" +"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリを '%s' エントリにアップデートします。 " +"'いいえ' を選択するとアップデートをキャンセルします。" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" @@ -299,8 +286,7 @@ msgid "" msgstr "" "'sources.list' をスキャン中、 '%s' の正しいエントリが見つかりませんでした。\n" "\n" -"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" -"キャンセルします。" +"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートをキャンセルします。" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -310,9 +296,7 @@ msgstr "リポジトリ情報が無効です" msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" -"告してください。" +msgstr "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報告してください。" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -325,9 +309,8 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、" -"アップグレード後に 'ソフトウェアのプロパティ' ツールか Synaptic を使用してく" -"ださい。" +"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、アップグレード後に 'ソフトウェアのプロパティ' ツールか " +"Synaptic を使用してください。" #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -337,9 +320,7 @@ msgstr "アップデート中にエラー発生" msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -msgstr "" -"アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" -"ネットワーク接続をチェックし、再びアップデートしてください。" +msgstr "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。ネットワーク接続をチェックし、再びアップデートしてください。" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -352,20 +333,18 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してくださ" -"い。ごみ箱を空にし、'sudo apt-get clean' コマンドを実行して以前インストールし" -"た一時パッケージを削除してください。" +"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してください。ごみ箱を空にし、'sudo apt-get clean' " +"コマンドを実行して以前インストールした一時パッケージを削除してください。" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -374,26 +353,24 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"アップグレードを中断しました。システムが使用できない状態になっている可能性が" -"あります。ただいま修正を実行中です (dpkg --configure -a)。" +"アップグレードを中断しました。システムが使用できない状態になっている可能性があります。ただいま修正を実行中です (dpkg --configure -" +"a)。" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "アップグレードをダウンロードできません" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" -"アップグレードを中断しました。インターネット接続またはインストールメディア" -"(CD-ROMなど)をチェックし。再試行してください。 " +msgstr "アップグレードを中断しました。インターネット接続またはインストールメディア(CD-ROMなど)をチェックし。再試行してください。 " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -402,76 +379,70 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"インストールされているこれらのパッケージは、もう公式にサポートされておらず、" -"コミュニティサポートになっています('universe')。\n" +"インストールされているこれらのパッケージは、もう公式にサポートされておらず、コミュニティサポートになっています('universe')。\n" "\n" -"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" -"提案します。 " +"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを提案します。" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "不要なパッケージを削除しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "このステップをスキップ(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "削除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "コミット中にエラー" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧" -"ください。 " +msgstr "クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧ください。 " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "システムを元に戻し中" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "パッケージマネージャをチェック中" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "アップグレードの準備中" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy 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/dist-" "upgrade/ in the bugreport." -msgstr "算定中に解決できない問題がおきました。バグとして報告してください。 " +msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "リポジトリ情報をアップデート" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "無効なパッケージ情報" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -482,23 +453,22 @@ msgstr "" "パッケージ情報のアップデートのあと、重要パッケージ '%s' が見つかりません。\n" "このメッセージは深刻なエラーです。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "確認する" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "アップグレード中" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索する" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -510,24 +480,23 @@ msgid "Fetching is complete" msgstr "アップデートが完了しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "およそ残り %li 分" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "%i のうち %i をダウンロード中" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "変更を適用中" @@ -543,9 +512,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -555,126 +523,123 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "'diff' コマンドが見つかりません" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "重大なエラーが発生しました" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"~/dist-upgrade.log と ~/dist-upgrade-apt.log を含めて不具合として報告してくだ" -"さい。アップグレードは中断しました。\n" -"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されていま" -"す。" +"~/dist-upgrade.log と ~/dist-upgrade-apt.log " +"を含めて不具合として報告してください。アップグレードは中断しました。\n" +"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されています。" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s つのパッケージが削除されます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s·つのパッケージがインストールされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s·つのパッケージがアップグレードされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "全部で %s つのパッケージをダウンロードする必要があります。" +msgstr "" +"\n" +"\n" +"全部で %s つのパッケージをダウンロードする必要があります。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "アップグレードには数時間かかり、今後一切キャンセルはできません。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" -"さい。" +msgstr "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてください。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "削除されるパッケージ: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "インストール %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "アップグレード %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "およそ残り %li 日 %li 時間 %li 分" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "およそ残り %li 時間 %li 分" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li 分" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li 秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -689,7 +654,6 @@ msgstr "アップグレードが終了しました。再起動が必要ですが #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -704,13 +668,11 @@ msgid "" msgstr "" "アップグレードをキャンセルしますか?\n" "\n" -"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。" -"アップグレードを再開することを強くおすすめします。" +"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。アップグレードを再開することを強くおすすめします。" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"アップグレードを完了するためにシステムの再起動が必要です" +msgstr "アップグレードを完了するためにシステムの再起動が必要です" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -718,7 +680,7 @@ msgstr "アップグレードを開始しますか?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Ubuntu to version 6.10 にアップグレード中" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -803,7 +765,6 @@ msgstr "リリースノートををダウンロードできません" msgid "Please check your internet connection." msgstr "インターネット接続を確認してください。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "アップグレードツールを実行できません" @@ -845,9 +806,7 @@ msgstr "抽出に失敗しました" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題です。 " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -858,9 +817,7 @@ msgstr "検証に失敗しました" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"アップグレードの検証に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの検証に失敗しました。おそらくネットワークまたはサーバの問題です。 " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -870,188 +827,172 @@ msgstr "認証に失敗しました" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題です。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "変更点がまだ取得できません。あとで試してください。" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "変更点がまだ取得できません。あとで試してください。" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "" -"変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" -"い。" +msgstr "変更点の取得に失敗しました。インターネットに接続されているか確認してください。" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "アップデートをインストール中" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 6.04 バックポート" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "アップグレードを再開する(_R)" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "アップデートをインストール中" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "バージョン %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "変更点を取得中..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "すべてのチェックをはずす(_U)" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "チェック(_C)" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "ダウンロードサイズ: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 個のアップデートがインストールされます" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "しばらくお待ちください。少々時間がかかります。" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "アップデートが完了しました" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "インストールできるアップデートをチェック" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "新しいバージョン: %s (サイズ: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "バージョン %s: \n" +msgstr "バージョン %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(サイズ: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "このディストリビューションはすでにサポート対象外です" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの " -"Ubuntu Linux にアップグレードしてください。\r\n" +"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの Ubuntu Linux にアップグレードしてください。 \n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "新しいディストリビューション '%s' にアップグレードできます" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッ" -"ケージマネージャを使用するか、 まずこの問題を解決するために \"sudo apt-get " -"install -f\" コマンドをターミナルで実行してください。" +"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッケージマネージャを使用するか、 まずこの問題を解決するために " +"\"sudo apt-get install -f\" コマンドをターミナルで実行してください。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "なし" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1063,9 +1004,8 @@ msgid "" msgstr "" "アップデートの情報を手動でチェックしてください\n" "\n" -"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム" -"(System)\"·->·\"システム管理\"·->·\"ソフトウェアのプロパティ (Software " -"Properties)\" で行います。" +"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム(System)\"·->·\"システム管理\"·-" +">·\"ソフトウェアのプロパティ (Software Properties)\" で行います。" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1086,11 +1026,11 @@ msgstr "アップグレードを開始しますか?" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" -msgstr "変更点" +msgstr "変更" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "アップデートの変更点と詳細" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1102,7 +1042,7 @@ msgstr "新しいアップデートの調査のためにソフトウェアチャ #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" -msgstr "説明" +msgstr "詳細" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" @@ -1128,9 +1068,7 @@ msgstr "ソフトウェアのアップデート" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能" -"を提供します。" +msgstr "ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能を提供します。" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1164,7 +1102,7 @@ msgstr "変更点" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "アップデート" #: ../data/glade/SoftwareProperties.glade.h:2 #, fuzzy @@ -1173,7 +1111,7 @@ msgstr "インターネットアップデート" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" @@ -1225,9 +1163,7 @@ msgstr "インターネットアップデート" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "" -"公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールさ" -"れます。" +msgstr "公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールされます。" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1258,7 +1194,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "サードパーティ" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" @@ -1289,8 +1225,7 @@ msgid "" msgstr "" "チャンネルの情報が古いです\n" "\n" -"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うた" -"め、チャンネルを再読み込みしてください。\n" +"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うため、チャンネルを再読み込みしてください。\n" "\n" "続けるためには、インターネット接続が有効になっている必要があります。" @@ -1308,7 +1243,7 @@ msgstr "ディストリビューション:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 msgid "Type:" -msgstr "種類:" +msgstr "タイプ:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 msgid "URI:" @@ -1325,8 +1260,8 @@ msgid "" msgstr "" "追加したい完全な APT line を入力してください。\n" "\n" -"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。" -"例:\"deb http://ftp.debian.org sarge main\"" +"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。例:\"deb http://ftp.debian.org " +"sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1364,15 +1299,13 @@ msgstr "インストールできるアップデートを表示し、インスト #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "アップデートマネージャ" +msgstr "アップデートマネージャー" #: ../data/update-manager.schemas.in.h:1 msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "" -"現在使用中のディストリビューションの最新バージョンが存在する場合自動的に" -"チェックし、可能ならアップグレードを提案する" +msgstr "現在使用中のディストリビューションの最新バージョンが存在する場合自動的にチェックし、可能ならアップグレードを提案する" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1385,8 +1318,7 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込み" -"しなければなりません。このオプションはその場合の催促をしないようにします。" +"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込みしなければなりません。このオプションはその場合の催促をしないようにします。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1416,253 +1348,214 @@ msgstr "ウィンドウのサイズ" msgid "Configure the sources for installable software and updates" msgstr "ソフトウェアチャンネルとインターネットアップデートを設定" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 アップデート" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "コミュニティによるメンテナンス (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "デバイス用のプロプライエタリなドライバ" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "寄贈ソフトウェア" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Ubuntu 6.10 'Edgy Eft' のCD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "コミュニティによるメンテナンス (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "コミュニティによるメンテナンス (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "コミュニティによるメンテナンス (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "非フリー (Multiuniverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "デバイス用のプロプライエタリなドライバ " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非フリー (Multiuniverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "バックポートされたアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 バックポート" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "公式サポート" +msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 バックポート" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "コミュニティによるメンテナンス (Universe)" +msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "非フリー (Multiuniverse)" +msgstr "Non-free (Multiuniverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Ubuntu 4.10 'Warty Warthog' のCD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "いくつかのソフトウェアはもう公式にサポートされません" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "限定的な著作権(Restricted)" +msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 バックポート" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian·3.1·\"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian·3.1·\"Sarge\"·セキュリティアップデート" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian·\"Etch\"·(testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian·\"Sid\"·(unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "ダウンロード中: 速度不明で %li のうち %li" @@ -1686,8 +1579,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Ubuntu 6.06 LTS にアップデート中" +#~ "Ubuntu 6.06 LTS にアップデート中" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1708,25 +1600,23 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "システムを解析中です\n" #~ "\n" -#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機" -#~ "能を提供します。" +#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機能を提供します。" #~ msgid "Oficially supported" #~ msgstr "公式サポート" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグ" -#~ "レードするためにはパッケージマネージャ \"Synaptic\" の \"すべてのアップグ" -#~ "レードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を" -#~ "実行してください。" +#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグレードするためにはパッケージマネージャ \"Synaptic\" の " +#~ "\"すべてのアップグレードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を実行してください。" #~ msgid "The following updates will be skipped:" #~ msgstr "これらのパッケージはアップグレードされません:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "およそ残り %li 秒" @@ -1746,14 +1636,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "詳細を表示" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "ソフトウェアマネージメントツールは同時に1つしか実行することができません" +#~ msgstr "ソフトウェアマネージメントツールは同時に1つしか実行することができません" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "" -#~ "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してく" -#~ "ださい。" +#~ msgstr "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してください。" #~ msgid "Channels" #~ msgstr "チャンネル" @@ -1786,10 +1673,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "チャンネルを編集" #~ msgid "_Add Channel" -#~ msgstr "チャンネルを追加(_A)" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "チャンネルを追加(_A)" #~ msgid "_Custom" -#~ msgstr "カスタム(_C)" +#~ msgstr "カスタム(C)" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "Ubuntu 6.06 LTS" @@ -1804,11 +1692,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "Ubuntu 6.06 LTS バックポート" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" -#~ msgstr "" -#~ "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリが" -#~ "みつかりました。\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" +#~ msgstr "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリがみつかりました。\n" #~ msgid "Repositories changed" #~ msgstr "リポジトリが変更されました" @@ -1816,20 +1702,17 @@ msgstr "DFSGに適合しないソフトウェア" #~ 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 "" -#~ "変更点を有効にするためにパッケージリストをサーバから再取得する必要がありま" -#~ "す。今すぐ実行しますか?" +#~ msgstr "変更点を有効にするためにパッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?" #~ msgid "Sections" #~ msgstr "セクション:" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. Please " -#~ "try 'sudo apt-get install -f' or Synaptic to fix your system." +#~ "The upgrade aborts now. Your system can be in an unusable state. Please try " +#~ "'sudo apt-get install -f' or Synaptic to fix your system." #~ msgstr "" -#~ "アップグレードを中断しました。システムが不安定な状態になっています。システ" -#~ "ムを修正するために 'sudo apt-get install -f ' または Synapticを試してみて" -#~ "ください。" +#~ "アップグレードを中断しました。システムが不安定な状態になっています。システムを修正するために 'sudo apt-get install -f ' " +#~ "または Synapticを試してみてください。" #~ msgid "Remove obsolete Packages?" #~ msgstr "古いパッケージ削除しますか?" @@ -1838,19 +1721,18 @@ msgstr "DFSGに適合しないソフトウェア" #~ "Upgrading to Ubuntu \"Dapper\" " #~ "6.04" #~ msgstr "" -#~ "Ubuntu·\"Dapper\"·6.04 にアップグ" -#~ "レード中" +#~ "Ubuntu·\"Dapper\"·6.04 " +#~ "にアップグレード中" #~ msgid "" #~ "Checking for available updates\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "アップデートをチェック中\n" #~ "\n" -#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去" -#~ "し、新機能を追加します。" +#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去し、新機能を追加します。" #~ msgid "Sections:" #~ msgstr "セクション:" @@ -1893,12 +1775,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" -#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量があり" -#~ "ません。再び試行する前に 'sudo apt-get clean' などで空き容量を確保してくだ" -#~ "さい" +#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量がありません。再び試行する前に 'sudo apt-get clean' " +#~ "などで空き容量を確保してください" #~ msgid "Error fetching the packages" #~ msgstr "パッケージ取得中にエラー" @@ -1906,9 +1787,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " -#~ msgstr "" -#~ "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの" -#~ "問題です。ネットワークを確認して再試行してください。 " +#~ msgstr "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの問題です。ネットワークを確認して再試行してください。 " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1933,11 +1812,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "本当にキャンセルしますか?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " -#~ msgstr "" -#~ "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作" -#~ "を継続することを強く忠告します。 " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " +#~ msgstr "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作を継続することを強く忠告します。 " #, fuzzy #~ msgid "Sources" @@ -1971,18 +1848,15 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "認証鍵\n" #~ "\n" -#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完" -#~ "全なものか確認することができます。" +#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完全なものか確認することができます。" #~ msgid "A_uthentication" #~ msgstr "認証(_U)" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " -#~ msgstr "" -#~ "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経" -#~ "由で鍵を取得し、信頼される持ち主のものか確認してください。 " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " +#~ msgstr "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経由で鍵を取得し、信頼される持ち主のものか確認してください。 " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "一時ファイルを自動的に削除する(_T)" @@ -2003,11 +1877,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "最大量(MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." -#~ msgstr "" -#~ "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更により" -#~ "ユーザが追加した鍵が失われることはありません。" +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." +#~ msgstr "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更によりユーザが追加した鍵が失われることはありません。" #~ msgid "Set _maximum size for the package cache" #~ msgstr "パッケージキャッシュの最大量を設定する(_M)" @@ -2033,27 +1905,26 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "アップデートがあります\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" -#~ "のパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. " -#~ "If you are behind an internet connection that needs to be started by hand " -#~ "(e.g. a modem) you should use this button so that update-manager knows " -#~ "about new updates." +#~ "If you have a permanent internet connection this is done automatically. If " +#~ "you are behind an internet connection that needs to be started by hand (e.g. " +#~ "a modem) you should use this button so that update-manager knows about new " +#~ "updates." #~ msgstr "" #~ "サーバからパッケージ情報を読み込み直します。\n" #~ "\n" -#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデム" -#~ "などでそうではないなら、アップデートマネージャに新しいアップデートがあるか" -#~ "どうかを知らせるため、このボタンを使用して手動で行う必要があります。" +#~ "" +#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデムなどでそうではないなら、アップデートマネージャに新しいアップデートがあるかどうかを" +#~ "知らせるため、このボタンを使用して手動で行う必要があります。" #~ msgid "Binary" #~ msgstr "バイナリ" @@ -2074,8 +1945,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" ま" -#~ "たは \"apt-get\" を使用して修正してください。" +#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" または \"apt-get\" を使用して修正してください。" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "全てのパッケージをアップグレードすることは不可能です。" @@ -2083,27 +1953,21 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対" -#~ "処がいるようです。Synaptic \"Smart Upgrade\"か\"apt-get dist-upgrade\"を実" -#~ "行して問題を修正してください。" +#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対処がいるようです。Synaptic \"Smart " +#~ "Upgrade\"か\"apt-get dist-upgrade\"を実行して問題を修正してください。" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "" -#~ "変更点は見つかりませんでした。サーバはまだアップデートされていないようで" -#~ "す。" +#~ msgstr "変更点は見つかりませんでした。サーバはまだアップデートされていないようです。" #~ msgid "The updates are being applied." #~ msgstr "アップデートされました。" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." -#~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケー" -#~ "ションマネージャを終了してください。" +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." +#~ msgstr "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケーションマネージャを終了してください。" #~ msgid "Updating package list..." #~ msgstr "アップデートされるパッケージのリスト..." @@ -2113,22 +1977,22 @@ msgstr "DFSGに適合しないソフトウェア" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "新しいUbuntu Linuxにアップグレードしてください。現在お使いのシステムにはセ" -#~ "キュリティフィクスや危急のアップデートはすでに提供されていません。アップグ" -#~ "レードに関する情報は http://www.ubuntulinux.org/ を見てください。" +#~ "新しいUbuntu " +#~ "Linuxにアップグレードしてください。現在お使いのシステムにはセキュリティフィクスや危急のアップデートはすでに提供されていません。アッ" +#~ "プグレードに関する情報は http://www.ubuntulinux.org/ を見てください。" #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntuの新しいリリース版があります!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするため" -#~ "に http://www.ubuntulinux.org/ をご覧ください。" +#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするために http://www.ubuntulinux.org/ " +#~ "をご覧ください。" #~ msgid "Never show this message again" #~ msgstr "このメッセージを二度と表示しない" @@ -2137,11 +2001,10 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "排他的なロックができません" #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や " -#~ "aptitudeのような他のパッケージマネージャを終了してください。" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や aptitudeのような他のパッケージマネージャを終了してください。" #~ msgid "Initializing and getting list of updates..." #~ msgstr "アップデートリストを取得中..." @@ -2158,10 +2021,9 @@ msgstr "DFSGに適合しないソフトウェア" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "利用可能なアップデート\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" -#~ "のパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" \ No newline at end of file diff --git a/po/ka.po b/po/ka.po index 79769e44..067f4ffd 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:19+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" "MIME-Version: 1.0\n" @@ -57,15 +57,13 @@ msgstr "ერთი თვის შემდგომ" msgid "After %s days" msgstr "%s დღის შემდეგ" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "განახლებების _დაყენება" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -128,12 +125,13 @@ msgid "Error removing the key" msgstr "გასღების წაშლა ვერ მოხერხდა" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "ამორჩეული გასაღების წაშლა ვე რმოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -173,7 +171,6 @@ msgstr "საჭჳრო მეტა-პაკეტების განა msgid "A essential package would have to be removed" msgstr "A არსებითი -სკენ" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -187,10 +184,8 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ " -"ხარვეზი. " +"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" @@ -214,9 +209,9 @@ msgstr "'%s' ვერ დაყენდა" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " +msgstr "" +"საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ გამოვიცანით" @@ -280,7 +275,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" @@ -344,17 +338,16 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 #, fuzzy msgid "Could not install the upgrades" msgstr "არა" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -364,23 +357,23 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "ახლა -ში A a." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 #, fuzzy msgid "Could not download the upgrades" msgstr "არა" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "ახლა ან და " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -388,73 +381,70 @@ msgid "" "\n" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." -msgstr "არა და ახლა n t ჩართული -თვის -ში ნაბიჯი " +msgstr "არა და ახლა n t ჩართული -თვის -ში ნაბიჯი" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "წავშალო მოძველებული პაკეტები?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "ნაბიჯის გა_მოტოვება" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_წაშლა" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 #, fuzzy msgid "Error during commit" msgstr "შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 #, fuzzy msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "-თვის ინფორმაცია " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "ვამოწმებ პროგრამულ მენეჯერს" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "განახლების ჩადგმის მომზადება" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" -"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ " -"ხარვეზი. " +"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "რეპოზტორიის ინფორმაციის განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "გაფუჭებული პაკეტის შესახებ ინფორმაცია" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -464,26 +454,25 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 #, fuzzy msgid "Asking for confirmation" msgstr "-თვის" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "მიმდინარეობს განახლებების ჩაყენება" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 #, fuzzy msgid "Searching for obsolete software" msgstr "ვეძებ -თვის" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 #, fuzzy msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -500,7 +489,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -512,7 +501,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "ცვლილებების დამტკიცება" @@ -528,7 +516,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -538,50 +525,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 #, fuzzy msgid "The 'diff' command was not found" msgstr "არა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 #, fuzzy msgid "A fatal error occured" msgstr "A შეცდომა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "a და შემცველობა და -ში ახლა თავდაპირველი სია -ში სია." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "A არსებითი -სკენ" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -589,41 +575,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "საათი და ნებისმიერი დრო." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr " ამოშლა %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "დაყენება %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "ჩასაყენებელი განახლება %s" @@ -649,12 +634,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -670,7 +654,6 @@ msgstr "ტოლია დასრულდა და a ტოლია -ს #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -784,7 +767,6 @@ msgstr "შეუძლებელია ვერსიის შენიშ msgid "Please check your internet connection." msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ კავშირი." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს" @@ -868,13 +850,13 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "" "ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" @@ -882,110 +864,105 @@ msgid "" msgstr "" "ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "განახლება _გაგრძელება" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "ვერსია %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "მიმდინარეობს ჩამოქაჩვა სია ის." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "შ_ემოწმება" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "ჩამოსატვირთის ზომა: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "თქვენ შეგიძლიათ %s განახლების ჩადგმა" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "განახლება გასრულებულია" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "ახალი ვერსია: %s (ზომა: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "ვერსია %s: \n" +msgstr "ვერსია %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 #, fuzzy msgid "" "You will not get any further security fixes or critical updates. Upgrade to " @@ -995,17 +972,16 @@ msgstr "" "თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი " "იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 #, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " @@ -1014,23 +990,19 @@ msgid "" msgstr "" "ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1397,248 +1369,203 @@ msgstr "ფანჯარა ზომა" msgid "Configure the sources for installable software and updates" msgstr "კონფიგურირება და" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 -#, fuzzy, no-c-format +#, fuzzy msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 განახლებები" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "არათავისუფალი (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "არათავისუფალი (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "არათავისუფალი (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "არათავისუფალი (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "არა" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "შეზღუდული" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 -#, fuzzy, no-c-format +#, fuzzy msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/ s s s s s" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "უსაფრთხოება" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 #, fuzzy msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "პროგრამა თავისუფალი დამოკიდებულებანი" -#. CompDescription #: ../data/channels/Debian.info.in:57 #, fuzzy msgid "Non-DFSG-compatible Software" @@ -1691,8 +1618,8 @@ msgstr "პროგრამა" #, fuzzy #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "ის გამოყენება მონიშვნა ყველა ის Synaptic ან sudo -ში a ტერმინალი -სკენ " #~ "განახლება." @@ -1754,7 +1681,8 @@ msgstr "პროგრამა" #, fuzzy #~ msgid "_Add Channel" -#~ msgstr "დამატება არხი" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "დამატება არხი" #~ msgid "_Custom" #~ msgstr "_პირადი" @@ -1770,4 +1698,4 @@ msgstr "პროგრამა" #~ msgstr "Ubuntu 6.06 LTS განახლებები" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" +#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" \ No newline at end of file diff --git a/po/ko.po b/po/ko.po index 15d3bdd2..cb8c6fe3 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,16 +1,15 @@ # Korean translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. -# FIRST AUTHOR , 2006. +# darehanl , 2006. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-28 15:14+0000\n" -"Last-Translator: darehanl \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-06 11:33+0000\n" +"Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +22,7 @@ msgstr "매일" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "이틀 마다" +msgstr "이틀마다" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" @@ -31,81 +30,77 @@ msgstr "매주" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "두 주 마다" +msgstr "이주일마다" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" -msgstr "%s 일 마다" +msgstr "%s일마다" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "한 주 후에" +msgstr "일주일 후에" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "두 주 후에" +msgstr "이주일 주 후에" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "한 달 후에" +msgstr "한달 후에" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" -msgstr "%s 일 후에" +msgstr "%s일 후에" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "업데이트를 설치(_I)" +msgstr "%s 업데이트" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "주 서버" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "%s 서버" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "가장 가까운 서버" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "사용자 정의 서버" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "소프트웨어 업데이트" +msgstr "소프트웨어 채널" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "사용중" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(소스 코드)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "소스 코드" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -117,18 +112,19 @@ msgstr "선택한 파일 가져오기 오류" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "선택된 파일은 GPG 키 파일이 아니거나 잘못된 것입니다." +msgstr "선택된 파일은 GPG 키 파일이 아니거나 잘못되었습니다." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "키 삭제 오류" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "선택한 키를 지울 수 없습니다. 버그 리포팅 하십시오." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "선택한 키를 지울 수 없습니다. 버그를 보고하십시오." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -148,44 +144,42 @@ msgstr "드라이브에 디스크를 넣으십시오:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "망가진 꾸러미" +msgstr "망가진 패키지" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"이 소프트웨어로 수정할 수 없는 망가진 꾸러미가 있습니다. 진행 전에 먼저 시냅" -"틱이나 apt-get을 사용하여 복구하십시오." +"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시냅틱이나 apt-get을 사용하여 복구하십시오." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "요청된 메타 꾸러미를 업그레이드 할 수 없습니다" +msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "필수 꾸러미를 지워야만 합니다." +msgstr "필수적인 패키지를 제거해야만 합니다." -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다. " -"버그를 보고하여 주십시오. " +"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다.\n" +"\n" +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " +"파일을 포함하여 주십시오." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "꾸러미 인증 오류" +msgstr "패키지 인증 오류" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -193,27 +187,25 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"인증하는데 실패한 꾸러미가 있습니다. 일시적인 네트워크 문제일 수 있으니 나중" -"에 다시 시도하십시오. 인증에 실패한 꾸러미의 목록은 다음과 같습니다." +"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 " +"목록은 다음과 같습니다." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "'%s'을(를) 설치할 수 없습니다." +msgstr "'%s'을(를) 설치할 수 없습니다" #: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "요청된 꾸러미를 설치할 수 없습니다. 버그로 보고하여 주십시오. " +msgstr "요청한 패키지를 설치할 수 없습니다. 버그를 보고하여 주십시오. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "메타 꾸러미를 추측할 수 없습니다." +msgstr "메타 패키지를 추측할 수 없습니다" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -221,15 +213,13 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 꾸러미가 없" -"고, 현재 실행중인 우분투의 버전도 알 수 없습니다.\n" -" 위의 꾸러미 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니" -"다." +"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없으며, 현재 실행중인 " +"우분투의 버전을 알아낼 수 없습니다.\n" +" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니다." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "가져오기가 실패했습니다." +msgstr "CD 추가하기 실패" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -240,14 +230,19 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우분투 CD를 사용하고 있었다면 이 버그를 보고해 " +"주십시오.\n" +"\n" +"오류 메시지:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "캐시를 읽는 중" +msgstr "캐시를 읽고 있습니다" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "업그레이드할 때 네트워크에서 자료를 받을까요?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -256,6 +251,8 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 패키지를 받을 수 있습니다.\n" +"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -272,15 +269,12 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"저장소 정보를 검색하는 동안 업그레이드를 하기 위한 미러 서버 항목을 하나도 찾" -"지 못했습니다. 이 문제는 내부 미러 서버를 실행중이거나 미러 서버 정보가 오래" -"됐을 때 일어날 수 있습니다.\n" +"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 " +"오래됐을 때 이러한 문제가 일어날 수 있습니다.\n" "\n" -"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 고른다면 모든 '%s'을(를) " -"'%s' 항목으로 업데이트 합니다.\n" -"'아니오'를 고르면 업데이트가 취소됩니다." +"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%s' 항목으로 업데이트 합니다.\n" +"'아니오'를 선택하면 업데이트가 취소됩니다." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" @@ -295,8 +289,7 @@ msgid "" msgstr "" "'sources.list'를 검색했지만 '%s'에 적합한 항목을 찾지 못했습니다.\n" "\n" -"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 고르면 업데이트가 취소됩" -"니다." +"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소됩니다." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -306,24 +299,20 @@ msgstr "저장소 정보가 올바르지 않습니다" msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"저장소 정보를 업그레이드하는 것이 잘못된 파일로 만들어졌습니다. 버그를 보고하" -"여 주십시오." +msgstr "저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "써드 파티 소스는 이용할 수 없습니다" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"souces.list에서 몇몇 써드 파티 목록은 이용할 수 없게 되었습니다. 'software-" -"properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" -"니다." +"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-properties' 도구나 시냅틱으로 " +"업그레이드 한 후에 다시 사용가능하게 할 수 있습니다." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -334,8 +323,7 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" -"니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." +"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -348,21 +336,18 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"업그레이드를 지금 중단합니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 " -"바랍니다. 휴지통을 비우시고 'sudo apt-get clean' 명령으로 이전 설치 과정 중" -"에 사용했던 임시 꾸러미들을 삭제하시기 바랍니다." +"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 바랍니다. 휴지통을 비우시고 'sudo apt-get " +"clean' 명령으로 이전 설치 과정 중에 사용했던 임시 패키지들을 삭제하시기 바랍니다." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -370,27 +355,27 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드가 중지되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " -"(dpkg --configure -a)를 실행하여 복구하십시오." +"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. (dpkg --configure -a)를 실행하여 " +"복구하십시오.\n" +"\n" +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " +"파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" -msgstr "업그레이드 파일을 다운로드 할 수 없습니다." +msgstr "업그레이를 다운로드 할 수 없습니다." -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" -"업그레이드가 중지되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" -"하십시오. " +msgstr "업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도하십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "일부 프로그램의 지원이 종료되었습니다" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -398,78 +383,68 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"이 소프트웨어들은 더 이상 공식적으로 지원하지 않으며, 이제 Universe 계열에 해" -"당합니다.\n" +"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니티를 통해서 여전히 지원받을 수 있습니다.\n" "\n" -"'Universe' 저장소를 활성화하지 않았다면 다음 단계에서 이 꾸러미들을 삭제할 " -"수 있습니다. " +"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 패키지들을 삭제하도록 제안할 것입니다." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "못쓰게 된 꾸러미를 삭제하시겠습니까?" +msgstr "구식 패키지를 삭제하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "이 단계 건너뛰기(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "삭제(_R)" +msgstr "제거(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "커밋 도중 오류 발생" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"필요없는 패키지를 지우는 동안에 오류가 발생했습니다. 아래의 글에서 더 많은 정" -"보를 얻으실 수 있습니다. " +msgstr "정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인할 수 있습니다. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "시스템을 원상태로 복구하는 중" +msgstr "시스템을 원래의 상태로 복구하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "'%s'의 백포트를 받고 있습니다" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "꾸러미 관리자 확인 중" +msgstr "패키지 관리자를 확인하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "업그레이드를 준비하는 중" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다. " -"버그를 보고하여 주십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "저장소 정보 업데이트 중" +msgstr "저장소 정보를 업데이트하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "잘못된 꾸러미 정보" +msgstr "잘못된 패키지 정보" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -477,216 +452,210 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"꾸러미 정보가 업데이트 된 후에 필수 꾸러미 '%s'를 어디에서도 찾을 수 없습니" -"다.\n" -"심각한 오류입니다. 버그를 보고하여 주십시오." +"패키지 정보를 업데이트한 다음에 필수 패키지 '%s'를 더이상 찾을 수 없습니다.\n" +"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-" +"upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "확인을 요청하는 중" +msgstr "확인을 요청하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "업그레이드 하는 중" +msgstr "업그레이드하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "못 쓰게 된 소프트웨어를 검색하는 중" +msgstr "구식 소프트웨어를 검색하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "시스템 업그레이드가 끝났습니다." +msgstr "완전히 시스템을 업그레이드하였습니다." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "'%s'(을)를 드라이브 '%s'에 넣으십시오." +msgstr "'%s'을(를) 드라이브 '%s'에 넣으십시오." #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "업데이트가 끝났습니다." +msgstr "완전히 받았습니다" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "내려받는 중, %li의 %li 파일, 속도 %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "%li 분 정도 남았음" +msgstr "%s분 정도 남음" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "%li의 %li 파일 내려받는 중" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "변경 사항을 적용하는 중" +msgstr "변경 사항을 적용하고 있습니다" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "'%s'(을)를 설치할 수 없습니다." +msgstr "'%s'을(를) 설치할 수 없음" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 " +"/var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"설정 파일을 바꾸시겠습니까?\n" -"'%s'" +"바뀐 설정 파일 '%s'을(를)\n" +"교체하시겠습니까?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "'diff' 명령어를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "심각한 오류 발생" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"이것을 버그로 간주하여 /var/log/dist-upgrade.log 파일과 /var/log/dist-" -"upgrade-apt.log 파일을 첨부하여 보고하십시오. 업그레이드가 중지되었습니다.\n" +"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main.log 파일과 /var/log/dist-" +"upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드가 중단되었습니다.\n" "원래의 sources.list는 /etc/apt/sources.list.distUpgrade에 저장되어 있습니다." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "꾸러미 %s 개가 삭제될 것입니다." +msgstr[0] "패키지 %d개를 삭제할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "새로운 꾸러미가 %s 개 설치될 것입니다." +msgstr[0] "새로운 패키지 %d개를 설치할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "꾸러미가 %s 개 업그레이드 될 것입니다." +msgstr[0] "패키지 %d개를 업그레이드할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "총 %s개의 꾸러미를 다운로드 합니다." +msgstr "" +"\n" +"\n" +"총 %s개의 패키지를 다운로드해야 합니다. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "업그레이드는 여러 시간이 걸릴 수 있고, 어떤 때에도 취소될 수 없습니다." +msgstr "업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에도 취소할 수 없습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "시스템에 업그레이드할 것이 없습니다. 업그레이드를 취소합니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" -msgstr "%s 삭제" +msgstr "%s 제거" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s 설치" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s 업그레이드" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "%li 일 %li 시간 %li 분 정도 남았음" +msgstr "%li일 %li시간 %li분" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "%li 시간 %li 분 정도 남았음" +msgstr "%li시간 %li분" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li분" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li초" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "재부팅이 필요합니다." +msgstr "다시 시작해야 합니다" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"업그레이드가 끝났습니다. 재부팅이 필요합니다. 지금 재부팅 하시겠습니까?" +msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 하시겠습니까?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -701,12 +670,11 @@ msgid "" msgstr "" "실행 중인 업그레이드를 취소하시겠습니까?\n" "\n" -"업그레이드를 취소하면 시스템이 사용하기 어려운 상태가 될 수 있습니다. 업그레" -"이드를 계속 하시는 쪽을 강력히 추천합니다." +"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이드를 계속 하시기를 강력히 건의합니다." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "업그레이드가 완료되어 시스템을 재시작합니다." +msgstr "업그레이드를 완료하기 위해 시스템을 다시 시작합니다." #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -714,45 +682,43 @@ msgstr "업그레이드를 시작하시겠습니까?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "우분투를 버전 6.10으로 업그레이드하고 있습니다" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "지우는 중" +msgstr "정리하고 있습니다" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" -msgstr "자세히" +msgstr "자세한 정보" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "파일의 차이점" +msgstr "파일 간의 차이점" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "업그레이드를 다운로드하고 설치하는 중" +msgstr "업그레이드를 받아서 설치하고 있습니다" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "소프트웨어 채널을 수정하는 중" +msgstr "소프트웨어 채널을 수정하고 있습니다" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "업그레이드를 준비하는 중" +msgstr "업그레이드를 준비하고 있습니다" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "시스템을 재시작하는 중" +msgstr "시스템을 다시 시작하고 있습니다" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" msgstr "터미널" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "업그레이드 계속(_R)" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -772,16 +738,15 @@ msgstr "버그 보고(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "지금 바로 재시작(_R)" +msgstr "지금 다시 시작(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "업그레이드 계속(_R)" +msgstr "계속 업그레이드(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "업그레이드 계속(_R)" +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -799,7 +764,6 @@ msgstr "릴리즈 정보를 다운로드 할 수 없습니다." msgid "Please check your internet connection." msgstr "인터넷 연결 상태를 확인하십시오." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "업그레이드 도구를 실행할 수 없습니다." @@ -807,12 +771,11 @@ msgstr "업그레이드 도구를 실행할 수 없습니다." #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "" -"업그레이드 도구에 버그가 있을 가능성이 높습니다. 버그를 보고하여 주십시오." +msgstr "업그레이드 도구에 버그가 있는 것 같습니다. 버그를 보고하여 주십시오." #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "업그레이드 도구를 다운로드하는 중" +msgstr "업그레이드 도구를 다운로드하고 있습니다" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." @@ -828,12 +791,11 @@ msgstr "업그레이드 도구" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "가져오기가 실패했습니다." +msgstr "받기 실패" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"업그레이드를 가져오는데 실패했습니다. 네트워크에 문제가 있을 수 있습니다. " +msgstr "업그레이드를 받는데 실패했습니다. 네트워크에 문제가 있을 수 있습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -843,22 +805,17 @@ msgstr "압축 풀기 실패" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있" -"습니다. " +msgstr "업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "검사 실패" +msgstr "확인 실패" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"업그레이드를 검사하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니" -"다. " +msgstr "업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -868,216 +825,184 @@ msgstr "인증 실패" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"업그레이드를 인증하는데 실패했습니다.네트워크나 서버에 문제가 있을 수 있습니" -"다. " +msgstr "업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "%li 의 %li 파일 내려 받는 중, 속도 %s/s" +msgstr "%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "%li 의 %li 파일 내려 받는 중, 속도 %s/s" +msgstr "%(total)li개중 %(current)li번째 파일을 받고 있습니다" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "바뀐 목록을 아직 이용할 수 없습니다. 잠시 후에 다시 해주시기 바랍니다." +msgstr "변경 사항 목록이 없습니다" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "바뀐 목록을 아직 이용할 수 없습니다. 잠시 후에 다시 해주시기 바랍니다." +msgstr "" -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"바뀐 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "우분투 5.10 보안 업데이트" +msgstr "중요한 보안 업데이트" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "추천하는 업데이트" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "업데이트를 설치(_I)" +msgstr "제안하는 업데이트" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backports" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "업그레이드 계속(_R)" +msgstr "배포판 업데이트" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "업데이트를 설치(_I)" +msgstr "기타 업데이트" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "버전 %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "바뀐 목록을 다운로드 하는 중..." +msgstr "변경 사항 목록을 다운로드하고 있습니다..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "전체 선택 취소(_U)" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "점검(_C)" +msgstr "전체 선택(_C)" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "다운로드 크기: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "%s 개의 업데이트를 설치할 수 있습니다." +msgstr[0] "업데이트 %s개를 설치할 수 있습니다." -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "잠시만 기다리십시오. 이 작업은 약간의 시간이 걸립니다." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "업데이트가 끝났습니다." +msgstr "완전히 업데이트하였습니다." -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "업데이트를 설치(_I)" +msgstr "업데이트 확인" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "새 버전: %s (크기: %s)" +msgstr "버전 %(old_version)s에서 %(new_version)s(으)로" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "버전 %s: \n" +msgstr "버전 %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(크기: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "더 이상 지원되지 않는 배포판입니다." -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업" -"그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" -"서 보실 수 있습니다." +"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 " +"http://www.ubuntu.com에서 보실 수 있습니다." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "새 배포판 '%s'를 이용할 수 있습니다" +msgstr "새 배포판 '%s'을(를) 설치할 수 있습니다" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 " -"\"sudo apt-get install -f\"를 실행하여 이 문제를 먼저 해결하십시오." +"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 \"sudo apt-get install -f\"를 " +"실행하여 이 문제를 먼저 해결하십시오." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "없음" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"수동으로 업데이트를 확인해야 합니다.\n" +"업데이트 확인을 직접 해야 합니다.\n" "\n" -"현재 자동으로 업데이트를 확인하지 않습니다. \"시스템\" -> \"관리 도구\" -> " -"\"Software Properties\"에서 설정할 수 있습니다." +"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭의 소프트웨어 소스에서 설정할 수 있습니다." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "시스템을 최신으로 유지하십시오." #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"CD 검색 오류\n" -"\n" -"%s" +msgstr "설치하지 못한 업데이트가 있습니다" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "업그레이드를 시작하시겠습니까?" +msgstr "업그레이드 관리자를 시작합니다" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1085,11 +1010,11 @@ msgstr "변경 사항" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "업데이트의 변경 사항과 설명" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "점검(_k)" +msgstr "확인(_k)" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" @@ -1110,6 +1035,9 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"배포판 업그레이드를 수행하여 가능한 많은 업데이트를 설치합니다. \n" +"\n" +"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에서 실행했기 때문일 수 있습니다." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1123,9 +1051,7 @@ msgstr "소프트웨어 업데이트" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" -"합니다." +msgstr "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공합니다." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1133,16 +1059,15 @@ msgstr "업그레이드(_p)" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "우분투 최신 버젼으로 업그레이드 합니다." +msgstr "우분투 최신 버전으로 업그레이드 합니다." #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "점검(_C)" +msgstr "확인(_C)" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "업그레이드 계속(_R)" +msgstr "배포판 업그레이드(_D)" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1150,34 +1075,31 @@ msgstr "앞으로 이 정보 숨김(_H)" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" -msgstr "업데이트를 설치(_I)" +msgstr "업데이트 설치(_I)" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" msgstr "변경 사항" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "업데이트" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "인터넷 업데이트" +msgstr "자동 업데이트" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "씨디롬/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "인터넷 업데이트" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "인터넷 업데이트" +msgstr "인터넷" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1189,11 +1111,14 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 " +"우분투 프로젝트로 일주일에 한번씩 익명으로 전송합니다.\n" +"\n" +"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위를 매기는데 사용합니다." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "CD롬 추가(_C)" +msgstr "씨디롬 추가" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1201,16 +1126,15 @@ msgstr "인증" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "다운로드 받은 소프트웨어 파일 삭제(_e):" +msgstr "다운로드한 소프트웨어 파일 삭제(_E):" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "다운로드가 끝났습니다." +msgstr "다운로드 위치:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" -msgstr "믿을 만한 소프트웨어 제공자로부터 공개 키를 가져옵니다." +msgstr "믿을 수 있는 소프트웨어 제공자로부터 공개 키를 가져옵니다." #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" @@ -1220,57 +1144,54 @@ msgstr "인터넷 업데이트" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "공식 우분투 서버의 보안 업데이트만 자동으로 설치됩니다." +msgstr "공식 우분투 서버의 보안 업데이트만 자동으로 설치합니다." #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" -msgstr "기본값 불러오기(_D)" +msgstr "기본값으로 되돌리기(_D)" #: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" -msgstr "배포판의 기본 키 불러오기" +msgstr "배포판의 기본 키로 되돌리기" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "소프트웨어 설정" +msgstr "소프트웨어 소스" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "소스 코드" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "통계" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "통계 정보 제출" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "써드 파티" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "업데이트를 자동으로 확인(_C):" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "백그라운드에서 업데이트 다운로드하되, 설치는 하지 않음(_D)" +msgstr "업데이트를 자동으로 다운로드하지만 설치는 하지 않습니다(_D)" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "키 가져오기(_I)" +msgstr "키 파일 가져오기(_I)" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "확인없이 보안 업데이트 설치(_I)" +msgstr "보안 업데이트는 확인 없이 설치(_I)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1279,20 +1200,19 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"채널 정보가 오래되었습니다.\n" +"이용할 수 있는 소프트웨어에 대한 정보가 오래되었습니다.\n" "\n" -"새로 추가되었거나 변경된 채널에서 소프트웨어를 설치하거나 업데이트를 설치하" -"기 위해서는 채널 정보를 새로 불러와야 합니다. \n" +"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" "\n" "계속하기 위해서는 인터넷 연결이 필요합니다." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" -msgstr "참고:" +msgstr "설명:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" -msgstr "구성요소:" +msgstr "구성 요소:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" @@ -1307,7 +1227,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1315,10 +1234,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"추가하고자 하는 채널의 APT 줄을 완전히 입력하십시오.\n" +"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" "\n" -"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb " -"http://ftp.debian.org sarge main\"" +"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb http://ftp.debian.org " +"sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1334,23 +1253,23 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "소스 편집" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "CD-ROM을 읽는 중" +msgstr "씨디롬을 검색하고 있습니다" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "소스 추가(_A)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" -msgstr "새로고침(_R)" +msgstr "다시 읽기(_R)" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "설치할 수 있는 업데이트를 보여주고, 설치합니다." +msgstr "가능한 업데이트를 보여주고, 설치합니다." #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" @@ -1360,428 +1279,251 @@ msgstr "업데이트 관리자" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "" -"현재 버전보다 새 버전이 있고, 업그레이드 가능한 지를 자동으로 확인합니다." +msgstr "현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "새로운 배포판을 확인합니다." +msgstr "새로운 배포판 발표를 확인합니다." #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"자동으로 업데이트 확인하는 기능을 사용하지 않는다면 채널 목록을 수동으로 새" -"로 고침해야 합니다. 이 설정은 이 경우에 알림 기능이 나타나지 않도록 합니다." +"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 " +"합니다." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "채널 목록을 새로고침할 것을 알려줍니다." +msgstr "채널 목록을 다시 읽도록 알려줍니다." #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "업데이트의 세부사항을 보여줍니다." +msgstr "업데이트의 자세한 정보를 보여줍니다." #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "업데이트 관리자 대화상자의 크기를 저장합니다." +msgstr "업데이트 관리자 창의 크기 저장" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" -msgstr "변경과 설명의 목록을 가지는 확장자의 상태를 저장합니다." +msgstr "변경 사항과 설명의 목록을 포함하는 확장자의 상태를 저장합니다." #: ../data/update-manager.schemas.in.h:8 msgid "The window size" msgstr "창 크기" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "소프트웨어 채널과 인터넷 업데이트를 설정합니다." +msgstr "설치할 수 있는 소프트웨어와 업데이트를 위한 소스를 설정" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "우분투 5.10 업데이트" +msgstr "우분투 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "커뮤니티에서 관리유지함 (Universe)" +msgstr "커뮤니티에서 관리" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "장치의 독점 드라이버" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "자유소프트웨어 아님 (Multiverse)" +msgstr "제한된 소프트웨어" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "우분투 6.10 'Edgy Eft' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "우분투 6.06 'Dapper Drake'" +msgstr "우분투 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "커뮤니티에서 관리유지함 (Universe)" +msgstr "커뮤니티에서 관리 (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "커뮤니티에서 관리유지함 (Universe)" +msgstr "커뮤니티에서 관리하는 오픈 소스 소프트웨어" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "자유소프트웨어 아님 (Multiverse)" +msgstr "비자유 드라이버" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "장치의 독점 드라이버 " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "자유소프트웨어 아님 (Multiverse)" +msgstr "제한된 소프트웨어 (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "우분투 6.06 'Dapper Drake'" +msgstr "우분투 6.06 LTS 'Dapper Drake' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Backport 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "우분투 5.10 'Breezy Badger'" +msgstr "우분투 5.10 'Breezy Badger' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "우분투 5.10 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "우분투 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "우분투 5.10 'Breezy Badger'" +msgstr "우분투 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "우분투 5.04 'Hoary Hedgehog' 씨디롬" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "공식적으로 지원됨" +msgstr "공식적으로 지원함" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "우분투 5.10 보안 업데이트" +msgstr "우분투 5.04 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "우분투 5.10 업데이트" +msgstr "우분투 5.04 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "우분투 5.10 Backports" +msgstr "우분투 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "우분투 5.10 'Breezy Badger'" +msgstr "우분투 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "커뮤니티에서 관리유지함 (Universe)" +msgstr "커뮤니티에서 관리 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "자유소프트웨어 아님 (Multiverse)" +msgstr "비자유 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "우분투 4.10 'Warty Warthog' 씨디롬" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "더 이상 공식적으로 지원하지 않는 소프트웨어가 있습니다." +msgstr "더 이상 공식적으로 지원하지 않음" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "저작권 제한됨" +msgstr "저작권이 제한됨" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "우분투 5.10 보안 업데이트" +msgstr "우분투 4.10 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "우분투 5.10 업데이트" +msgstr "우분투 4.10 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "우분투 5.10 Backports" +msgstr "우분투 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "데비안 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "데비안 3.1 \"Sarge\" 보안 업데이트" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "데비안 \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "데비안 \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "DFSG 호환이지만 자유소프트웨어가 아닌 의존성이 있는 소프트웨어" +msgstr "DFSG 호환이 되지만 비자유 소프트웨어에 의존하는 소프트웨어" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "DFSG와 호환이 안되는 소프트웨어" - -#~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "%li 의 %li 파일 내려 받는 중, 속도 알 수 없음" - -#, fuzzy -#~ msgid "Normal updates" -#~ msgstr "업데이트를 설치(_I)" - -#~ msgid "Cancel _Download" -#~ msgstr "다운로드 취소(_D)" - -#~ msgid "Some software no longer officially supported" -#~ msgstr "더 이상 공식적으로 지원하지 않는 소프트웨어가 있습니다." +msgstr "DFSG와 호환이 되지 않는 소프트웨어" -#~ msgid "Could not find any upgrades" -#~ msgstr "어떤 업그레이드 꾸러미도 찾을 수 없습니다." - -#~ msgid "Your system has already been upgraded." -#~ msgstr "이미 시스템이 업그레이드 되어 있습니다." - -#, fuzzy #~ msgid "" -#~ "Upgrading to Ubuntu 6.10" -#~ msgstr "" -#~ "우분투 6.06 LTS로 업그레이드하는 중" -#~ "" - -#, fuzzy -#~ msgid "Important security updates of Ubuntu" -#~ msgstr "우분투 5.10 보안 업데이트" - -#, fuzzy -#~ msgid "Updates of Ubuntu" -#~ msgstr "우분투 최신 버젼으로 업그레이드 합니다." - -#~ msgid "Cannot install all available updates" -#~ msgstr "설치할 수 없는 업데이트가 있습니다" - -#~ msgid "" -#~ "Examining your system\n" -#~ "\n" -#~ "Software updates correct errors, eliminate security vulnerabilities and " -#~ "provide new features." -#~ msgstr "" -#~ "시스템 검사 중\n" -#~ "\n" -#~ "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제" -#~ "공합니다." - -#, fuzzy -#~ msgid "Oficially supported" -#~ msgstr "공식적으로 지원됨" +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." +#~ msgstr "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것을 잃어버릴 것입니다." +#, python-format #~ 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 "" -#~ "어떤 업데이트는 설치하려면 다른 소프트웨어를 삭제해야 합니다. \"시냅틱\" " -#~ "꾸러미 관리자의 \"모든 업그레이드 하기\" 기능을 사용하거나 터미널에서 " -#~ "\"sudo apt-get dist-upgrade\"를 실행하여 시스템을 완전하게 업데이트 하십시" -#~ "오." - -#~ msgid "The following updates will be skipped:" -#~ msgstr "다음 업데이트는 무시됩니다:" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" +#~ msgstr "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로는 약 %s이(가) 걸립니다." -#~ msgid "About %li seconds remaining" -#~ msgstr "%li 초 정도 남았음" - -#~ msgid "Download is complete" -#~ msgstr "다운로드가 끝났습니다." - -#~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "업그레이드가 중지되었습니다. 버그를 보고하여 주십시오." - -#~ msgid "Upgrading Ubuntu" -#~ msgstr "우분투를 업그레이드 하는 중" - -#~ msgid "Hide details" -#~ msgstr "세부 정보 숨기기" - -#~ msgid "Show details" -#~ msgstr "자세히 보기" - -#~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "동시에 한 가지 소프트웨어 관리 도구만 실행할 수 있습니다." +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "변경 사항 목록이 아직 없습니다. 잠시 후 다시 시도해 주십시오." #~ msgid "" -#~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "'aptitude'나 '시냅틱'과 같은 다른 프로그램을 먼저 닫으십시오." - -#~ msgid "Channels" -#~ msgstr "채널" - -#~ msgid "Keys" -#~ msgstr "" - -#~ msgid "Installation Media" -#~ msgstr "설치 미디어" - -#~ msgid "Software Preferences" -#~ msgstr "소프트웨어 설정" - -#~ msgid " " -#~ msgstr " " - -#~ msgid "Channel" -#~ msgstr "채널" - -#~ msgid "Components" -#~ msgstr "구성요소" - -#~ msgid "Add Channel" -#~ msgstr "채널 추가" - -#~ msgid "Edit Channel" -#~ msgstr "채널 편집" - -#~ msgid "_Add Channel" -#~ msgstr "채널 추가(_A)" - -#~ msgid "_Custom" -#~ msgstr "사용자 정의(_C)" - -#~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "우분투 6.06 LTS" - -#~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "우분투 6.06 LTS 보안 업데이트" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." -#~ msgid "Ubuntu 6.06 LTS Updates" -#~ msgstr "우분투 6.06 LTS 업데이트" +#~ msgid "By Canonical supported Open Source software" +#~ msgstr "Canonical이 지원하는 오픈 소스 소프트웨어" -#~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "우분투 6.06 LTS 백포트" +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" \ No newline at end of file diff --git a/po/ku.po b/po/ku.po index b5e66826..27d3aac3 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:43+0000\n" -"Last-Translator: Erdal Ronahi \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-04 06:52+0000\n" +"Last-Translator: ElîxanLoran \n" "Language-Team: Kurdish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,76 +55,78 @@ msgstr "Piştî mehekê" msgid "After %s days" msgstr "Piştî %s roj" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" -msgstr "" +msgstr "%s rojanekirin" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Pêşkêşkera Mak" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Pêşkêşkera %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Pêşkêşkera herî nêzîk" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Pêşkêşkera taybet" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" -msgstr "" +msgstr "Qanala Nivîsbariyê" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Çalak" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Koda Çavkanî)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Koda Çavkaniyê" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "Mifteyê veguhezîne" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "" +msgstr "Di dema veguheztina dosyeya hilbijartî de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" +"Dosyeya hilbijartî dibe ku ne dosyeya mifteyan ya GPG be an jî dibe ku " +"xerabe be." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" -msgstr "" +msgstr "Di dema rakirina mifteyan de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" +"Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê yekê weke " +"çewtiyekê ragihîne." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -133,14 +135,17 @@ msgid "" "\n" "%s" msgstr "" +"Di venihêrina CDyê de çewtî\n" +"\n" +"%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "" +msgstr "Ji kerema xwe navê ji bo diskê binivîse" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "" +msgstr "Ji kerema xwe re dîskekê têxe ajokar:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" @@ -151,19 +156,21 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" +"Pergala te tevî vê nivîsbariyê hin pakêtên xerabe yên ku nayên sererastkirin " +"dihewîne. Berî ku tu berdewam bikî ji kerema xwe re van bernameyan bi " +"synaptic an jî i apt-get sererast bikî" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "" +msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "" +msgstr "Divê pakêteke pêwist jê were rakirin" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "Rojanekirin nikaribû were hesabkirin" #: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" @@ -172,11 +179,14 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"Dema bilindkirin hesab dikir çewtiyeke ku nayê veçirandin derkete holê.\n" +"\n" +"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li " +"/var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "" +msgstr "Di piştrastkirina çend paketan de çewtî derket" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -184,6 +194,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"Hin pakêt nehatin piştrastkirin. Dibe ku ev pirsgirêkeke derbasdar ya torê " +"be. Ji bo lîsteya pakêtên ku nehatine piştrastkirin li jêr binihêre." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -195,11 +207,12 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" +"Pakêta pêwist nehate barkirin. Ji kerema xwe re vê yekê weke çewtiyekê " +"ragihîne. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "" +msgstr "Pakêta-meta nehate kifşkirin" #: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" @@ -209,10 +222,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" +"Pergala te tu pakêtên sermaseya-ubuntu, sermaseya-kubuntu yan jî sermaseya-" +"kubuntu nahundirîne û nehate tespîtkirin ku tu kîjan guhertoya ubuntuyê " +"bikar tîne.\n" +"Ji kerema xwe re berî ku tu berdewam bikî, bi synaptic yan jî bi apt-getê " +"pakêtên ku li jor in yekê saz bike." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" -msgstr "" +msgstr "Dema têxistina CDyê de çewtî" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -223,14 +241,19 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Dema CD lê dihate zêdekirin, bilindkirin disekine. Heke tu CDyeke rast ya " +"Ubuntuyê bikar tîne vê çewtiyê ragihîne.\n" +"\n" +"Peyama çewtiyê:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "" +msgstr "Pêşbîr tê xwendin" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Ji bo bilindkirinê bila dane ji toreyê were daxistin?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -239,10 +262,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Tu dikarî bi xêra tora bilindkirinê rojanekirinên herî dawî kontrol bike û " +"pakêtên ku di CDyê de tuneye daxe.\n" +"Heke gihiştina te ya torê ne lez be yan jî ne biha be divê tu pêl 'Ere' " +"bike. Yan jî pêl 'Na' bike." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "" +msgstr "Şewqdereke derbasdar nehate dîtin." #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -255,11 +282,18 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"Dema çav li agahiyên we yên depoyê dihate gerîn bo rojanekirinê ketana " +"şewqderê nehate dîtin. Dibe ku sedema wê ev be; yan te şewqdereke hundurîn " +"bikar aniye an jî agahiyên şewqderê ne rojane ye.\n" +"\n" +"Tu dixwazî dosyeya xwe ya 'sources.list' ji nû ve çêbike?\n" +"Heke tu li vir 'Erê' hilbijêrî hemû ketanên 'ji %s' heta '%s' wê bêne " +"rojanekirin.\n" +"Heke tu bibêjî 'Na' wê rojanekirin betal bibe." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "Bile çavkaniyên rawêjî pêk bên?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -269,20 +303,27 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"Piştî ku çav li 'sources.list' gerand ji bo '%s' tu têketineke derbasdar " +"nedît.\n" +"\n" +"Ji bo '%s' bila têketinên heyî lê zêde bibe? Heke tu bibêjî 'Na' dê " +"rojanekirin were betalkirin." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "Agahiya depoyê ne derbasdar e" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"Karê rojanekirina agahiya depoyê, dosyeyeke nederbasdar çêkir. Ji kerema xwe " +"re vê çewtiyê ragihîne." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "" +msgstr "Ji çavkaniyên partiyên sêyemîn têkilî hate birîn." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -293,17 +334,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" -msgstr "" +msgstr "Di rojanekirinê de çewtî derket" #: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" +"Di dema rojanekirinê de çewtiyek derket. Ev çewtî piranî pirsgirêka torê ye, " +"ji kerema xwe re girêdana xwe ya torê kontrol bike û ji nû ve biceribîne." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" -msgstr "" +msgstr "Cihê vala yê diskê têr nake" #: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format @@ -312,17 +355,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"Bilindkirin diqede. Ji kerema xwe re di %s de herî kêm %s qada dîskê vala " +"bike. Çopa xwe vala bikin û bi 'sudo apt-get clean' pakêtên derbasdar yên " +"sazkirinên berê rake." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "" +msgstr "Tu dixwazî dest bi bilindkirinê bikî?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "" +msgstr "Sazkirina hemû bilindkirinan biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -330,22 +375,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"Bêyî bilindkirin niha tê betalkirin. Dibe ku pergala te di rewşeke dudilî de " +"be. Karekî xelaskirinê pêk hat. (dpkg --configure -a).\n" +"\n" +"Ji kerema xwe re bo pakêta 'update-manager' vê çewtiyê ragihîne. Dosyeyên ku " +"li /var/log/dist-upgrade/ de ye jî li peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" -msgstr "" +msgstr "Daxistina bilindkirinan serneket" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" +"Rojanekirin niha tê betalkirin. Ji kerema xwe girêdana înternetê an medyaya " +"sazkirinê kontrol bike û ji nû ve biceribîne. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Ji bo hin sepanan piştrastkirin qediya" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +406,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "Bila pakêtên ku nayên bikaranîn werine rakirin?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "Vê gavê derbas bike" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Jê bibe" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "" +msgstr "Di dema xebatê de çewtî" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" +"Di dema paqijkirinê de hin pirsgirêk derketin. Ji bo agahiyan ji kerema xwe " +"re li peyama jêr binihêre. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "" +msgstr "Vedigere rewşa pergala orjînal" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "" +msgstr "Bireveberiya paketan tê kontrol kirin" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "Agahiyên depoyê tê rojanekirin" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "Agahiya paketê nederbasdar e" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -421,28 +473,32 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng " +"'%s' êdî nayê dîtin.\n" +"Dibe ku ev çewtiyeke girîng e, ji kerema xwe re bo pakêta 'update-manager' " +"vê çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li " +"peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "" +msgstr "Pirsa piştrastkirinê" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Tê bilindkirin" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "Li nivîsbariya kevin tê gerandin" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "Ji kerema xwe '%s' bixe nav ajokera '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 #, fuzzy @@ -455,10 +511,10 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" -msgstr "" +msgstr "Nêzîka %s ma" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format @@ -467,7 +523,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Guherandin tê bi kar anîn" @@ -475,108 +530,122 @@ msgstr "Guherandin tê bi kar anîn" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "Nikaribû '%s' saz bike" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"Bilindkirin tê betalkirin. Ji kerema xwe re bo pakêta 'update-manager' vê " +"çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li peyama " +"xwe ya çewtiyê zêde bike." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" +"Pelgeha veavakirinan ya hatiye taybetkirin ya\n" +"'%s' bila were guherandin?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "Fermana 'diff' nehatiye dîtin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "" +msgstr "Çewtiyeke giran derket" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" +"Ji kerema xwe re vê çewtiyê ragihîne.Dosyeyên ku li /var/log/dist-upgrade/ " +"de ye jî li peyama xwe ya çewtiyê zêde bike. Bilindkirin niha tê " +"betalkirin.\n" +"Dosyeya te ya sources.list ya orjînal wekî /etc/apt/sources.list.distUpgrade " +"hate tomarkirin." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket dê were rakirin." msgstr[1] "%s paket dê werin rakirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket dê were sazkirin" msgstr[1] "%s paket dê werin sazkirin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket dê were bilindkirin." msgstr[1] "%s paket dê werin bilindkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Pêwîst e tu bi tevahî %s daxî." +msgstr "" +"\n" +"\n" +"Pêwîst e tu bi tevahî %s daxî. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" +"Daxistin û sazkirina bilindkirinê dibe ku bi saetan bidome û dû re jî tu " +"nikare betal bike." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "" +msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Ji bo pergala te bilindkirin tuneye. Karê bilindkirinê wê a niha were " +"betalkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s rake" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s saz bike" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s bilind bike" @@ -584,45 +653,44 @@ msgstr "%s bilind bike" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li roj %li saet %li xulek" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li saet %li xulek" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li xulek" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li çirke" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "" +msgstr "Destpêkirina nû pêwîst e" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" +"Bilindkirin bi dawî bû û destpêkirina nû pêwîst e. Tu dixwazî niha bikî?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -635,10 +703,15 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" +"Bilindkirina çalak bila were betal kirin?\n" +"\n" +"Dibe ku pergal neyê bikaranîn. Pêşniyar ew e ku bilindkirin were dewamkirin." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" +"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide " +"destpêkirin" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -646,7 +719,7 @@ msgstr "Dest bi bilindkirinê were kirin?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Ubuntu li guhertoya 6.10 tê bilindkirin" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -658,23 +731,23 @@ msgstr "Hûragahî" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "Cudahiyên navbera dosiyan" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" -msgstr "" +msgstr "Bilindkirin nehatne sazkirin" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "" +msgstr "Kanalên nivîsbariyê tên guherandin" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "" +msgstr "Bilinkirin amade dibe" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "Pergal tê nûdestpêkirin" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" @@ -694,19 +767,19 @@ msgstr "Bi_parêze" #: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" -msgstr "" +msgstr "Bide _ser" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "Çewtiyê _Ragihîne" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "" +msgstr "Niha _ji nû ve bide destpêkirin" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "" +msgstr "Bilindkirinan _Bidomînî" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -714,245 +787,247 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "Nîşeyên weşandinê nayên dîtin" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "Dibe ku barê pêşkêşkerê pir zêde be " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "Nîşeyên weşanê nehate daxistin" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "Ji kerema xwe girêdana înternetê kontrol bike." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "Amûra bilindkirinê nikaribû bimeşîne" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" +"Qey ev çewtiyeke amûra bilindkirinê ye. Ji kerema xwe çewtiyê rapor bike" #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "" +msgstr "Amûra bilindkirinê tê daxistin" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "Amûra bilindkirinê te ber bi pêvajoya bilindkirinê dibe." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "Destnîşana amûra bilindkirinê" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "" +msgstr "Amûra bilindkirinê" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "Anîn biserneket" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" +msgstr "Anîna bilindkirinê biserneket. Dibe ku pirsgirêkeke torê hebe. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "Derxistin biserneket" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Derxistina bilindkirinê biserneket. Dibe ku pirsgirekeke tor an pêşkêşkarê " +"hebe. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "Piştrastkirin biserneket." #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Di dema erêkirina bilindkirinê de çewtî. Dibe ku yan di torê de yan jî di " +"pêşkêşkerê de pirsgirêk hebe " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" -msgstr "" +msgstr "Naskirin lê nehat" #: ../UpdateManager/DistUpgradeFetcher.py:229 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" +"Naskirina bilindkirnê lê nehat. Dibe ku pirsgirekeke tor an pêşkêşkarê hebe. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "Pelgeha %(current)li ji %(total)li bi %(speed)s/ç tê daxistin" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "Pelgeha %(current)li ji %(total)li" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" +msgstr "Lîsteya guherînan ne gihiştbar e" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "" +msgstr "Rojanekirinên ewlekariyê yên girîng" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Rojanekirinên têne pêşniyarkirin" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "" +msgstr "Rojanekirinên hatine pêşniyarkirin" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Rojanekirinên dîstrîbusiyonê" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "" +msgstr "Rojanekirinên din" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" -msgstr "Guhertoya %s: \n" +msgstr "Guherto %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "" +msgstr "Lîsteya guhartinan tê daxistin..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "Yekê Jî _Hilnebijêre" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "" +msgstr "Hemûyan _Hilbijêrî" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Mezinahiya daxistinê: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Tu dikarî %s rojanekirinê saz bikî" msgstr[1] "Tu dikarî %s rojanekirinan saz bikî" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "Divê raweste, dibe ku ev hinekî demdijêj be." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Rojanekirin temam bû" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "" +msgstr "Rojanekirin têne venihartin." -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Guhertoya %s: \n" +msgstr "Guherto %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Mezinahî:%s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" -msgstr "" +msgstr "Belavkariya ku tu bikar tîne nayê destekirin" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" +"Ji vir û pê ve tu yê êdî sererastkirinên ewlehiyê û rojanekirinên krîtîk " +"nestîne. Pergala xwe ya xebatê bilindî guhertoya Ubuntu Linuxê bike. Ji bo " +"agahiyên berfireh malpera http://www.ubuntu.com ziyaret bike." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Weşana belavkariya nû dikare bigihêje '%s'" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "Pêrista nivîsbariyê xera bûye" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" +"Sazkirin an jî rakirina nivîsbariyê qet ne gengaz e. Ji kerema xwe berî her " +"tiştî vê pirsgirêkê bi gerînendeyê pakêtan ya \"Synaptic\" and jî bi fermana " +"\"sudo apt-get install -f\" re di termînalê de çareser bike. \n" +" \n" +"— By ElîxanLoran on 2006-08-25 06:29:14 UTC (2 more)" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Ne yek jî" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 msgid "" @@ -964,11 +1039,11 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "" +msgstr "Pergala xwe rojane hilîne" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" +msgstr "Di lênihertina CDyê de çewtî" #: ../data/glade/UpdateManager.glade.h:6 #, fuzzy @@ -981,23 +1056,24 @@ msgstr "Guhartin" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Daxuyaniya guherîn û rojanekirinan" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "" +msgstr "_Kontrol bike" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "" +msgstr "Ji bo rojanekirinên nû qanalên nivîsbariyê kontrol bike" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" msgstr "Daxuyanî" #: ../data/glade/UpdateManager.glade.h:12 +#, fuzzy msgid "Release Notes" -msgstr "" +msgstr "Nîşeyên Weşanê" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1006,70 +1082,74 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Ji bo hemû rojanekirinên gengaz in bilindkirina belavkariyê pêk bîne.\n" +"\n" +"Dibe ku ev ji ber bilindkirina nehatiye temamkirin, pakêtên nermalavên ne " +"fermî yan jî ji ber ku guhertoya pêşvebirinê hatiye bikaranîn pêk hatibe." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "Pêşketina dosiyan yek bi yek nîşan bide" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "" +msgstr "Rojanekirinên Nivîsbariyê" #: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" +"Rojanekirinên nivîsbariyê çewtiyan serrast dikin, valahiyên ewlêkariyê " +"dadigirin û funksiyonên nû tînin." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "_Bilindkirin" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "" +msgstr "Ber bi guhertoya dawî ya Ubuntu bilind bike" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_Kontrol bike" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" -msgstr "" +msgstr "Bilindkirina _Belavkirinê" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "Di pêşerojê de vê agahiyê _veşêre" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" -msgstr "" +msgstr "Rojanekirinan _Saz bike" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Guhartin" +msgstr "guhertin" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "rojanekirin" #: ../data/glade/SoftwareProperties.glade.h:2 msgid "Automatic updates" -msgstr "" +msgstr "Rojanekirina bixweber" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" -msgstr "" +msgstr "Rojanekirinên înternetê" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Kanal" +msgstr "Înternet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1084,15 +1164,15 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" -msgstr "" +msgstr "Cdrom lê zêde bike" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" -msgstr "" +msgstr "Erêkirina Nasnameyê" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "" +msgstr "Dosiyên nivîsbariyê yên daxistî _jê bibe:" #: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy @@ -1101,25 +1181,27 @@ msgstr "Daxistin hatiye temam kirin" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" -msgstr "" +msgstr "Ji peydakereke ku tu pê ewle yî, mifteyeke vekirî veguhezîne hundir" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" -msgstr "" +msgstr "Rojanekirinên Înternetê" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" +"Rojanekirinên ewlehiyê tenê wê ji aliyê pêşkêşkerên fermî yên Ubuntuyê ve " +"bixweber were sazkirin." #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" -msgstr "" +msgstr "Vegerîne ser Nirxên _Destpêke" #: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" -msgstr "" +msgstr "Mifteyên peşdanasînî yên belavkariya te paş de vedigerîne" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 @@ -1129,35 +1211,35 @@ msgstr "Taybetmendiyên Nivîsbariyê" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Koda çavkanî" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Îstatîstîk" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Agahiyên Îstatîskî Ragihîne" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Aliyê Sêyemîn" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" -msgstr "" +msgstr "Xwebixwe li rojanekirinan bi_gerîne:" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" -msgstr "" +msgstr "Rojanekirinan bixweber _daxe lê saz neke" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "" +msgstr "Dosyeya mifteyan _veguhezîne hundir" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "" +msgstr "Bêpesendkirin rojaneyên ewlehiyê _saz bike" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" @@ -1175,11 +1257,11 @@ msgstr "Şîrove:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" -msgstr "" +msgstr "Parçe:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" -msgstr "" +msgstr "Belavkirin:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 msgid "Type:" @@ -1207,40 +1289,44 @@ msgid "" "Binary\n" "Source" msgstr "" +"Dubendî (Binary)\n" +"Çavkanî (Source)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Sererastkirina Çavkaniyê" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "Li CD-ROM tê gerîn" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "Çavkaniyekê _Têxê" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" -msgstr "" +msgstr "_Rojane bike" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "Rojanekirinên amade nîşan bide û saz bike" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "Gerînendeyê Rojanekirinan" +msgstr "Rêveberiya Rojanekirinê" #: ../data/update-manager.schemas.in.h:1 msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" +"Bixweber kontrol bike bê ka guhertoya nû ya belavkariya mevcûd heye yan na û " +"(heke pêkan be) bê ka bilindkirinan pêşkeş dike yan na." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "" +msgstr "Li derketina belavkirina nû bigerîne" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1251,15 +1337,15 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "" +msgstr "Ji nû ve barkirina lîsteya kanalan bi bîr bixe" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "Hûragahiyên rojanekirinekê nîşan bide" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" +msgstr "Mezinahiya paceya rêveberê rojanekirinan hiltîne." #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1269,246 +1355,199 @@ msgstr "" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "Mezinahiyê paceyê" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" +msgstr "Ji bo nivîsbarî û rojanekirinên têne sazkirin çavkaniyan veava bike" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" -msgstr "" +msgstr "Yên ji aliyê komekê ber çav hatiye derbaskirin" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Neazad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cdroma Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neazad (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neazad (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "" +msgstr "Cdroma Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "" +msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "" +msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "Bi piştgirtiya fermî" +msgstr "Bi piştgiriya fermî" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirinên Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "" +msgstr "Yên ji aliyê koman ve lê tê nihêrîn (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Neazad (Multiverse)" +msgstr "Ne-azad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Bi piştgirtiya fermî" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "" +msgstr "Mafê kopîkrinê yê sînorkirî" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekariyê" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirinên Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "" +msgstr "Debian 3.1 \"Sarge\" Rojanekirinên Ewlekariyê" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1519,9 +1558,8 @@ msgstr "" #~ msgid "Your system has already been upgraded." #~ msgstr "Sîstema xwe berê hat bilindkirin." -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Ubuntu tê bilindkirin" +#~ msgstr "Rojanekirinên Ubuntu" #, fuzzy #~ msgid "Oficially supported" @@ -1540,4 +1578,4 @@ msgstr "" #~ msgstr "Kanal" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/lt.po b/po/lt.po index 20e16650..4669a9cd 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-28 20:07+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,15 +55,13 @@ msgstr "Po mėnesio" msgid "After %s days" msgstr "Po %s dienų" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Diegiami atnaujinimai" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,12 +121,13 @@ msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Negalima atnaujinti reikiamų metapaketų" msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" @@ -182,9 +179,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " -"tai kaip klaidą. " +"tai kaip klaidą." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" @@ -210,7 +206,6 @@ msgid "" msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 #, fuzzy msgid "Can't guess meta-package" @@ -279,7 +274,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Ar sukurti numatytųjų šaltinių sąrašą?" @@ -344,16 +338,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +358,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. " "Dabar bus vykdomas atkūrimas (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +370,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo " "laikmeną ir bandykite dar. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -394,25 +387,25 @@ msgstr "" "bendruomenė („universe“).\n" "\n" "Jei nesate įjungę „universe“ skyriaus, šie paketai bus siūlomi pašalinimui " -"kitame žingsnyje. " +"kitame žingsnyje." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Praleisti šį žingsnį" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "P_ašalinti" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -420,29 +413,27 @@ msgstr "" "Išvalymo metu iškilo problema. Daugiau informacijos rasite žemiau esančiame " "pranešime. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Perkraunama sistema" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Tikrinama paketų valdyklė" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Ruošiamas atnaujinimas" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -450,18 +441,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " -"tai kaip klaidą. " +"tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Netinkama paketo informacija" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -473,23 +464,22 @@ msgstr "" "paketo „%s“.\n" "Tai labai rimta problema, praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Klausiama patvirtinimo" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Atnaujinama" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -501,24 +491,23 @@ msgid "Fetching is complete" msgstr "Atnaujinimas užbaigtas" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Atsiunčiamas failas %li iš %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Pritaikomi pakeitimai" @@ -534,9 +523,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -546,67 +534,69 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Nerasta komanda „diff“" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Įvyko lemtinga klaida" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Praneškite apie tai kaip klaidą ir prie pranešimo pridėkite „/var/log/dist-" "upgrade.log“ bei „/var/log/dist-upgrade-apt.log“ bylas. Atnaujinimas dabar " "bus nutrauktas.\n" -"Jūsų originalioji „sources.list“ byla buvo išsaugota „/etc/apt/sources.list." -"distUpgrade“ aplanke." +"Jūsų originalioji „sources.list“ byla buvo išsaugota " +"„/etc/apt/sources.list.distUpgrade“ aplanke." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bus pašalintas %s paketas." msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bus įdiegtas %s naujas paketas." msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bus atnaujintas %s paketas." msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Turite atsisiųsti viso %s." +msgstr "" +"\n" +"\n" +"Turite atsisiųsti viso %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -614,35 +604,34 @@ msgid "" msgstr "" "Atnaujinimas gali užtrukti keletą valandų ir vėliau jo negalima atšaukti." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Pašalinti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Įdiegti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Atnaujinti %s" @@ -668,12 +657,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -690,7 +678,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -711,8 +698,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš naujo" +"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš " +"naujo" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -806,7 +793,6 @@ msgstr "Nepavyko atsiųsti laidos informacijos" msgid "Please check your internet connection." msgstr "Patikrinkite savo Interneto ryšį." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nepavyko paleisti atnaujinimo priemonės" @@ -880,133 +866,128 @@ msgstr "" "serverio problema. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "Nepavyko atsiųsti pakeitimų sąrašo. Patikrinkite Interneto ryšį." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 atnaujinimai" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Tęsti atnaujinimą" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versija %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Atsiunčiamas pakeitimų sąrašas..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Patikrinti" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[1] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[2] "Rodyti ir įdiegti galimus atnaujinimus" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Palaukite, tai gali užtrukti." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Atnaujinimas užbaigtas" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nauja versija: %s (Dydis: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Versija %s: \n" +msgstr "Versija %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Jūsų distribucija daugiau nebepalaikoma" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1016,17 +997,16 @@ msgstr "" "Atnaujinkite į naujausią „Ubuntu Linux“ versiją. Daugiau informacijos apie " "atnaujinimą rasite http://www.ubuntu.com ." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1036,23 +1016,19 @@ msgstr "" "pasinaudokite „Synaptic“ arba terminale įvykdykite komandą „sudo apt-get " "install -f“, norėdami ištaisyti šią problemą." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1422,252 +1398,211 @@ msgstr "" "Nustatykite programinės įrangos įdiegimo šaltinius bei atnaujinimus iš " "interneto" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 atnaujinimai" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Ne Laisva (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 „Dapper Drake“" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ne Laisva (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ne Laisva (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 „Dapper Drake“" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 „Breezy Badger“" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficialiai palaikoma" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 „Breezy Badger“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne Laisva (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Apribotos autorinės teisės" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 atnaujinimai" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 „Sarge“ saugumo atnaujinimai" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian „Etch“ (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.lt.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian „Sid“ (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +msgstr "" +"Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" @@ -1691,8 +1626,7 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atnaujinama į Ubuntu 6.06 LTS" +#~ "Atnaujinama į Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1714,21 +1648,21 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "" #~ "Ieškoma galimų atnaujinimų\n" #~ "\n" -#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti " -#~ "saugumo spragas bei suteikti naujas funkcijas." +#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " +#~ "spragas bei suteikti naujas funkcijas." #~ msgid "Oficially supported" #~ msgstr "Prižiūrima oficialiai" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Kai kuriems atnaujinimams reikia pašalinti programinę įrangą. Naudokitės " #~ "funkcija „Žymėti visus atnaujinimus“ paketų tvarkyklėje „Synaptic­“ arba " -#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų " -#~ "sistema būtų visiškai atnaujinta." +#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų sistema " +#~ "būtų visiškai atnaujinta." #~ msgid "The following updates will be skipped:" #~ msgstr "Šie atnaujinimai nebus įdiegti:" @@ -1783,9 +1717,11 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgid "Edit Channel" #~ msgstr "Keisti kanalą" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Pridėti kanalą" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Pridėti kanalą" +#~ msgstr[1] "_Pridėti kanalus" +#~ msgstr[2] "_Pridėti kanalų" #~ msgid "_Custom" #~ msgstr "_Kita" @@ -1804,8 +1740,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #, fuzzy #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Skanuojant Jūsų saugyklos informaciją nebuvo rasta tinkamo atnaujinimo " #~ "įrašo.\n" @@ -1817,19 +1753,17 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "Skyriai:" #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Jūs turite patys įkelti naujausią informaciją apie atnaujinimus\n" +#~ "Jūs turite patys įkelti naujausią informaciją apie " +#~ "atnaujinimus\n" #~ "\n" #~ "Jūsų sistema automatiškai neieško atnaujinimų. Šią elgseną galite " -#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos " -#~ "savybės“." +#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos savybės“." #~ msgid "Reload the latest information about updates" -#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" +#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" \ No newline at end of file diff --git a/po/lv.po b/po/lv.po new file mode 100644 index 00000000..874789b6 --- /dev/null +++ b/po/lv.po @@ -0,0 +1,1436 @@ +# translation of lp-upd-manager-lv.po to Latvian +# Latvian translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# +# FIRST AUTHOR , 2006. +# Raivis Dejus , 2006. +msgid "" +msgstr "" +"Project-Id-Version: lp-upd-manager-lv\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 19:12+0000\n" +"Last-Translator: mixat \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" +"X-Generator: KBabel 1.11.2\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Ikdienas" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Reizi divās dienās" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Nedēļas izdevums" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Reizi divās nedēļās" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Reizi %s dienās" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Pēc vienas nedēļas" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Pēc divām nedēļām" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Pēc viena mēneša" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Pēc %s dienām" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "%s atjauninājumi" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "Galvenais serveris" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "Aktīvs" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "Izejas kods" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Kļūda importējot izvēlēto failu" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "Izvēlētais fails varētu nebūt GPG atslēga vai arī tas ir bojāts." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Kļūda aizvācot atslēgu" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "Jūsu izvēlēto atslēgu nevar noņemt. Lūdzu, ziņojiet par šo kļūdu." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "Nevar aprēķināt atjauninājumu" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "Nevar instalēt '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "_Izņemt" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr " " + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "Detaļas" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "Terminālis" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "_Aizvietot" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "Autentifikācija neveiksmīga" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "Versija %s: \n" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "Nekas" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "%.1f MB" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "Izmaiņas" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "Apraksts" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "Autentifikācija" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "Izejas kods" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "Statistika" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "Komentārs:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "Distributīvs:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "Tips:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "URI:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "APT rindiņa:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" +"Binārais\n" +"Pirmkoda" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "_Pārlādēt" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "Oficiāli atbalstītie" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "Sabiedrības uzturētie (Universe)" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "Maksas (Multiverse)" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "Saistītie autortiesību" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" + +#~ msgid "Select _All" +#~ msgstr "Izvēlēties _Visu" \ No newline at end of file diff --git a/po/mk.po b/po/mk.po index 8fee6e29..354dbda5 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:43+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" @@ -20,51 +20,49 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 #, fuzzy msgid "Daily" -msgstr "Детали" +msgstr "Дневно" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "" +msgstr "Секои два дена" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "" +msgstr "Неделно" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "" +msgstr "Секои две недели" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" -msgstr "" +msgstr "Секои %s дена" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "" +msgstr "После една недела" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "" +msgstr "После две недели" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "" +msgstr "После еден месец" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" -msgstr "" +msgstr "После %s дена" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Инсталирам надградби..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -112,7 +109,7 @@ msgstr "Изворен код" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "Внеси клуч" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" @@ -128,7 +125,8 @@ msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." @@ -143,34 +141,35 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "" +msgstr "Ве молам внесете име за дискот" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "" +msgstr "Ве молам внесете диск во уредот:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "" +msgstr "Оштетени пакети" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" +"Вашиот систем содржи оштетени пакети кои не може да се поправат со овој " +"софтвер. Ве молам поправете ги со Синаптик или apt-get пред да продолжите." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "" +msgstr "Не може да се надградат потребните мета пакети" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "" +msgstr "Важен пакет мора да се отстрани" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "Не може да се одреди надградбата" #: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy @@ -181,12 +180,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " -"како бубачка. " +"како бубачка." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "" +msgstr "Грешка при автентикација на некои пакети" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -194,11 +192,13 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"Не можат да се автентицираат некои пакети. Може да има мрежни пречки. " +"Обидете се повторно. Видете подолу за листа на неавтентицирани пакети." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "" +msgstr "Не може да се инсталира %s'" #: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy @@ -209,10 +209,9 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "" +msgstr "Не може да се погоди мета пакетот" #: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" @@ -239,7 +238,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "" +msgstr "Читање на кешот" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" @@ -254,8 +253,9 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:248 +#, fuzzy msgid "No valid mirror found" -msgstr "" +msgstr "Не е пронајден валиден помошен сервер" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -268,8 +268,14 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"При скенирањето на Вашите информации за складиштата не беше најден запис за " +"помошен сервер. Ова може да се случи ако извршувате внатрешен сервер или ако " +"информациите за помошниот сервер се застарени.\n" +"\n" +"Дали сакате да го презапишете Вашиот „sources.list“ и покрај тоа? Ако " +"изберете „Да“, ќе ги надградам '%s' до '%s' записи.\n" +"Ако изберете „не“, надградбата ќе прекине." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" @@ -283,20 +289,27 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за " +"'%s'.\n" +"\n" +"Дали треба стандардните записи за '%s' да бидат додадени? Ако изберете „Не“, " +"надградувањето ќе прекини." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "Информациите за складиштето се невалидни" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"Од надградувањето на информациите за складиштето произлезе невалидна " +"датотека. Ве молам пријавете го ова како бубачка." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "" +msgstr "Додатните извори се оневозможени" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -315,10 +328,12 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" +"Се случи проблем при надградбата. Ова е обично некој проблем со мрежата и Ве " +"молиме да ја проверете Вашата мрежна врска и да се обидете повторно." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" -msgstr "" +msgstr "Нема доволно место на дискот" #: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format @@ -327,17 +342,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"Надградбата сега прекинува. Ве молам, ослободете најмалку %s место на дискот " +"на %s. Испразнете го ѓубрето и отстранете ги привремените пакети или " +"поранешни инсталации со помош на 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "" +msgstr "Дали сакате да ја започнете надградбата?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "" +msgstr "Не можам да ги инсталирам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,21 +363,23 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" -msgstr "" +msgstr "Не можам да ги симнам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" +"Надградбата сега прекинува. Проверете ја Вашата интернет врска или медиумот " +"за инсталација и обидете се повторно. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -369,52 +388,53 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "Да ги отстранам застарените пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "_Прескокни го овој чекор" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "" +msgstr "_Отстрани" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 +#, fuzzy msgid "Error during commit" -msgstr "" +msgstr "Грешка во извршувањето" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" +"Се случи некој проблем при расчистувањето. Видете ја пораката подолу за " +"повеќе информации. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy msgid "Checking package manager" msgstr "Веќе работи друг менаџер за пакети" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Преземам промени" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -422,17 +442,17 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " -"како бубачка. " +"како бубачка." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "Ги ажурирам информациите за складиштето" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "Невалидни информации за пакетот" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -442,28 +462,27 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "" +msgstr "Прашувам за потврда" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 #, fuzzy msgid "Upgrading" msgstr "Надградбата е завршена" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "Барам застарен софтвер" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "" +msgstr "Надградбата на системот е завршена." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "Внесете '%s' во драјвот '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -475,7 +494,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -487,7 +506,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -496,7 +514,7 @@ msgstr "Преземам промени..." #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "Не можам да инсталирам '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -504,7 +522,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -514,29 +531,28 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "Командата „diff“ не беше пронајдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "" +msgstr "Се случи фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -544,7 +560,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -552,7 +568,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -560,7 +576,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -568,43 +584,44 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" +"За да спречите загуба на податоци, затворете ги сите отворени апликации и " +"документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" -msgstr "" +msgstr "Отстрани %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" -msgstr "" +msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "" +msgstr "Надгради %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format @@ -627,27 +644,27 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "" +msgstr "Потребно е рестартирање" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" +"Надградбата е завршена и потребно е рестартирање. Дали сакате да го " +"направите сега?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -660,14 +677,19 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" +"Да ја прекинам тековната надградба?\n" +"\n" +"Системот може да е во неупотреблива состојба ако ја прекинете надградбата. " +"Строго препорачливо е да надградбата да продолжи." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" +"Рестартирајте го системот за да ја завршите надградбата" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "" +msgstr "Да ја започнам надградбата?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" @@ -675,7 +697,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "" +msgstr "Расчистувам" #: ../DistUpgrade/DistUpgrade.glade.h:9 #, fuzzy @@ -684,7 +706,7 @@ msgstr "Детали" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "Разлика помеѓу датотеките" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" @@ -692,19 +714,19 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "" +msgstr "Ги модифицирам софтверските канали" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "" +msgstr "Ја подготвувам надградбата" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "Го рестартирам системот" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" -msgstr "" +msgstr "Терминал" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" @@ -716,7 +738,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "_Чувај" #: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy @@ -725,15 +747,15 @@ msgstr "Освежи" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "_Пријави бубачка" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "" +msgstr "_Рестартирај сега" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "" +msgstr "_Продолжи со надградбата" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -741,24 +763,23 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "Не можам да ги најдам белешките за изданието" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "Серверот може да е преоптоварен. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "Не можам да ги преземам белешките за изданието" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "Ве молам проверете ја Вашата интернет врска." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "Не можам да ја извршам алатката за надградба" #: ../UpdateManager/DistUpgradeFetcher.py:150 #, fuzzy @@ -775,37 +796,39 @@ msgstr "Преземам промени" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "Алатката за надградба ќе Ве води низ процесот на надградба." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "Потпис на алатката за надградба" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "" +msgstr "Алатка за надградба" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "Не можам да симнам" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" +msgstr "Симнувањето на надградбите не успеа. Можеби има проблем со мрежата. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "Не можам да отпакувам" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Отпакувањето на надградбата не успеа. Можеби има проблем со мрежата или " +"серверот. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "Проверката не успеа" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" @@ -823,6 +846,8 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" +"Проверката на автентичност на надградбата не успеа. Можеби има проблем со " +"мрежата или серверот. " #: ../UpdateManager/GtkProgress.py:108 #, python-format @@ -834,19 +859,19 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Достапна е нова верзија на Убунту!" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Достапна е нова верзија на Убунту!" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -855,145 +880,141 @@ msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Безбедносни надградби за Debian Stable" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Надградби за Убунту 5.10" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "Инсталирам надградби..." -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Верзија %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, fuzzy msgid "Download size: %s" msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Инсталирам надградби..." msgstr[1] "Инсталирам надградби..." msgstr[2] "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "Ве молам, почекајте, ова може да потрае." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "" +msgstr "Надградбата е завршена" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Проверувам за надградби..." -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Верзија %s: \n" +msgstr "Верзија %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуција повеќе не е поддржана" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" +"Повеќе нема да добивате безбедносни поправки или критични надградби. " +"Надградете го системот на понова верзија на Ubuntu Linux. Видете на " +"http://www.ubuntu.com за повеќе информации за надградувањето." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Новото издание на дистрибуцијата, '%s', е достапно" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "Индексот на софтвер е расипан" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" +"Невозможно е да инсталирам или избришам некој софтвер. Користете го " +"менаџерот за пакети Синаптик или прво извршете „sudo apt-ge install -f“ во " +"терминал за да го надминете овој проблем." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1009,7 +1030,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "" +msgstr "Чувајте го Вашиот систем надграден" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" @@ -1029,11 +1050,11 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "" +msgstr "Провер_и" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "" +msgstr "Провери ги софтверските канали за нови надградби" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1041,7 +1062,7 @@ msgstr "Опис" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "" +msgstr "Белешки за изданието" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1053,7 +1074,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "Покажувај го напредокот поединечно" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" @@ -1064,18 +1085,20 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" +"Надградбата на софтверот ги поправа грешките, ги елиминира сигурносните " +"пропусти и овозможува нови карактеристики." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "Н_адгради" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "" +msgstr "Надгради во најновата верзија на Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_Провери" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" @@ -1083,7 +1106,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_Криј ги овие информации во иднина" #: ../data/glade/UpdateManager.glade.h:24 #, fuzzy @@ -1139,7 +1162,7 @@ msgstr "Проверка" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "" +msgstr "И_збриши ги преземените софтверски датотеки:" #: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy @@ -1161,6 +1184,8 @@ msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" +"Само безбедносните надградби од официјалните Ubuntu сервери ќе бидат " +"инсталирани автоматски" #: ../data/glade/SoftwareProperties.glade.h:16 #, fuzzy @@ -1206,11 +1231,11 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "" +msgstr "_Внеси датотека-клуч" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "" +msgstr "_Инсталирај ги безбедносните ажурирања без потврдување" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" @@ -1252,8 +1277,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Внесете ја комплетната линија за APT складиштето за да го додадете\n" +"Внесете ја комплетната линија за APT складиштето за да го " +"додадете\n" "\n" "APT линијата го содржи типот, локацијата и содржината на складиштето за на " "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " @@ -1278,7 +1303,7 @@ msgstr "Изворен код" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "Скенирам CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 #, fuzzy @@ -1292,7 +1317,7 @@ msgstr "Освежи" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "Прикажи и инсталирај ги достапните надградби" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" @@ -1303,10 +1328,12 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" +"Провери автоматски дали е достапна нова верзија на дистрибуцијата и понуди " +"надградба (ако е возможно)." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "" +msgstr "Провери за нови изданија од дистрибуцијата" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1317,15 +1344,15 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "" +msgstr "Потсети за одново вчитување на листата со канали" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "Прикажи детали за надградбата" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" +msgstr "Ја зачувува големината на дијалогот на update-manager" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1335,262 +1362,222 @@ msgstr "" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "Големината на прозорецот" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Надградби за Убунту 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Додатен софтвер" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Неслободно (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Неслободно (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Забранет софтвер во САД" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Безбедносни надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официјално поддржано" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Безбедносни надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Неслободно (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официјално поддржано" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Безбедносни надградби за Убунту 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Надградби за Убунту 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Надградби за Убунту 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Безбедносни надградби за Debian Stable" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian Testing" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian Non-US (Unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "DFSG-компатибилен софтвер со неслободни зависности" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "Не-DFSG-компатибилен софтвер" + +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Забранет софтвер во САД" #, fuzzy #~ msgid "Normal updates" @@ -1611,8 +1598,8 @@ msgstr "" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го " -#~ "ова како бубачка." +#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " +#~ "како бубачка." #, fuzzy #~ msgid "Hide details" @@ -1718,13 +1705,13 @@ msgstr "" #~ "Внесете ја комплетната линија за APT складиштето за да го " #~ "додадете\n" #~ "\n" -#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за " -#~ "на пример \"deb http://ftp.debian.org sarge main\". Во " -#~ "документацијата можете да најдете детален опис на синтаксата." +#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за на " +#~ "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " +#~ "можете да најдете детален опис на синтаксата." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Додајте нова датотека со клуч во доверливиот привезок. Осигурајте се дека " #~ "сте го добиле клучот преку безбеден канал и дека му верувате на неговиот " @@ -1758,8 +1745,8 @@ msgstr "" #~ msgstr "Отстрани го избраниот клуч од доверливиот привезок." #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Врати ги стандардните клучеви на дистрибуцијата. Ова нема да ги смени " #~ "клучевите инсталирани од корисникот." @@ -1794,8 +1781,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Достапни надградби\n" #~ "\n" @@ -1887,8 +1874,7 @@ msgstr "" #~ msgstr[2] "Избравте %s пакети за надградба, со големина од %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избравте %s од %s пакет за надградба, со големина од %s" #~ msgstr[1] "Избравте %s од %s пакети за надградба, со големина од %s" #~ msgstr[2] "Избравте %s од %s пакети за надградба, со големина од %s" @@ -1903,11 +1889,11 @@ msgstr "" #~ msgstr "Веќе работи друг менаџер за пакети" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Можете да работите само со една апликација за менаџмент на пакети " -#~ "одеднаш. Ве молам прво исклучете ја оваа апликацијата." +#~ "Можете да работите само со една апликација за менаџмент на пакети одеднаш. " +#~ "Ве молам прво исклучете ја оваа апликацијата." #~ msgid "Updating package list..." #~ msgstr "Ја ажурирам листата на пакети..." @@ -1923,17 +1909,17 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Ве молам надградете до понова верзија на Убунту Линукс. Верзијата на која " -#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни " -#~ "поправки и други технички надградби. Ве молам побарајте информации за " -#~ "надградба на http://www.ubuntulinux.org." +#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни поправки " +#~ "и други технички надградби. Ве молам побарајте информации за надградба на " +#~ "http://www.ubuntulinux.org." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Постои ново издание објавено под кодното име '%s'. Ве молам побарајте ги " #~ "инструкциите за надградба на http://www.ubuntulinux.org." @@ -1942,4 +1928,4 @@ msgstr "" #~ msgstr "Никогаш пак не ја покажувај поракава" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." +#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." \ No newline at end of file diff --git a/po/ms.po b/po/ms.po index 1ce703a3..29126d96 100644 --- a/po/ms.po +++ b/po/ms.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-30 13:49+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Selepas satu bulan" msgid "After %s days" msgstr "Selepas %s hari" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,13 +121,14 @@ msgid "Error removing the key" msgstr "Ralat semasa mengeluarkan kekunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Kekunci yang anda pilih tidak dapat di keluarkan. Sila laporkan ini sebagai " "ralat pepijat." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -169,7 +167,6 @@ msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" @@ -183,12 +180,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " -"penaikkan. Sila laporkan ini sebagai ralat pepijat. " +"penaikkan. Sila laporkan ini sebagai ralat pepijat." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "" +msgstr "Ralat mengesahkan sesetengah pakej" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -196,6 +192,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"Tidak mungkin untuk mengesahkan sesetengah pakej. Ini mungkin disebabkan " +"masalah sementara rangkaian. Anda mungkin mahu mencuba lagi kemudian. Lihat " +"dibawah untuk pakej-pakej yang belum disahkan." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -210,7 +209,6 @@ msgstr "" "Pakej yang diperlukan tidak dapat dipasang. Sila laporkan ini sebagai ralat " "pepijat. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." @@ -246,7 +244,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "" +msgstr "Membaca cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" @@ -261,8 +259,9 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:248 +#, fuzzy msgid "No valid mirror found" -msgstr "" +msgstr "Tiada mirror yang sah dijumpai" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -275,30 +274,44 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"Tiada mirror untuk naiktaraf dijumpai semasa mengimbas maklumat repositori. " +"Ini boleh berlaku sekiranya anda menjalankan mirror dalaman atau maklumat " +"mirror telah lapuk.\n" +"\n" +"Adakah anda tetap mahu menulis semula fail 'Sources.list' anda? Jika anda " +"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada " +"'%s'.\n" +"Jika anda memilih 'tidak' kemaskinian akan dibatalkan." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:267 -#, python-format +#, fuzzy msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas " +"'sources.list' anda.\n" +"\n" +"Adakah kemasukan default untuk '%s' perlu ditambah? Jika anda memilih " +"'Tidak' kemaskinian akan dibatalkan." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "Maklumat repositori tidak sah" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"Kemaskinian maklumat repositori menyebabkan fail yang tidak sah. Sila " +"laporkan ini sebagai masalah." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -344,16 +357,15 @@ msgstr "" "cakera keras %s anda. Kosong dan padamkan pakej-pakej sementara dari " "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Tidak dapat memasang pakej-pakej penaikkan taraf." -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +377,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sistem anda mungkin tidak stabil. " "Sistem 'recovery' telah dijalankan (dpkg --configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +389,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sila semak sambungan 'internet' atau " "media pemasangan anda dan cuba lagi. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -393,52 +405,50 @@ msgstr "" "Pakej-pakej yang telah dipasang ini sudah tidak ada sokonga/bantuan rasmi " "dan ianya hanya dibantu/sokong oleh 'community-supported('universe')\n" "Jika anda tidak megaktifkan 'universe', pakej-pakej ini akan dicadangkan " -"untuk dikeluarkan di peringkat selanjutnya. " +"untuk dikeluarkan di peringkat selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Keluarkan pakej-pakej yang sudah luput?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "_Abaikan langkah ini" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -446,17 +456,17 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " -"penaikkan. Sila laporkan ini sebagai ralat pepijat. " +"penaikkan. Sila laporkan ini sebagai ralat pepijat." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -466,27 +476,26 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "" +msgstr "Mengemaskini" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "Mencari perisian yang lapuk" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "" +msgstr "Naiktaraf sistem sempurna." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "Sila masukkan '%s' kedalam pemacu '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -498,7 +507,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -510,7 +519,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -526,7 +534,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -536,50 +543,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" msgstr[1] "Satu pakej yang perlu terpaksa dikeluarkan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -587,42 +593,42 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" +"Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" -msgstr "" +msgstr "Buang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" -msgstr "" +msgstr "Pasang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "" +msgstr "Naiktaraf %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format @@ -645,12 +651,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -665,11 +670,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -772,7 +776,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -846,153 +849,142 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1322,233 +1314,188 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Some software no longer officially supported" -#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." +#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." \ No newline at end of file diff --git a/po/nb.po b/po/nb.po index 92cbc761..a2e34ea5 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-29 13:06+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" @@ -55,38 +55,38 @@ msgstr "Etter en måned" msgid "After %s days" msgstr "Etter %s dager" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Installerer oppdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:316 +#, fuzzy msgid "Main server" -msgstr "" +msgstr "Hovedtjener" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 -#, python-format +#, fuzzy msgid "Server for %s" -msgstr "" +msgstr "Tjener for %s" #: ../SoftwareProperties/SoftwareProperties.py:324 +#, fuzzy msgid "Nearest server" -msgstr "" +msgstr "Nermeste tjener" #: ../SoftwareProperties/SoftwareProperties.py:345 +#, fuzzy msgid "Custom servers" -msgstr "" +msgstr "Egendefinerte tjenere" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 @@ -96,8 +96,9 @@ msgstr "Programvareoppdateringer" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 +#, fuzzy msgid "Active" -msgstr "" +msgstr "I bruk" #: ../SoftwareProperties/SoftwareProperties.py:714 #, fuzzy @@ -127,11 +128,13 @@ msgid "Error removing the key" msgstr "Kunne ikke fjerne nøkkelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -170,7 +173,6 @@ msgstr "Kan ikke oppgradere nødvendige meta-pakker" msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" @@ -184,9 +186,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " -"rapporter dette som en feil. " +"rapporter dette som en feil." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" @@ -213,7 +214,6 @@ msgid "" msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" @@ -287,7 +287,6 @@ msgstr "" "alle forekomster av '%s' endres til '%s'.\n" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" @@ -361,16 +360,15 @@ msgstr "" "papirkurven og fjern midlertidige pakker fra tidligere installasjoner ved å " "bruke 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Kunne ikke installere oppgraderingene" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -382,11 +380,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon " "ble forsøkt kjørt (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Kunne ikke laste ned alle oppgraderingene." -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +392,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Vennligst sjekk internet-tilkoblingen eller " "installasjonsmediet og prøv på nytt. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -411,25 +409,25 @@ msgstr "" "støttet av miljøet 'universe'.\n" "\n" "Hvis du ikke har 'universe' aktivert vil disse pakkene bli foreslått fjernet " -"i neste steg. " +"i neste steg." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Ønsker du å fjerne utdaterte pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Hopp over dette punktet" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Feil ved commit" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -437,29 +435,27 @@ msgstr "" "Et problem oppstod under opprydningen. Vennligst se meldingen under for mer " "informasjon. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Forbereder oppgraderingen" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -467,18 +463,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " -"rapporter dette som en feil. " +"rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -490,23 +486,22 @@ msgstr "" "pakken '%s'.\n" "Dette indikerer en alvorlig feil, vennligst rapportér denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Spør om bekreftelse" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Oppgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -518,24 +513,23 @@ msgid "Fetching is complete" msgstr "Oppdateringen er fullført" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Laster ned fil %li av %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "Rundt %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Laster ned fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Lagrer endringer" @@ -551,9 +545,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -563,62 +556,64 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' ble ikke funnet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "En uopprettelig feil oppsto" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og /" -"var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" +"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og " +"/var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" "Din orginale sources.list ble lagret i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Du må laste ned totalt %s." +msgstr "" +"\n" +"\n" +"Du må laste ned totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -627,45 +622,44 @@ msgstr "" "Oppgraderingen kan ta flere timer og kan ikke avbrytes på noe senere " "tidspunkt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Oppgradér %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Rundt %li dager, %li timer og %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Rundt %li timer og %li minutter gjenstår" @@ -680,12 +674,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -702,7 +695,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -816,7 +808,6 @@ msgstr "Kunne ikke laste ned utgivelsesnotatene" msgid "Please check your internet connection." msgstr "Vennligst kontrollér internettforbindelsen." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke kjøre oppgraderingsverktøyet" @@ -892,28 +883,28 @@ msgstr "" "nettverket eller med tjeneren. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laster ned filen %li av %li med %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Laster ned filen %li av %li med %s/s" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Listen over endringer er ikke tilgjengelig ennå. Prøv senere." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Listen over endringer er ikke tilgjengelig ennå. Prøv senere." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -922,124 +913,119 @@ msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +#, fuzzy msgid "Recommended updates" -msgstr "" +msgstr "Anbefalte oppdateringer" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Installerer oppdateringer" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 Backports" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Gjenoppta oppgradering" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Installerer oppdateringer" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versjon %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Laster ned listen med endringer..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "Sjekk" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Nedlastingsstørrelse: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s oppdatering" msgstr[1] "Du kan installere %s oppdateringer" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Vennligst vent, dette kan ta litt tid." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Oppdateringen er fullført" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Sjekker for tilgjengelige oppdateringer" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny versjon: %s (Størrelse: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Versjon %s: \n" +msgstr "Versjon %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" "Du vil ikke lenger motta flere sikkerhetsmessige eller kritiske " -"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." -"ubuntu.com for mer informasjon om oppgradering." +"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se " +"http://www.ubuntu.com for mer informasjon om oppgradering." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1049,27 +1035,23 @@ msgstr "" "pakkehåndteringsprogrammet \"Synaptic\" eller kjør kommandoen \"sudo apt-get " "install -f\" i en terminal for å løse denne situasjonen." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Ingen" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1267,15 +1249,16 @@ msgstr "Kilde" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistikk" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:22 +#, fuzzy msgid "Third Party" -msgstr "" +msgstr "Tredjepart" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" @@ -1435,254 +1418,215 @@ msgstr "Vindusstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Sett opp programvarekanaler og oppdateringer" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Oppdateringer" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidratt programvare" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "US eksport begrenset programvare" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Oppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offisielt støttet" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Oppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Noe programvare er ikke lenger offisielt støttet" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhetsoppdateringer" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "US eksport begrenset programvare" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Laster ned fil %li av %li ved ukjent hastighet" @@ -1706,8 +1650,7 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Oppgraderer til Ubuntu 6.06 LTS" +#~ "Oppgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1728,25 +1671,26 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Analyserer systemet\n" #~ "\n" -#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer " -#~ "og gir deg ny funksjonalitet." +#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer og " +#~ "gir deg ny funksjonalitet." #~ msgid "Oficially supported" #~ msgstr "Offisielt støttet" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk " -#~ "funksjonen \"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet " -#~ "\"Synaptic\" eller kjør kommandoen \"sudo apt-get dist-upgrade\" i en " -#~ "terminal for å oppgradere systemet fullstendig." +#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk funksjonen " +#~ "\"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller " +#~ "kjør kommandoen \"sudo apt-get dist-upgrade\" i en terminal for å oppgradere " +#~ "systemet fullstendig." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende pakker vil ikke bli oppgradert:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Rundt %li sekunder gjenstår" @@ -1801,9 +1745,10 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "Edit Channel" #~ msgstr "Endre kanal" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "Legg til k_anal" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "Legg til k_anal" +#~ msgstr[1] "Legg til k_analer" #~ msgid "_Custom" #~ msgstr "_Tilpasset" @@ -1821,8 +1766,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Backports for Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Fant ikke noen gyldig oppføring for oppgradering ved lesing av " #~ "arkivinformasjon.\n" @@ -1834,8 +1779,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du " -#~ "gjøre dette nå?" +#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du gjøre " +#~ "dette nå?" #~ msgid "Sections" #~ msgstr "Seksjoner" @@ -1887,13 +1832,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Autentiseringsnøkler\n" #~ "\n" -#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. " -#~ "Nøkler gjør det mulig å kontrollere integriteten til programvare som blir " -#~ "lastet ned." +#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. Nøkler " +#~ "gjør det mulig å kontrollere integriteten til programvare som blir lastet " +#~ "ned." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Legg til en ny nøkkelfil til den sikre nøkkelringen. Vær sikker på at du " #~ "mottok nøkkelen over en sikker kanal og at du stoler på eieren. " @@ -1924,8 +1869,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Maksimum størrelse i MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "Gjenoppret nøklene som kom med distri" #~ msgid "Set _maximum size for the package cache" @@ -1955,13 +1900,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Tilgjengelige oppdateringer\n" #~ "\n" -#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke " -#~ "på «Installer»-knappen." +#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke på " +#~ "«Installer»-knappen." #~ msgid "Cancel downloading the changelog" #~ msgstr "Avbryt nedlasting av endringslogg" @@ -2037,8 +1982,7 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr[1] "Du har valgt alle de %s oppdaterte pakkene, total størrelse %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Du har valgt %s av %s oppdaterte pakker, størrelse %s" #~ msgstr[1] "Du har valgt %s av de %s oppdaterte pakkene, total størrelse %s" @@ -2046,8 +1990,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Oppdateringene blir tilført." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Du kan bare kjøre et pakkehåndteringsprogram samtidig. Lukk det andre " #~ "programmet først." @@ -2063,19 +2007,19 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får " -#~ "ikke sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. " -#~ "Se http://www.ubuntulinux.org for informasjon om oppgradering." +#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får ikke " +#~ "sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. Se " +#~ "http://www.ubuntulinux.org for informasjon om oppgradering." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "En ny versjon med kodenavnet «%s» er tilgjengelig. Se http://www. " #~ "ubuntulinux.org/ for instruksjoner om oppgradering." @@ -2108,9 +2052,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the 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." +#~ "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." \ No newline at end of file diff --git a/po/ne.po b/po/ne.po index c48ae315..ac095915 100644 --- a/po/ne.po +++ b/po/ne.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:43+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" "MIME-Version: 1.0\n" @@ -57,15 +57,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -128,8 +125,11 @@ msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -165,7 +165,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,9 +176,10 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,9 +201,10 @@ msgstr "" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -263,7 +264,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -321,16 +321,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,21 +338,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -362,68 +361,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy msgid "Checking package manager" msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy 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/dist-" "upgrade/ in the bugreport." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -433,24 +432,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 #, fuzzy msgid "Upgrading" msgstr "स्तरवृद्धि समाप्त" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -466,7 +464,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -478,7 +476,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -495,7 +492,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -505,50 +501,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -556,40 +551,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -615,12 +609,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -635,7 +628,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -743,7 +735,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -752,7 +743,9 @@ msgstr "" #, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" #: ../UpdateManager/DistUpgradeFetcher.py:171 #, fuzzy @@ -820,163 +813,154 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "युबन्टुको एउटा नयाँ विमोचन उपलब्ध छ!" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "युबन्टुको एउटा नयाँ विमोचन उपलब्ध छ!" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +msgstr "" +"परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "संस्करण %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, fuzzy msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" msgstr[1] "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "संस्करण %s: \n" +msgstr "संस्करण %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "तपाईंको वितरण समर्थित छैन" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1237,11 +1221,12 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस\n" +"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट " +"गर्नुहोस\n" "\n" -"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि \"deb " -"http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य संरचनाको एउटा " -"विस्तृत विवरण पाउन सक्नुहुन्छ" +"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि " +"\"deb http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य " +"संरचनाको एउटा विस्तृत विवरण पाउन सक्नुहुन्छ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1325,260 +1310,219 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "योगदान गरिएको सफ्टवेयर" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "नन-फ्री (बहुभर्स)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "युएस निषेधित सफ्टवेयर" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "कार्यालय बाट समर्थित" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "कार्यालय बाट समर्थित" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "निषेधित प्रतिलिपि अधिकार" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "युएस निषेधित सफ्टवेयर" + #, fuzzy #~ msgid "Normal updates" #~ msgstr "स्तरवृद्धिहरु स्थापना गर्दै" @@ -1602,7 +1546,8 @@ msgstr "" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +#~ "दिनुहोस" #, fuzzy #~ msgid "Hide details" @@ -1658,11 +1603,11 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति " -#~ "भण्डारण गरिएको छ. बचत गर्नुहोस. \n" +#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप " +#~ "प्रति भण्डारण गरिएको छ. बचत गर्नुहोस. \n" #~ "\n" -#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड " -#~ "गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" +#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची " +#~ "फेरि लोड गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" #, fuzzy #~ msgid "Sections" @@ -1716,16 +1661,18 @@ msgstr "" #~ msgstr "" #~ "प्रमाणीकरण कुञ्जिहरु\n" #~ "\n" -#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले डाउनलोड " -#~ "गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले संभव पार्दछ" +#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले " +#~ "डाउनलोड गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले " +#~ "संभव पार्दछ" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त हुनुहोस कि तपाईंले " -#~ "एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं मालिकलाइ विश्वास गर्नुहुन्छ. " +#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त " +#~ "हुनुहोस कि तपाईंले एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं " +#~ "मालिकलाइ विश्वास गर्नुहुन्छ. " #, fuzzy #~ msgid "Add repository..." @@ -1754,11 +1701,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले प्रयोगकर्ता " -#~ "स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" +#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले " +#~ "प्रयोगकर्ता स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" #~ msgid "Set _maximum size for the package cache" #~ msgstr "प्याकेज क्यासको लागि अधिकतम आकार सेट गर्नुहोस" @@ -1785,13 +1732,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "उपलब्ध अद्यावधिकहरु\n" #~ "\n" -#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना बटन प्रयोग " -#~ "गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" +#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना " +#~ "बटन प्रयोग गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" #~ msgid "Cancel downloading the changelog" #~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस" @@ -1838,11 +1785,11 @@ msgstr "" #~ msgstr "स्तरवृद्धिहरु लागु हुँदैछन" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन सक्नुहुन्छ.कृपया पहिला " -#~ "यो अन्य अनुप्रयोग बन्द गर्नुहोस" +#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन " +#~ "सक्नुहुन्छ.कृपया पहिला यो अन्य अनुप्रयोग बन्द गर्नुहोस" #~ msgid "Updating package list..." #~ msgstr "प्याकेज सुची स्तरवृद्धि गर्दै" @@ -1856,19 +1803,20 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले चलाइरहेको संस्करण ले " -#~ "सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त गर्नेछैन. कृपया स्तरवृद्धि जानकारी को " -#~ "लागि http://www.ubuntulinux.org हेर्नुहोस" +#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले " +#~ "चलाइरहेको संस्करण ले सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त " +#~ "गर्नेछैन. कृपया स्तरवृद्धि जानकारी को लागि http://www.ubuntulinux.org " +#~ "हेर्नुहोस" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को लागि://" -#~ "www.ubuntulinux.org/ हेर्नुहोस." +#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को " +#~ "लागि://www.ubuntulinux.org/ हेर्नुहोस." #~ msgid "Never show this message again" #~ msgstr "यो संदेश फेरि कहिले पनि नदेखाउनुहोस" @@ -1889,8 +1837,8 @@ msgstr "" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया स्थिति " -#~ "ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" +#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया " +#~ "स्थिति ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "सबै प्याकेजहरु स्तरवृद्धि गर्न संभव छैन" @@ -1898,12 +1846,12 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै प्याकेजहरुको स्थापन " -#~ "र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" " -#~ "अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग गर्नुहोस" +#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै " +#~ "प्याकेजहरुको स्थापन र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि " +#~ "साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग " +#~ "गर्नुहोस" #~ msgid "Initializing and getting list of updates..." -#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" +#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" \ No newline at end of file diff --git a/po/nl.po b/po/nl.po index 8d758798..b9ef144a 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-24 01:32+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" "MIME-Version: 1.0\n" @@ -54,38 +54,36 @@ msgstr "Na één maand" msgid "After %s days" msgstr "Na %s dagen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" -msgstr "Up_dates installeren" +msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Hoofdserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server voor %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "dichtsbijzijnde server" #: ../SoftwareProperties/SoftwareProperties.py:345 +#, fuzzy msgid "Custom servers" -msgstr "" +msgstr "Andere servers" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 @@ -95,16 +93,17 @@ msgstr "Software-updates" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 +#, fuzzy msgid "Active" -msgstr "" +msgstr "actief" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(broncode)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Broncode" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -112,7 +111,7 @@ msgstr "Sleutel importeren" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Fout bij het importeren van het geselecteerde bestand." +msgstr "Fout bij het importeren van het geselecteerde bestand" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -125,13 +124,14 @@ msgid "Error removing the key" msgstr "Fout bij het verwijderen van de sleutel" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "De door u geselecteerde sleutel kon niet verwijderd worden. Gelieve dit als " "fout te melden." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -164,13 +164,12 @@ msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "Kan de vereiste meta-pakketten niet upgraden." +msgstr "Kan de vereiste meta-pakketten niet upgraden" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" @@ -184,9 +183,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. " -"Gelieve dit als fout te rapporteren. " +"Gelieve dit als fout te rapporteren." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" @@ -215,7 +213,6 @@ msgstr "" "Het was niet mogelijk om een vereist pakket te installeren. Gelieve dit als " "fout te rapporteren. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" @@ -242,7 +239,7 @@ msgid "Failed to add the CD" msgstr "Ophalen is mislukt" #: ../DistUpgrade/DistUpgradeControler.py:75 -#, python-format +#, fuzzy 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" @@ -250,6 +247,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"De upgrade is gestopt omdat de cd niet toegevoegd kon worden. Meld dit als " +"een bug als dit een goede Ubuntu-cd is.\n" +"\n" +"De foutmelding was:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -257,7 +259,7 @@ msgstr "Tijdelijke opslag inlezen" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Bestanden van het netwerk ophalen voor de upgrade?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -291,7 +293,6 @@ msgstr "" "zal overal '%s' worden vervangen door '%s'.\n" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" @@ -364,16 +365,15 @@ msgstr "" "vrijgemaakt. Leeg uw prullenbak en verwijder de tijdelijke pakketten van " "vorige installaties via 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,11 +386,11 @@ msgstr "" "onbruikbare toestand. Er is een hersteloperatie uitgevoerd (dpkg --configure " "-a)." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Kon de upgrades niet downloaden" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +398,11 @@ msgstr "" "De upgrade wordt nu afgebroken. Controleer uw internetverbinding of het " "installatiemedium en probeer opnieuw. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -415,25 +415,25 @@ msgstr "" "worden door de gemeenschap beheerd ('universe').\n" "\n" "Indien 'universe' niet geactiveerd is zal bij de volgende stap gevraagd " -"worden om deze pakketten te verwijderen. " +"worden om deze pakketten te verwijderen." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Overbodige pakketten verwijderen?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Deze stap overslaan" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Verwijderen" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Fout bij het toepassen" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -441,29 +441,27 @@ msgstr "" "Tijdens het opruimen deed zich een probleem voor. Zie onderstaand bericht " "voor meer informatie. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Upgrade voorbereiden" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -471,18 +469,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. " -"Gelieve dit als fout te rapporteren. " +"Gelieve dit als fout te rapporteren." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -494,23 +492,22 @@ msgstr "" "meer gevonden worden.\n" "Dit is een ernstige fout, die gerapporteerd moet worden." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Vragen om bevestiging" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Bezig met upgraden" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Zoeken naar overbodige software" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -522,24 +519,23 @@ msgid "Fetching is complete" msgstr "De update is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "Ongeveer %li minuten resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Downloaden van bestand %li uit %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Wijzigingen worden doorgevoerd" @@ -555,9 +551,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -567,64 +562,66 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "De opdracht 'diff' is niet gevonden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Er is een ernstige fout ontstaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapporteer dit als fout en voeg de bestanden /var/log/dist-upgrade.log en /" -"var/log/dist-upgrade-apt.log bij in uw foutrapport. De upgrade zal nu " +"Rapporteer dit als fout en voeg de bestanden /var/log/dist-upgrade.log en " +"/var/log/dist-upgrade-apt.log bij in uw foutrapport. De upgrade zal nu " "worden afgebroken.\n" -"Uw oorspronkelijke sources.list is opgeslagen in /etc/apt/sources.list." -"distUpgrade." +"Uw oorspronkelijke sources.list is opgeslagen in " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Er zal %s pakket verwijderd worden." msgstr[1] "Er zullen %s pakketten verwijderd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Er zal %s nieuw pakket geïnstalleerd worden." msgstr[1] "Er zullen %s nieuwe pakketten geïnstalleerd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakket zal een upgrade krijgen" msgstr[1] "%s pakketten zullen een upgrade krijgen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "U moet in totaal %s downloaden." +msgstr "" +"\n" +"\n" +"U moet in totaal %s downloaden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -633,46 +630,45 @@ msgstr "" "Het upgraden kan enkele uren in beslag nemen en kan tussentijds niet worden " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "%s verwijderen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s installeren" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s upgraden" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Ongeveer %li dagen %li uur en %li minuten resterend" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Ongeveer %li uur en %li minuten resterend" @@ -687,12 +683,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -708,7 +703,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -821,7 +815,6 @@ msgstr "Kon de versie-informatie niet downloaden" msgid "Please check your internet connection." msgstr "Controleer uw internetverbinding." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kon het upgrade-programma niet uitvoeren" @@ -896,23 +889,23 @@ msgstr "" "met het netwerk of de server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Downloaden van bestand %li uit %li met %s/s" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "" "Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " "Probeer het later nog eens." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" @@ -921,7 +914,7 @@ msgstr "" "Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " "Probeer het later nog eens." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -930,124 +923,119 @@ msgstr "" "Kon de lijst met wijzigingen niet downloaden. Controleer uw " "internetverbinding." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 veiligheidsupdates" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Aanbevolen updates" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 backports" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Upgrade hervatten" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versie %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Het overzicht van de wijzigingen wordt gedownload..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 +#, fuzzy msgid "_Uncheck All" -msgstr "" +msgstr "Alles deselecteren" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Controleren" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Downloadgrootte: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "U kunt %s update installeren" msgstr[1] "U kunt %s updates installeren" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Een ogenblik geduld, dit kan even duren." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "De update is voltooid" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nieuwe versie: %s (Grootte: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Versie %s: \n" +msgstr "Versie %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 -#, python-format +#: ../UpdateManager/UpdateManager.py:816 +#, fuzzy msgid "(Size: %s)" -msgstr "" +msgstr "(Grootte: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Uw distributie wordt niet langer ondersteund" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" "U zult niet langer veiligheidsupdates of kritieke updates krijgen. Voer een " -"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." -"com voor meer informatie over upgraden." +"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie " +"http://www.ubuntu.com voor meer informatie over upgraden." -#: ../UpdateManager/UpdateManager.py:845 -#, python-format +#: ../UpdateManager/UpdateManager.py:847 +#, fuzzy msgid "New distribution release '%s' is available" -msgstr "" +msgstr "De nieuwe Ubuntu-versie '%s' is beschikbaar" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Software-index is beschadigd" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1057,27 +1045,23 @@ msgstr "" "Gebruik het pakkettenbeheerprogramma \"Synaptic\" of gebruik \"sudo apt-get " "install -f\" in een terminalvenster om eerst dit probleem te verhelpen." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1114,8 +1098,9 @@ msgid "Changes" msgstr "Wijzigingen" #: ../data/glade/UpdateManager.glade.h:8 +#, fuzzy msgid "Changes and description of the update" -msgstr "" +msgstr "Veranderingen en beschrijving van de update" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1347,8 +1332,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Voer de volledige APT-regel in van het kanaal dat u wilt toevoegen\n" +"Voer de volledige APT-regel in van het kanaal dat u wilt " +"toevoegen\n" "\n" "De APT-regel bevat het type, de locatie en de componenten van een kanaal, " "bijvoorbeeld: \"deb http://ftp.debian.org sarge main\"." @@ -1374,8 +1359,9 @@ msgid "Scanning CD-ROM" msgstr "De cd-rom wordt geanalyseerd" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +#, fuzzy msgid "_Add Source" -msgstr "" +msgstr "Bron toevoegen" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1442,252 +1428,214 @@ msgstr "De venstergrootte" msgid "Configure the sources for installable software and updates" msgstr "Software-kanalen en internet-updates configureren" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Door de gemeenschap beheerd (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 +#, fuzzy msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Proprietaire drivers voor apparaten" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Niet-vrij (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cd-rom met Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Door de gemeenschap beheerd (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Door de gemeenschap beheerd (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Door de gemeenschap beheerd (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Niet-vrij (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 +#, fuzzy msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Proprietaire drivers voor apparaten " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Niet-vrij (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:165 +#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Cd-rom met Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officieel ondersteund" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Door de gemeenschap beheerd (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Niet-vrij (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 +#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cd-rom met Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Bepaalde software wordt niet meer officieel ondersteund" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Beperkte auteursrechten" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" veiligheidsupdates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (onstabiel)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibel met DFSG, maar met niet-vrije afhankelijkheden" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" @@ -1711,8 +1659,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Bezig met upgraden naar Ubuntu " -#~ "6.06 LTS" +#~ "Bezig met upgraden naar Ubuntu 6.06 " +#~ "LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1733,8 +1681,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "" #~ "Uw system wordt gecontroleerd\n" #~ "\n" -#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en " -#~ "leveren nieuwe mogelijkheden." +#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " +#~ "nieuwe mogelijkheden." #, fuzzy #~ msgid "Oficially supported" @@ -1742,18 +1690,18 @@ msgstr "Software niet compatibel met DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Enkele updates vereisen dat andere softwarepaketten verwijderd worden. " -#~ "Gebruik de functie \"Pakketten bijwerken\" van het " -#~ "pakkettenbeheerprogramma \"Synaptic\" of gebruik: \"sudo apt-get dist-" -#~ "upgrade\" in een terminalvenster om uw systeem compleet bij te werken met " -#~ "de laatste updates." +#~ "Gebruik de functie \"Pakketten bijwerken\" van het pakkettenbeheerprogramma " +#~ "\"Synaptic\" of gebruik: \"sudo apt-get dist-upgrade\" in een " +#~ "terminalvenster om uw systeem compleet bij te werken met de laatste updates." #~ msgid "The following updates will be skipped:" #~ msgstr "De volgende updates worden overgeslagen:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ongeveer %li seconden resterend" @@ -1807,16 +1755,17 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "Edit Channel" #~ msgstr "Kanaal bewerken" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Kanaal toevoegen" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Kanaal toevoegen" +#~ msgstr[1] "_Kanalen toevoegen" #~ msgid "_Custom" #~ msgstr "_Aangepast" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Ubuntu 6.06 LTS\r\n" +#~ "Ubuntu 6.06 LTS \n" #~ "Ubuntu 6.06 updates" #~ msgid "Ubuntu 6.06 LTS Security Updates" @@ -1826,4 +1775,4 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "Ubuntu 6.06 LTS updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backports" +#~ msgstr "Ubuntu 6.06 LTS backports" \ No newline at end of file diff --git a/po/nn.po b/po/nn.po new file mode 100644 index 00000000..cbe14d0e --- /dev/null +++ b/po/nn.po @@ -0,0 +1,1451 @@ +# Norwegian Nynorsk translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-06-19 15:52+0000\n" +"Last-Translator: Willy André Bergstrøm \n" +"Language-Team: Norwegian Nynorsk \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Kvar dag" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Annankvar dag" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Kvar veke" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Annankvar veke" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Kvar %s dag" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Etter ei veke" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Etter to veker" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Etter ein månad" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Etter %s dagar" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +#, fuzzy +msgid "Import key" +msgstr "Importer nykel" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +#, fuzzy +msgid "Error importing selected file" +msgstr "Feil under importering av vald fil" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" +"Entan er ikkje den valde fila ein GPG-nykjel, eller så er den kanskje skada." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Kunne ikkje fjerne nykjelen" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Nykjelen du valde kan ikkje fjernast. Ver venleg å rapportere denne feilen." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Oppgi eit namn for plata" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "Sett inn ei plate i stasjonen:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Øydelagde pakkar" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" +"Systemet ditt inneheld øydelagde pakkar som ikkje kunne reparerast med denne " +"programvaren. Reparer dei med synaptic eller apt-get før du held fram." + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "Ein naudsynt pakke vil måtte fjernast" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "Kunne ikkje forberede oppgraderinga" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "Kunne ikkje autentisere somme pakkar" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" +"Somme pakkar kunne ikkje bli autentisert. Dette kan vere eit forbigåande " +"nettverksproblem, så du bør prøve att seinare. Sjå under lista over pakkar " +"som ikkje kunne autentiserast." + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "Kan ikkje installere '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Ein naudsynt pakke kunne ikkje installerast. Ver venleg og rapporter denne " +"feilen. " + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "Kan ikkje gjette på meta-pakke" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "Les mellomlager" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "Fann ikkje noko gyldig spegl" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" +"Ingen spegl for oppgraderinga vart funne unnder gjennomsøking av " +"arkivinformasjonen din. Dette kan skje om du køyrer eit internt spegl eller " +"om speglinformasjonen er utdatert.\n" +"\n" +"Vil du skrive om \"sources.list\"-fila di likevel? Om du veljer \"Ja\" her " +"vil det oppdatere alle forekomstar av '%s' til '%s'.\n" +"Om du veljer \"Nei\" vil oppgraderinga verte avbroten." + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "Vil du opprette standardkjelder?" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" +"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av " +"\"sources.list\"-fila di.\n" +"\n" +"Vil du legge till standard oppføring for \"%s\"? Om du vel \"Nei\" vil " +"oppdateringa verte avbroten." + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "Ugyldig arkivinformasjon" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" +"Oppgraderinga av arkivinformasjonen resulterte i ei ugyldig fil. Rapporter " +"dette som ein feil." + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "Tredjepartskjelder er deaktivert" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "Feil under oppdatering" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" +"Eit problem oppsto under oppdateringa. Dette er vanlegvis ei form for " +"nettverksproblem. Sjekk nettverkskoblinga di og prøv igjen." + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "Ikkje nok ledig diskplass" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/no.po b/po/no.po index 7a1956a9..fef7836f 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" +"POT-Creation-Date: 2006-10-06 23:04+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,52 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy msgid "Checking package manager" msgstr "En annen pakkehåndterer kjører" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Laster ned endringer" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -418,15 +418,15 @@ msgid "" msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -436,21 +436,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 #, fuzzy msgid "Asking for confirmation" msgstr "Undersøker systemkonfigurasjon" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 #, fuzzy msgid "Upgrading" msgstr "Oppgradering fullført" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" @@ -470,7 +470,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -509,19 +509,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -531,28 +531,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -560,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, fuzzy, python-format msgid "Remove %s" msgstr "Detaljer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, fuzzy, python-format msgid "Install %s" msgstr "_Installer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Oppgradering fullført" @@ -623,8 +623,8 @@ msgstr "" #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -826,19 +826,19 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -846,120 +846,120 @@ msgid "" msgstr "Feil under nedlasting av endringer. Sjekk tilkoblingen til internett." #. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Security Updates" #. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" #. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "Installerer oppdateringer..." #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versjon %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, fuzzy, python-format msgid "Download size: %s" msgstr "Laster ned endringer" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:633 #, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installerer oppdateringer..." msgstr[1] "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Installerer oppdateringer..." -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:830 #, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s: \n" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:843 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1373,8 +1373,9 @@ msgstr "Ubuntu 5.04 Updates" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Vedlikeholdt av miljøet (Universe)" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1407,9 +1408,8 @@ msgstr "Non-free (Multiverse)" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "US eksport begrenset programvare" +msgid "Software restricted by copyright or legal issues" +msgstr "" #. Description #: ../data/channels/Ubuntu.info.in:76 @@ -1584,6 +1584,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "US eksport begrenset programvare" + #, fuzzy #~ msgid "Normal updates" #~ msgstr "Installerer oppdateringer..." diff --git a/po/oc.po b/po/oc.po index ad9915c3..c290bdd4 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-29 08:11+0000\n" -"Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-09-30 00:43+0000\n" +"Last-Translator: Yannig MARCHEGAY (Kokoyaya) " +"\n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,45 +41,42 @@ msgstr "Cada %s jorns" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "Après una setmana" +msgstr "Una setmana aprèp" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "Après dos setmanas" +msgstr "Doas setmanas aprèp" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "Après un mes" +msgstr "Un mes aprèp" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" -msgstr "Après %s jorns" +msgstr "%s jorns aprèp" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" -msgstr "" +msgstr "%s mesas a jorn" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Servidor per %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" @@ -87,7 +84,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Servidors personalizats" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 @@ -97,7 +94,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Actiu" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" @@ -126,12 +123,13 @@ msgid "Error removing the key" msgstr "Error al moment de suprimir la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -167,7 +165,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" @@ -180,7 +177,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -195,7 +191,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "Impossible installar '%s'" +msgstr "Impossible d'installar '%s'" #: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" @@ -203,7 +199,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -219,7 +214,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" -msgstr "" +msgstr "Impossible d'apondre lo CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -263,7 +258,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -320,16 +314,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Impossible installar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Impossible descargar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -361,65 +354,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "Suprimir los paquetatges obsolets ?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Suprimir" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -429,27 +420,26 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "" +msgstr "Demanda de confirmacion" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Mesa a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "Recèrca de logicials obsolets" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "Inserissètz lo disc '%s' dins lo legidor '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -461,10 +451,10 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" -msgstr "" +msgstr "Environ %s restantas" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format @@ -473,15 +463,14 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "" +msgstr "Aplicacion dels cambis" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "Impossible d'installar '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -489,7 +478,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -499,90 +487,91 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "Impossible de trobar la comanda 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Debètz telecargar un total de %s." +msgstr "" +"\n" +"\n" +"Debètz telecargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Suprimir %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Metre a jorn %s" @@ -590,7 +579,7 @@ msgstr "Metre a jorn %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li jorns %li oras %li minutas" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format @@ -605,20 +594,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li segondas" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "" +msgstr "Debètz tornar aviar l'ordenador" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" @@ -628,7 +616,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -656,7 +643,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "" +msgstr "Netejatge" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" @@ -664,7 +651,7 @@ msgstr "Detalhs" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "Diferéncia entre los fichièrs" #: ../DistUpgrade/DistUpgrade.glade.h:11 #, fuzzy @@ -677,7 +664,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "" +msgstr "Preparacion de la mesa a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" @@ -697,7 +684,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "_Conservar" #: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" @@ -713,7 +700,7 @@ msgstr "_Tornar aviar ara" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "" +msgstr "_Contunhar la mesa a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -721,7 +708,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "Impossible de trobar las informacions de version" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " @@ -729,16 +716,15 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "Impossible de telecargar las informacions de version" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "Verificatz vòstra connexion internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "Impossible aviar l'esplech de mesa a jorn" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" @@ -747,7 +733,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "" +msgstr "Telecarga del esplech de mesa a jorn" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." @@ -755,7 +741,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "Signatura del esplech de mesa a jorn" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" @@ -781,7 +767,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "La verificacion a pas capitat" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" @@ -809,161 +795,151 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" +msgstr "La tièra de las modificacioons es pas disponibla" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 'Breezy Badger'" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "Mesas a jorn per internet" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Mesas a jorn per internet" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Version %s : \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Verificar" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Talha de la descarga : %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podètz installar %s mesa a jorn" msgstr[1] "Podètz installar %s mesas a jorn" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "" +msgstr "La mesa a jorn es terminada" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Mesas a jorn per internet" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Version %s : \n" +msgstr "Version %s :" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Talha : %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f Mo" #: ../data/glade/UpdateManager.glade.h:1 msgid "" @@ -1027,11 +1003,11 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "Mostrar la progression de cada fichièr" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "" +msgstr "Mesa a jorn dels logicials" #: ../data/glade/UpdateManager.glade.h:18 msgid "" @@ -1041,7 +1017,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "_Metre a jorn" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" @@ -1049,7 +1025,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_Verificar" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" @@ -1061,7 +1037,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" -msgstr "" +msgstr "_Installar las mesas a jorn" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy @@ -1070,7 +1046,7 @@ msgstr "Cambis" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "mesas a jorn" #: ../data/glade/SoftwareProperties.glade.h:2 #, fuzzy @@ -1079,7 +1055,7 @@ msgstr "Mesas a jorn per internet" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CD-ROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" @@ -1125,7 +1101,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" -msgstr "" +msgstr "Mesas a jorn per internet" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" @@ -1152,7 +1128,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Estadisticas" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" @@ -1194,7 +1170,7 @@ msgstr "Comentari :" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" -msgstr "" +msgstr "Components :" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" @@ -1241,15 +1217,15 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" -msgstr "" +msgstr "_Tornar cargar" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "Mostrar e installar las mesas a jorn disponiblas" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "" +msgstr "Gestionari de mesas a jorn" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1274,7 +1250,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "Mostrar los detalhs d'una mesa a jorn" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" @@ -1294,244 +1270,200 @@ msgstr "La talha de la fenèstra" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Pas liure (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CD-ROM que conten Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Pas liure (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pas liure (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "" +msgstr "CD-ROM que conten Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "CD-ROM que conten Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pas liure (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mesas a jorn de securitat per Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (en tèst)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1557,4 +1489,4 @@ msgstr "" #~ msgstr "_Personalisar" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/pa.po b/po/pa.po index 0803c209..92afc9b8 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-04-28 23:31+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" "MIME-Version: 1.0\n" @@ -56,15 +56,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,7 +160,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -175,7 +172,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -198,7 +194,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -258,7 +253,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -315,16 +309,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +326,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,65 +349,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,24 +415,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 #, fuzzy msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,7 +447,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -469,7 +459,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -485,7 +474,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -495,50 +483,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -546,39 +533,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -604,12 +590,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -624,7 +609,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -734,7 +718,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -810,158 +793,147 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." msgstr[1] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1299,229 +1271,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1574,4 +1501,4 @@ msgstr "" #, fuzzy #~ msgid "Sections:" -#~ msgstr "ਵੇਰਵਾ" +#~ msgstr "ਵੇਰਵਾ" \ No newline at end of file diff --git a/po/pl.po b/po/pl.po index 26856cee..bdff1fad 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager cvs\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:59+0000\n" -"Last-Translator: Tomasz Dominikowski \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-09-02 19:44+0000\n" +"Last-Translator: White Eagle \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,59 +55,53 @@ msgstr "Po miesiącu" msgid "After %s days" msgstr "Po %s dniach" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Instalowanie pakietów" +msgstr "%s aktualizacji" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Serwer główny" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Serwer dla kraju %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Najbliższy serwer" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Inne serwery" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Aktualizacje oprogramowania" +msgstr "Kanał oprogramowania" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Aktywna" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Źródłowy" +msgstr "(kod źródłowy)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Źródłowy" +msgstr "Kod źródłowy" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -115,7 +109,7 @@ msgstr "Zaimportuj klucz" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Błąd podczas importowania wybranego pliku" +msgstr "Błąd podczas importu wybranego pliku" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -126,17 +120,18 @@ msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Błąd podczas przeszukiwania płyty CD\n" +"Wystąpił błąd podczas skanowania płyty CD\n" "\n" "%s" @@ -169,23 +164,22 @@ msgstr "Nie można zaktualizować wymaganych meta-pakietów" msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " -"zgłosić to jako błąd. " +"Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji.\n" +"\n" +"Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " +"pliki z folderu /var/log/dist-upgrade/ ." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" @@ -209,15 +203,14 @@ msgstr "Nie można zainstalować \"%s\"" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +msgstr "" +"Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -225,14 +218,14 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop lub " -"edubuntu-desktop. Nie jest możliwe określenie używanej wersji Ubuntu.\n" -" Przed kontynuowaniem proszę zainstalować jeden z powyższych pakietów." +"Twój system nie zawiera pakietu ubuntu-desktop, kubuntu-desktop lub edubuntu-" +"desktop, więc nie można określić, która wersja Ubuntu jest uruchomiona.\n" +" Zainstaluj najpierw jeden z wymienionych pakietów używając programu " +"synaptic lub apt-get." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Pobranie nie powiodło się" +msgstr "Nie można dodać płyty CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -243,6 +236,12 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Wystąpił błąd podczas dodawania płyty CD, aktualizacja systemu zostanie " +"przerwana. Prosimy o wysłanie raport błędu jeśli jest to oficjalna płyta " +"Ubuntu.\n" +"\n" +"Treść błędu jest następująca:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -250,7 +249,7 @@ msgstr "Odczytywanie bufora podręcznego" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Pobrać dane z sieci dla aktualizacji?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -259,6 +258,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Aktualizacja może użyć sieci aby sprawdzić obecność najnowszych aktualizacji " +"i pobrać pakiety któe nie znajdują się na aktualnej płycie CD.\n" +"Jeśli posiadasz szybkie lub tanie łącze, powinieneś odpowiedzieć tutaj " +"'Tak'. W innym przypadku wybierz 'Nie'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -279,11 +282,10 @@ msgstr "" "lustrzanego dla aktualizacji. To może się zdarzyć, jeśli używasz wewnętrzny " "serwer lustrzany lub informacje o serwerze są nieaktualne.\n" "\n" -"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz \"Tak" -"\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" +"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz " +"\"Tak\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" @@ -296,8 +298,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla \"%s" -"\".\n" +"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla " +"\"%s\".\n" "\n" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." @@ -319,15 +321,14 @@ msgid "Third party sources disabled" msgstr "Źródła stron niezależnych zostały wyłączone" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"Niektóre źródła stron niezależnych zostały wyłączone. Można je z powrotem " -"włączyć po aktualizacji używając narzędzia \"Właściwości oprogramowania\" " -"lub za pomocą Synaptic." +"Niektóre kanały osób trzecich w pliku sources.list zostały wyłączone. Możesz " +"ponownie je włączyć po aktualizacji używając narzędzia \"software-" +"properties\" lub programu Synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -352,21 +353,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na %" -"s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji używając " -"\"sudo apt-get clean\"." +"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na " +"%s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji " +"używając \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem." -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -374,15 +373,17 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Aktualizacja została przerwana. System może znajdować się w stanie " -"nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" -"configure -a)." +"Aktualizacja została przerwana. Twój system może być teraz w stanie nie " +"nadającym się do użytku. Uruchomiono odzyskiwanie (dpkg --configure -a).\n" +"\n" +"Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " +"pliki z folderu /var/log/dist-upgrade/ ." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,12 +391,11 @@ msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz " "dysk instalacyjny i spróbować ponownie. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Wsparcie dla niektórych aplikacji zostało zakończone" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -403,29 +403,24 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Te zainstalowane pakiety nie są już oficjalnie wspierane, są teraz " -"obsługiwane przez społeczność (\"universe\").\n" -"\n" -"Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " -"zasugerowane ich usunięcie. " -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Usunąć niepotrzebne pakiety?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Pomiń ten krok" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Usuń" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,48 +428,42 @@ msgstr "" "Wystąpił problem podczas oczyszczania. Więcej informacji znajduje się w " "poniższych wiadomościach. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Przygotowywanie aktualizacji" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " -"zgłosić to jako błąd. " -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -482,56 +471,54 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Po aktualizacji informacji o pakietach, podstawowy pakiet \"%s\" nie mógł " -"być odnaleziony.\n" -"To wskazuje na poważny problem, proszę zgłosić ten błąd." +"Po aktualizacji informacji o pakietach niezbędny pakiet \"%s\" nie może " +"zostać odnaleziony.\n" +"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-" +"manager\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Pytanie o potwierdzenie" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Aktualizacja w toku" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Proszę włożyć \"%s\" do napędu \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Aktualizacja została ukończona." +msgstr "Pobieranie zakończone" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Pobieranie pliku %li z %li z prędkością %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Około %li minut pozostało" +msgstr "Pozostało około %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Pobieranie pliku %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Zatwierdzanie zmian" @@ -546,146 +533,147 @@ 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 bugreport." msgstr "" +"Aktualizacja zostaje przerwana. Prosimy o wysłanie raportu o błędzie pakietu " +"'update-manager' dołączając pliki w /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Zastąpić plik konfiguracyjny\n" +"Zastąpić własny plik konfiguracji\n" "\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Polecenie \"diff\" nie zostało odnalezione" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Wystąpił błąd krytyczny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log oraz " -"~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" -"Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." -"distUpgrade." +"Prosimy o wysłanie raportu o tym błędzie i dołączeniu plików /var/log/dist-" +"upgrade/main.log i /var/log/dist-upgrade/apt.log w swoim raporcie. " +"Aktualizacja zostaje przerwana.\n" +"Pierwotny plik sources.list został zapisany w " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s pakiet zostanie usunięty." -msgstr[1] "%s pakiety zostaną usunięte." -msgstr[2] "%s pakietów zostanie usuniętych." +msgstr[0] "%d pakiet zostanie usunięty." +msgstr[1] "%d pakiety zostaną usunięte." +msgstr[2] "%d pakietów zostanie usuniętych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s nowy pakiet zostanie zainstalowany." -msgstr[1] "%s nowe pakiety zostaną zainstalowane." -msgstr[2] "%s nowy pakietów zostanie zainstalowane." +msgstr[0] "%d nowy pakiet zostanie zainstalowany." +msgstr[1] "%d nowe pakiety zostaną zainstalowane." +msgstr[2] "%d nowych pakietów zostanie zainstalowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s pakiet zostanie zaktualizowany." -msgstr[1] "%s pakiety zostaną zaktualizowane." -msgstr[2] "%s pakietów zostanie zaktualizowanych." +msgstr[0] "%d pakiet zostanie zaktualizowany." +msgstr[1] "%d pakiety zostaną zaktualizowane." +msgstr[2] "%d pakietów zostanie zaktualizowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Konieczne pobranie ogółem %s." +msgstr "" +"\n" +"\n" +"Musisz pobrać w sumie %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." +"Pobieranie i instalacja aktualizacji może potrwać kilka godzin i nie może " +"zostać przerwana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "Brak dostępnych aktualizacji. Aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Usuń %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instaluj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Aktualizuj %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Około %li dni %li godzin %li minut pozostało" +msgstr "%li dni %li godzin %li minut" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Około %li godzin %li minut pozostało" +msgstr "%li godzin %li minut" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minut" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li sekund" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -702,7 +690,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -731,7 +718,7 @@ msgstr "Rozpocząć aktualizację?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Aktualizacja Ubuntu do wersji 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -746,7 +733,6 @@ msgid "Difference between the files" msgstr "Różnice pomiędzy plikami" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Pobieranie i instalowanie aktualizacji" @@ -767,9 +753,8 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Wznów aktualizację" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -796,9 +781,8 @@ msgid "_Resume Upgrade" msgstr "_Wznów aktualizację" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Wznów aktualizację" +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -816,7 +800,6 @@ msgstr "Pobranie informacji o wydaniu było niemożliwe" msgid "Please check your internet connection." msgstr "Proszę sprawdzić swoje połączenie internetowe." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nie można było uruchomić narzędzia aktualizacji" @@ -850,7 +833,8 @@ msgstr "Pobranie nie powiodło się" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " +msgstr "" +"Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -869,13 +853,10 @@ msgid "Verfication failed" msgstr "Weryfikacja nie powiodła się" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy lub " -"z serwerem. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -890,94 +871,78 @@ msgstr "" "lub z serwerem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Pobieranie pliku %li z %li z prędkością %s/s" +msgstr "" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Pobieranie pliku %li z %li z prędkością %s/s" +msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." +msgstr "Lista zmian nie jest dostępna." -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." +msgstr "" -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Nie udało się pobrać informacji o zmianach. Proszę sprawdzić połączenie z " -"Internetem." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" +msgstr "Ważne aktualizacje bezpieczeństwa" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Aktualizacje polecane" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Instalowanie pakietów" +msgstr "Aktualizacje proponowane" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backporty" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Wznów aktualizację" +msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Instalowanie pakietów" +msgstr "Inne aktualizacje" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Wersja %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "Pobieranie informacji o zmianach..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "Odznacz wszystkie" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "Sp_rawdź" +msgstr "Zaznacz wszystkie" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Rozmiar do pobrania: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -985,40 +950,38 @@ msgstr[0] "Ilość dostępnych aktualizacji: %s" msgstr[1] "Ilość dostępnych aktualizacji: %s" msgstr[2] "Ilość dostępnych aktualizacji: %s" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Proszę czekać, to może chwilę potrwać." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Aktualizacja została ukończona." -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Sprawdź dostępne aktualizacje" +msgstr "Sprawdzanie dostępności aktualizacji" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nowa wersja: %s (Rozmiar: %s)" +msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Wersja %s: \n" +msgstr "Wersja %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Rozmiar: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Twoja dystrybucja nie jest już wspierana" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1028,17 +991,16 @@ msgstr "" "krytycznych aktualizacji. Zaktualizuj do nowszej wersji Ubuntu Linux. " "Odwiedź http://www.ubuntu.com po więcej informacji." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Nowe wydanie dystrybucji \"%s\" jest dostępne" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1048,58 +1010,44 @@ msgstr "" "Proszę użyć \"Synaptic Menedżer Pakietów\" lub wydać polecenie \"sudo apt-" "get install -f\" w terminalu, aby naprawić ten problem." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Brak" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" -"\n" -"System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie " -"można to zmienić w \"System\" -> \"Administracja\" -> \"Software Properties" -"\"." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Utrzymuj system w pełni zaktualizowany" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Błąd podczas przeszukiwania płyty CD\n" -"\n" -"%s" +"Nie wszystkie aktualizacje mogą zostać zainstalowane" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Rozpocząć aktualizację?" +msgstr "Uruchamianie menedżera aktualizacji" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1107,7 +1055,7 @@ msgstr "Zmiany" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Zmiany i opis aktualizacji" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1132,10 +1080,15 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Uruchom aktualizację dystrybucji, aby zainstalować jak najwięcej " +"aktualizacji. \n" +"\n" +"Może to być spowodowane niekompletną aktualizacją, nieoficjalnymi pakietami " +"oprogramowania lub używaniem wersji rozwojowej." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "Pokaż postęp pobierania poszczególnych plików" +msgstr "Wyświetl postęp pobierania poszczególnych plików" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" @@ -1162,9 +1115,8 @@ msgid "_Check" msgstr "Sp_rawdź" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Wznów aktualizację" +msgstr "Aktualizacja _dystrybucji" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1175,31 +1127,28 @@ msgid "_Install Updates" msgstr "_Instaluj aktualizacje" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Zmiany" +msgstr "zmiany" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "aktualizacje" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Aktualizacje internetowe" +msgstr "Aktualizacje automatyczne" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Aktualizacje internetowe" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Aktualizacje internetowe" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1211,11 +1160,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Aby polepszyć doświadczenia użytkowników z Ubuntu proszę wziąć udział w " +"konkursie popularności. Jeśli zostanie na to wyrażona zgoda, lista " +"zainstalowanego oprogramowania i częstotliwość jego użytkowania będzie co " +"tydzień anonimowo wysyłana do projektu Ubuntu.\n" +"\n" +"Wyniki zostaną użyte do polepszenia obsługi popularnych aplikacji i " +"dorankingu aplikacji w wynikach wyszukiwania." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Dodaj płytę _CD" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1226,9 +1181,8 @@ msgid "D_elete downloaded software files:" msgstr "_Usuń pobrane pliki oprogramowania:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Pobieranie zostało zakończone." +msgstr "Pobieranie z:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1256,35 +1210,32 @@ msgstr "Przywróć domyślne klucze dystrybucji" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Oprogramowanie" +msgstr "Źródła oprogramowania" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Źródłowy" +msgstr "Kod źródłowy" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statystyki" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Wysyłanie informacji statystycznych" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Kanały osób trzecich" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Sprawdzaj dostępność aktualizacji automatycznie:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Pobieraj aktualizacje w tle, ale ich nie instaluj" +msgstr "_Pobieraj aktualizacje automatycznie, ale ich nie instaluj" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1295,7 +1246,6 @@ msgid "_Install security updates without confirmation" msgstr "_Instaluj aktualizacje bezpieczeństwa bez potwierdzania" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1304,12 +1254,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Informacje o kanałach są nieaktualne\n" +"Informacje o dostępnym oprogramowaniu są nieaktualne\n" "\n" -"Musisz ponownie wczytać informacje o kanałach aby zainstalować " -"oprogramowanie i aktualizacje z nowododanych lub zmienionych kanałów. \n" +"Aby zainstalować oprogramowanie i aktualizacje z nowych lub zmienionych " +"źródeł należy ponownie wczytać informacje o oprogramowaniu.\n" "\n" -"Aby kontynuować potrzebne jest działające połączenie internetowe." +"Aby kontynuować konieczne jest połączenie internetowe." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1332,7 +1282,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1340,10 +1289,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" +"Podaj pełny wiersz APT repozytorium, które chcesz dodać jako " +"źródło\n" "\n" -"Wiersz APT zawiera typ, lokalizację i zawartość kanału. Dla przykładu " -"\"deb http://ftp.debian.org sarge main\"." +"Wiersz APT zawiera typ, lokalizację i komponenty repozytorium, przykładowo " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1358,18 +1308,16 @@ msgstr "" "Źródłowe" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Źródłowy" +msgstr "Modyfikuj źródło" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "Przeszukiwanie CD-ROMu" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Źródłowy" +msgstr "Dod_aj źródło" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1377,7 +1325,7 @@ msgstr "_Wczytaj ponownie" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "Pokaż i zainstaluj dostępne aktualizacje" +msgstr "Wyświetl i zainstaluj dostępne aktualizacje" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" @@ -1396,15 +1344,14 @@ msgid "Check for new distribution releases" msgstr "Sprawdzaj nowe wydania dystrybucji" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone to " -"koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na ukrycie " -"pokazywanego w tym przypadku.powiadamiania." +"Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone, " +"należy wczytywać listę kanałów ręcznie. Ta opcja pozwala na ukrycie " +"przypominania o tym fakcie." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1412,313 +1359,456 @@ msgstr "Przypomnij o wczytaniu listy kanałów" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "Pokaż szczegóły poszczególnych aktualizacji" +msgstr "Wyświetl szczegóły poszczególnych aktualizacji" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" msgstr "Zapamiętuje rozmiar okna Menedżera aktualizacji" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych aktualizacji" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" msgstr "Rozmiar okna" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Sprawdź kanały oprogramowania w poszukiwaniu nowych aktualizacji" +msgstr "Konfiguruj źródła pakietów oprogramowania i aktualizacji" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Aktualizacje dla Ubuntu 5.10" +msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Utrzymywane przez społeczność (Universe)" +msgstr "Pod opieką społeczeństwa" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Własnościowe sterowniki dla urządzeń" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Inne oprogramowanie (Contributed)" +msgstr "Ograniczone oprogramowanie" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CD-ROM z Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Utrzymywane przez społeczność (Universe)" +msgstr "Obsługiwane przez społeczność (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Utrzymywane przez społeczność (Universe)" +msgstr "Oprogramowanie Open Source pod opieką społeczeństwa" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Nie-wolnodostępne (Multiverse)" +msgstr "Sterowniki nie-wolnodostępne" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Własnościowe sterowniki dla urządzeń " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Nie-wolnodostępne (Multiverse)" +msgstr "Oprogramowanie nie-wolnodostępne (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Oprogramowanie objęte restrykcjami eksportowymi USA" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "CD-ROM z Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Aktualizacje backportowane" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 5.04" +msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 5.04" +msgstr "CD-ROM z Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Wspierane oficjalnie" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" +msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Aktualizacje dla Ubuntu 5.10" +msgstr "Aktualizacje dla Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" +msgstr "Aktualizacje dla Ubuntu 5.04 (backporty)" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu·4.10·\"Warty·Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Utrzymywane przez społeczność (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "CD-ROM z Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Niektóre programy nie są już oficjalnie wspierane" +msgstr "Już nieobsługiwane" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "O ograniczonych prawach kopiowania" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Aktualizacje dla Ubuntu 5.10" +msgstr "Aktualizacje dla Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" +msgstr "Aktualizacje dla Ubuntu 4.10 (backporty)" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Debiana 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (wersja testowa)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (wersja unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." -#~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" +#, python-format +#~ msgid "" +#~ "Error scaning the CD\n" +#~ "\n" +#~ "%s" +#~ msgstr "" +#~ "Błąd podczas przeszukiwania płyty CD\n" +#~ "\n" +#~ "%s" -#, fuzzy -#~ msgid "Normal updates" -#~ msgstr "Instalowanie pakietów" +#~ msgid "" +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " +#~ msgstr "" +#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " +#~ "zgłosić to jako błąd. " -#~ msgid "Cancel _Download" -#~ msgstr "_Przerwij pobieranie" +#~ msgid "" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." +#~ msgstr "" +#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop lub " +#~ "edubuntu-desktop. Nie jest możliwe określenie używanej wersji Ubuntu.\n" +#~ " Przed kontynuowaniem proszę zainstalować jeden z powyższych pakietów." + +#~ msgid "" +#~ "Some third party entries in your souces.list were disabled. You can re-" +#~ "enable them after the upgrade with the 'software-properties' tool or with " +#~ "synaptic." +#~ msgstr "" +#~ "Niektóre źródła stron niezależnych zostały wyłączone. Można je z powrotem " +#~ "włączyć po aktualizacji używając narzędzia \"Właściwości oprogramowania\" " +#~ "lub za pomocą Synaptic." + +#~ msgid "" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "" +#~ "Aktualizacja została przerwana. System może znajdować się w stanie " +#~ "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" +#~ "configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Niektóre programy nie są już oficjalnie wspierane" +#~ msgid "" +#~ "These installed packages are no longer officially supported, and are now " +#~ "only community-supported ('universe').\n" +#~ "\n" +#~ "If you don't have 'universe' enabled these packages will be suggested for " +#~ "removal in the next step. " +#~ msgstr "" +#~ "Te zainstalowane pakiety nie są już oficjalnie wspierane, są teraz " +#~ "obsługiwane przez społeczność (\"universe\").\n" +#~ "\n" +#~ "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " +#~ "zasugerowane ich usunięcie. " + +#, python-format +#~ msgid "" +#~ "After your package information was updated the essential package '%s' can " +#~ "not be found anymore.\n" +#~ "This indicates a serious error, please report this as a bug." +#~ msgstr "" +#~ "Po aktualizacji informacji o pakietach, podstawowy pakiet \"%s\" nie mógł " +#~ "być odnaleziony.\n" +#~ "To wskazuje na poważny problem, proszę zgłosić ten błąd." + +#, python-format +#~ msgid "About %li days %li hours %li minutes remaining" +#~ msgstr "Około %li dni %li godzin %li minut pozostało" + +#, python-format +#~ msgid "About %li hours %li minutes remaining" +#~ msgstr "Około %li godzin %li minut pozostało" + +#, python-format +#~ msgid "About %li minutes remaining" +#~ msgstr "Około %li minut pozostało" + +#, python-format +#~ msgid "About %li seconds remaining" +#~ msgstr "Około %li sekund pozostało" + +#~ msgid "Download is complete" +#~ msgstr "Pobieranie zostało zakończone." + +#, python-format +#~ msgid "Downloading file %li of %li at %s/s" +#~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" + +#, python-format +#~ msgid "Downloading file %li of %li" +#~ msgstr "Pobieranie pliku %li z %li" + +#~ msgid "The upgrade aborts now. Please report this bug." +#~ msgstr "Aktualizacja została przerwana. Proszę zgłosić ten błąd." + +#, python-format +#~ msgid "" +#~ "Replace configuration file\n" +#~ "'%s'?" +#~ msgstr "" +#~ "Zastąpić plik konfiguracyjny\n" +#~ "\"%s\"?" + +#~ msgid "" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +#~ msgstr "" +#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log oraz " +#~ "~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" +#~ "Pierwotny plik sources.list został zapisany w " +#~ "/etc/apt/sources.list.distUpgrade." + +#, python-format +#~ msgid "%s package is going to be removed." +#~ msgid_plural "%s packages are going to be removed." +#~ msgstr[0] "%s pakiet zostanie usunięty." +#~ msgstr[1] "%s pakiety zostaną usunięte." +#~ msgstr[2] "%s pakietów zostanie usuniętych." + +#, python-format +#~ msgid "%s new package is going to be installed." +#~ msgid_plural "%s new packages are going to be installed." +#~ msgstr[0] "%s nowy pakiet zostanie zainstalowany." +#~ msgstr[1] "%s nowe pakiety zostaną zainstalowane." +#~ msgstr[2] "%s nowy pakietów zostanie zainstalowane." + +#, python-format +#~ msgid "%s package is going to be upgraded." +#~ msgid_plural "%s packages are going to be upgraded." +#~ msgstr[0] "%s pakiet zostanie zaktualizowany." +#~ msgstr[1] "%s pakiety zostaną zaktualizowane." +#~ msgstr[2] "%s pakietów zostanie zaktualizowanych." + +#, python-format +#~ msgid "You have to download a total of %s." +#~ msgstr "Konieczne pobranie ogółem %s." + +#~ msgid "" +#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ msgstr "" +#~ "Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." + #~ msgid "Could not find any upgrades" #~ msgstr "Nie odnaleziono żadnych aktualizacji" #~ msgid "Your system has already been upgraded." #~ msgstr "System został już zaktualizowany." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Aktualizacja do Ubuntu 6.06 LTS" +#~ "Aktualizacja do Ubuntu 6.10" + +#~ msgid "Downloading and installing the upgrades" +#~ msgstr "Pobieranie i instalowanie aktualizacji" + +#~ msgid "Upgrading Ubuntu" +#~ msgstr "Aktualizacja Ubuntu" + +#~ msgid "" +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " +#~ msgstr "" +#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy lub " +#~ "z serwerem. " + +#, python-format +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" + +#, python-format +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" + +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "Lista zmian nie jest jeszcze dostępna. Proszę spróbować później." + +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "" +#~ "Nie udało się pobrać informacji o zmianach. Proszę sprawdzić połączenie z " +#~ "Internetem." -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" +#~ msgstr "Ważne aktualizacje bezpieczeństwa dla Ubuntu" + +#~ msgid "Recommended updates of Ubuntu" +#~ msgstr "Aktualizacje polecane dla Ubuntu" + +#~ msgid "Proposed updates for Ubuntu" +#~ msgstr "Aktualizacje proponowane dla Ubuntu" + +#~ msgid "Backports of Ubuntu" +#~ msgstr "Backporty dla Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Zaktualizuj do najnowszej wersji Ubuntu" +#~ msgstr "Aktualizacje dla Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Nie można zainstalować wszystkich dostępnych aktualizacji" +#~ 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 "" +#~ "Niektóre aktualizacje wymagają dalszego usuwania oprogramowania. Aby " +#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji\" " +#~ "w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade\" w " +#~ "terminalu." + +#~ msgid "The following updates will be skipped:" +#~ msgstr "Następujące pakiety zostaną pominięte:" + +#~ msgid "Downloading the list of changes..." +#~ msgstr "Pobieranie informacji o zmianach..." + +#~ msgid "Select _None" +#~ msgstr "Odz_nacz wszystkie" + +#~ msgid "Select _All" +#~ msgstr "Zaznacz w_szystkie" + +#, python-format +#~ msgid "From version %s to %s" +#~ msgstr "Z wersji %s do %s" + +#~ msgid "" +#~ "You must check for updates manually\n" +#~ "\n" +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ msgstr "" +#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" +#~ "\n" +#~ "System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie " +#~ "można to zmienić w \"System\" -> \"Administracja\" -> \"Software " +#~ "Properties\"." + #~ msgid "" #~ "Examining your system\n" #~ "\n" @@ -1727,36 +1817,72 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Sprawdzanie systemu\n" #~ "\n" -#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe " -#~ "punkty bezpieczeństwa i dostarczyć nowe funkcje." +#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " +#~ "bezpieczeństwa i dostarczyć nowe funkcje." -#~ msgid "Oficially supported" -#~ msgstr "Wspierane oficjalnie" +#~ msgid "Cancel _Download" +#~ msgstr "_Przerwij pobieranie" #~ 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." +#~ "The channel information is out-of-date\n" +#~ "\n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" +#~ "\n" +#~ "You need a working internet connection to continue." #~ msgstr "" -#~ "Niektóre aktualizacje wymagają dalszego usuwania oprogramowania. Aby " -#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji" -#~ "\" w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade" -#~ "\" w terminalu." +#~ "Informacje o kanałach są nieaktualne\n" +#~ "\n" +#~ "Musisz ponownie wczytać informacje o kanałach aby zainstalować " +#~ "oprogramowanie i aktualizacje z nowododanych lub zmienionych kanałów. \n" +#~ "\n" +#~ "Aby kontynuować potrzebne jest działające połączenie internetowe." -#~ msgid "The following updates will be skipped:" -#~ msgstr "Następujące pakiety zostaną pominięte:" +#~ msgid "" +#~ "Enter the complete APT line of the source that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a source, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." +#~ msgstr "" +#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" +#~ "\n" +#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo \"deb " +#~ "http://ftp.debian.org sarge main\"." -#~ msgid "About %li seconds remaining" -#~ msgstr "Około %li sekund pozostało" +#~ msgid "" +#~ "If automatic checking for updates is disabeld, you have to reload the " +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." +#~ msgstr "" +#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone to " +#~ "koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na ukrycie " +#~ "pokazywanego w tym przypadku.powiadamiania." -#~ msgid "Download is complete" -#~ msgstr "Pobieranie zostało zakończone." +#~ msgid "" +#~ "Stores the state of the expander that contains the list of changs and the " +#~ "description" +#~ msgstr "" +#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych aktualizacji" -#~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "Aktualizacja została przerwana. Proszę zgłosić ten błąd." +#~ msgid "" +#~ "OpenSource software that is officially supported by Canonical Ltd. (main)" +#~ msgstr "" +#~ "Otwarte oprogramowanie oficjalnie obsługiwane przez Canonical Ltd. (main)" -#~ msgid "Upgrading Ubuntu" -#~ msgstr "Aktualizacja Ubuntu" +#~ msgid "OpenSource software that is maintained by the community (universe)" +#~ msgstr "Otwarte oprogramowanie obsługiwane przez społeczność (universe)" + +#~ msgid "Proprietary drivers for devices (restricted) " +#~ msgstr "Własnościowe sterowniki dla urządzeń (restricted) " + +#~ msgid "Software that is restricted by copyright or legal issues (multiverse)" +#~ msgstr "" +#~ "Oprogramowanie ograniczone prawami kopiowania lub wątpliowściami prawnymi " +#~ "(multiverse)" + +#~ msgid "Oficially supported" +#~ msgstr "Wspierane oficjalnie" #~ msgid "Hide details" #~ msgstr "Ukryj szczegóły" @@ -1781,6 +1907,9 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Keys" #~ msgstr "Klucze" +#~ msgid "Add _Cdrom" +#~ msgstr "Dodaj płytę _CD" + #~ msgid "Installation Media" #~ msgstr "Nośnik instalacji" @@ -1802,12 +1931,14 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Edit Channel" #~ msgstr "Edytuj kanał" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "Dod_aj kanał" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "Dod_aj kanał" +#~ msgstr[1] "Dod_aj kanały" +#~ msgstr[2] "Dod_aj kanały" #~ msgid "_Custom" -#~ msgstr "Zaawansowane" +#~ msgstr "_Zaawansowane" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "Ubuntu 6.06 LTS" @@ -1822,8 +1953,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje dla Ubuntu 6.06 LTS (Backporty)" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Podczas skanowania informacji o repozytoriach nie odnaleziono poprawnych " #~ "wpisów potrzebnych do aktualizacji.\n" @@ -1841,6 +1972,9 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Sections" #~ msgstr "Sekcje:" +#~ msgid "Check for available updates" +#~ msgstr "Sprawdź dostępne aktualizacje" + #~ msgid "Sections:" #~ msgstr "Sekcje:" @@ -1887,13 +2021,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " -#~ "klikając przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " +#~ "przycisk Instaluj." #~ msgid "Repository" #~ msgstr "Repozytorium" @@ -1913,21 +2047,20 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Klucze autentykacyjne\n" #~ "\n" -#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. " -#~ "Klucz pozwala na sprawdzenie integralności oprogramowania które jest " -#~ "pobierane z sieci." +#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. Klucz " +#~ "pozwala na sprawdzenie integralności oprogramowania które jest pobierane z " +#~ "sieci." #~ msgid "A_uthentication" #~ msgstr "A_utentykacja" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Dodaje plik z kluczem do listy zaufanych kluczy. Należy upewnić sie, że " -#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego " -#~ "źródła. " +#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego źródła. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Usuwaj _tymczasowe pliki z pakietami" @@ -1949,11 +2082,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to " -#~ "na klucze zainstalowane przez użytkownika." +#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to na " +#~ "klucze zainstalowane przez użytkownika." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Maksymalny rozmiar pamięci podręcznej" @@ -1977,9 +2110,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione." -#~ "Aby rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-" -#~ "get\"." +#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione.Aby " +#~ "rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-get\"." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Nie można uaktualnić wszystkich pakietów" @@ -1987,13 +2119,12 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "Oznacza to, że do aktualizacji wymagane sa dodatkowe działania (takie jak " -#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać " -#~ "z funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać " -#~ "polecenie \"apt-get dist-upgrade\"." +#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać z " +#~ "funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać polecenie " +#~ "\"apt-get dist-upgrade\"." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2004,11 +2135,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje są teraz instalowane." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " -#~ "Należy najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " +#~ "najpierw zamknąć aplikację która teraz działa." #~ msgid "Updating package list..." #~ msgstr "Aktualizacja listy pakietów..." @@ -2018,14 +2149,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna " -#~ "wersja nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych " -#~ "krytycznych uaktualnień. Informacje o tym jak uaktualnić dystrybucję " -#~ "można znaleźć na stronie http://www.ubuntulinux.org (Witryna w języku " -#~ "angielskim)" +#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna wersja " +#~ "nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych krytycznych " +#~ "uaktualnień. Informacje o tym jak uaktualnić dystrybucję można znaleźć na " +#~ "stronie http://www.ubuntulinux.org (Witryna w języku angielskim)" #, fuzzy #~ msgid "There is a new release of Ubuntu available!" @@ -2036,11 +2166,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " -#~ "Należy najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " +#~ "najpierw zamknąć aplikację która teraz działa." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicjowanie i pobieranie listy aktualizacji..." @@ -2060,9 +2190,15 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "CD" #~ msgstr "CD" +#~ msgid "Contributed software" +#~ msgstr "Inne oprogramowanie (Contributed)" + #~ msgid "Non-free software" #~ msgstr "Oprogramowanie nie-wolnodostępne" +#~ msgid "US export restricted software" +#~ msgstr "Oprogramowanie objęte restrykcjami eksportowymi USA" + #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "Klucz automatycznego podpisu archiwum Ubuntu " @@ -2072,13 +2208,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " -#~ "klikając przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " +#~ "przycisk Instaluj." #~ msgid "CD disk" -#~ msgstr "Płyta CD" +#~ msgstr "Płyta CD" \ No newline at end of file diff --git a/po/pt.po b/po/pt.po index 73f5368f..ec8da300 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-24 10:17+0000\n" -"Last-Translator: Joao Carvalhinho \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-06 18:27+0000\n" +"Last-Translator: Susana \n" "Language-Team: Ubuntu Portuguese Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,57 +53,53 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Depois de %s dias" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "A instalar actualizações" +msgstr "actualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Servidor para %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Servidor mais próximo" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Servidores personalizados" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Actualizações de Software" +msgstr "Canal de Software" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Activo" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Código Fonte)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Código Fonte" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -124,18 +120,19 @@ msgid "Error removing the key" msgstr "Erro ao remover a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Erro ao ler o CD\n" +"Erro ao examinar o CD\n" "\n" "%s" @@ -168,23 +165,22 @@ msgstr "Não foi possível actualizar os meta-pacotes necessários" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Um problema irresolúvel ocorreu ao calcular a actualização. Por favor " -"reporte este erro. " +"Um problema irresolúvel ocorreu ao calcular a actualização. \n" +"\n" +"Por favor reporte este erro no pacote 'update-manager' e inclua os ficheiros " +"contidos em /var/log/dist-upgrade/ no seu relatório de erro." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" @@ -211,13 +207,11 @@ msgid "" msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,9 +226,8 @@ msgstr "" "get antes de continuar." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Falha a obter" +msgstr "Falha ao adicionar o CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -245,6 +238,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Ocorreu um erro ao adicionar o CD, a actualização será abortada. Por favor " +"relate este erro caso este seja um CD válido do Ubuntu.\n" +"\n" +"A mensagem de erro foi:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -252,7 +250,7 @@ msgstr "A ler a cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Obter dados para a actualização a partir da rede?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -261,6 +259,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"A actualização pode usar a rede para verificar as últimas actualizações e " +"obter pacotes que não estão no CD.\n" +"Se o seu acesso à internet for rápido ou barato deve responder 'Sim'. Se a " +"sua ligação é cara escolha 'Não'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -286,7 +288,6 @@ msgstr "" "Se escolher 'Sim' ele vai actualizar todos os '%s' para '%s' pacotes.↵\n" "Se escolher \"não\" a actualização irá ser cancelada." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" @@ -322,7 +323,6 @@ msgid "Third party sources disabled" msgstr "Fontes de terceiros desactivadas" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " @@ -356,21 +356,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A actualização abortará agora. Por favor liberte %s de espaço em disco em %" -"s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " +"A actualização abortará agora. Por favor liberte %s de espaço em disco em " +"%s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " "usando 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Impossível de instalar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -379,13 +377,16 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "A actualização abortará agora. O seu sistema poderá estar num estado " -"inutilizável. Foi efectuada uma recuperação (dpkg --configure -a)." +"inutilizável. Foi efectuada uma recuperação (dpkg --configure -a).\n" +"\n" +"Por favor relate este erro sobre o pacote 'update-manager' e inclua os " +"ficheiros contidos em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Impossível de descarregar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +394,11 @@ msgstr "" "A actualização abortará agora. Por favor verifique a sua ligação à internet " "ou media de instalação e volte a tentar. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "O suporte para algumas aplicações já terminou." -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,25 +411,25 @@ msgstr "" "apenas suportados pela comunidade ('universe').\n" "\n" "Se não tem o repositório 'universe' activo será sugerida a remoção destes " -"pacotes no próximo passo. " +"pacotes no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Saltar Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Erro ao submeter" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -436,49 +437,45 @@ msgstr "" "Ocorreu algum problema durante a limpeza. Por favor verifique a mensagem " "abaixo para mais informação. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "A obter backport de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "A preparar actualização" +msgstr "A preparação da actualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" "Um problema irresolúvel ocorreu ao calcular a actualização. Por favor " -"reporte este erro. " +"reporte este erro no pacote 'update-manager' e inclua os ficheiros contidos " +"em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "A Actualizar informação de repositórios" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Informação de pacotes inválida" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -488,54 +485,53 @@ msgid "" msgstr "" "Depois da informação de pacotes ser actualizada já não pode ser encontrado o " "pacote essencial '%s'.\n" -"Isto indica um erro sério, por favor reporte este problema." +"Isto indica um erro sério, por favor relate este erro sobre o pacote " +"'update-manager' e inclua os ficheiros contidos em /var/log/dist-upgrade/ no " +"relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "A pedir confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "A actualizar" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Por favor insira '%s' no leitor '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "A actualização está completa" +msgstr "A transferência está completa" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "A descarregar ficheiro %li de %li a %s/s" +msgstr "A obter o ficheiro %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Cerca de %li minutos restantes" +msgstr "Cerca de %s restantes" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "A descarregar ficheiro %li de %li" +msgstr "A obter o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando alterações" @@ -550,145 +546,152 @@ 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 bugreport." msgstr "" +"A actualização será agora abortada. Por favor relate a ocorrência deste erro " +"no pacote 'update-manager' e inclua os ficheiros que se encontram em " +"/var/log/dist-upgrade/ no relatório de erro." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Substituir ficheiro de configuração\n" +"Substituir ficheiro de configuração personalizado\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" +"Perderá todas as alterações que fez a este ficheiro de configuração caso o " +"substitua por uma versão mais recente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor reporte este erro e inclua os ficheiros ~/dist-upgrade.log e ~/" -"dist-upgrade-apt.log no seu relatório. A actualização abortará agora. O " -"ficheiro original sources.list foi guardado em /etc/apt/sources.list." -"distUpgrade." +"Por favor relate este erro e inclua os ficheiros /var/log/dist-" +"upgrade/main.log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A " +"actualização abortará agora.\n" +"O ficheiro original sources.list foi guardado em " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s pacote será removido." -msgstr[1] "%s pacotes serão removidos." +msgstr[0] "o pacote %d será removido." +msgstr[1] "os pacotes %d serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s novo pacote será instalado." -msgstr[1] "%s novos pacotes serão instalados." +msgstr[0] "%d novo pacote será instalado." +msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s pacote será actualizado." -msgstr[1] "%s pacotes serão actualizados." +msgstr[0] "%d pacote será actualizado." +msgstr[1] "%d pacotes serão actualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Tem de efectuar o download de um total de %s." +msgstr "" +"\n" +"\n" +"Tem de efectuar o download de um total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"A actualização poderá demorar várias horas e não poderá ser cancelada a " -"qualquer instante posteriormente." +"A obtenção e instalação da actualização poderá demorar várias horas e não " +"poderá ser cancelada a qualquer instante posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Não há actualizações disponíveis para o seu sistema. A actualização será " +"agora cancelada." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Cerca de %li dias %li horas %li minutos restantes" +msgstr "%li dias %li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Cerca de %li horas %li minutos restantes" +msgstr "%li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" +"Esta transferência levará aprox. %s com uma ligação DSL de 1Mbit e aprox. %s " +"com um modem 56k" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -703,7 +706,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -731,7 +733,7 @@ msgstr "Iniciar a actualização?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "A actualizar o Ubuntu para a versão 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -746,9 +748,8 @@ msgid "Difference between the files" msgstr "Diferença entre os ficheiros" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "A descarregar e a instalar actualizações" +msgstr "A obter e instalar actualizações" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -767,13 +768,12 @@ msgid "Terminal" msgstr "Consola" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Retomar Actualização?" +msgstr "_Cancelar a Actualização" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Continuar" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -796,9 +796,8 @@ msgid "_Resume Upgrade" msgstr "_Retomar Actualização?" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Retomar Actualização?" +msgstr "_Iniciar a Actualização" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -816,7 +815,6 @@ msgstr "Impossível de descarregar as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor verifique a sua ligação à internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossível de executar a ferramenta de actualização" @@ -834,7 +832,8 @@ msgstr "A descarregar a ferramenta de actualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "A ferramenta de actualização guiá-lo-á pelo processo de actualização." +msgstr "" +"A ferramenta de actualização guiá-lo-á pelo processo de actualização." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -869,13 +868,12 @@ msgid "Verfication failed" msgstr "Falhou a verificação" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Verificação da actualização falhou. Poderá existir um problema com a rede ou " -"com o servidor. " +"A verificação da actualização falhou. Poderá existir um problema com a rede " +"ou com o servidor. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -890,136 +888,120 @@ msgstr "" "ou com o servidor. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "A descarregar ficheiro %li de %li a %s/s" +msgstr "A descarregar ficheiro %(current)li de %(total)li a %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "A descarregar ficheiro %li de %li a %s/s" +msgstr "A descarregar ficheiro %(current)li de %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"A lista de alterações ainda não está disponível. Por favor tente mais tarde." +msgstr "A lista de alterações não está disponível." -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Falha a descarregar a lista de alterações. Por favor verifique a sua ligação " -"à internet." +"Falha a descarregar a lista de alterações. \n" +"Por favor verifique a sua ligação à internet." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 Actualizações de Segurança" +msgstr "Actualizações de segurança importantes" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Actualizações recomendadas" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "A instalar actualizações" +msgstr "Actualizações propostas" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backports" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Retomar Actualização?" +msgstr "_Actualizações de Distribuição" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "A instalar actualizações" +msgstr "Outras actualizações" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versão %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "A descarregar lista de alterações..." +msgstr "A descarregar a lista de alterações..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "_Desmarcar Todos" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Verificar" +msgstr "_Verificar Todos" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Pode instalar %s actualização" msgstr[1] "Pode instalar %s actualizações" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Por favor aguarde, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "A actualização está completa" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "Verificar por actualizações disponíveis" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nova versão: %s (Tamanho: %s)" +msgstr "Da versão: %(old_version)s para %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Versão %s: \n" +msgstr "Versão %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "A sua distribuição já não é suportada" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1029,17 +1011,16 @@ msgstr "" "versão mais recente do Ubuntu Linux. Veja http://www.ubuntu.com para mais " "informação em como actualizar." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Está disponível a nova versão '%s' da distribuição" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "O índice de software está quebrado" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1049,27 +1030,23 @@ msgstr "" "gestor de pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" numa " "consola para corrigir este problema em primeiro lugar." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Nenhum" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1090,17 +1067,15 @@ msgid "Keep your system up-to-date" msgstr "Mantenha o seu sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Erro ao ler o CD\n" -"\n" +"Não é possível instalar todas as actualizações \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Iniciar a actualização?" +msgstr "A iniciar o gestor de actualizações" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1108,7 +1083,7 @@ msgstr "Alterações" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Alterações e descrição da actualização" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1133,6 +1108,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Execute uma actualização de distribuição para instalar tantas actualizações " +"quanto possível.\n" +"\n" +"Isto pode ter sido causado por uma actualização incompleta, pacotes de " +"software não oficiais ou a utilização de uma versão em desenvolvimento." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1163,9 +1143,8 @@ msgid "_Check" msgstr "_Verificar" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Retomar Actualização?" +msgstr "Actualização de _Distribuição" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1176,31 +1155,28 @@ msgid "_Install Updates" msgstr "_Instalar Actualizações" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Alterações" +msgstr "alterações" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "actualizações" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Actualizações Internet" +msgstr "Actualizações automáticas" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Actualizações Internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Actualizações Internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1212,11 +1188,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Para melhorar a experiência de utilização do Ubuntu, por favor participe " +"na análise de popularidade. Se o fizer, a listagem de software instalado e a " +"regularidade com que foi utilizado serão recolhidas e enviadas anónimamente " +"para o projecto Ubuntu semanalmente.\n" +"\n" +"Os resultados são utilizados para melhorar o suporte para aplicações " +"populares e para categorizar as aplicações nos resultados de buscas." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Adicionar _CD" +msgstr "Adicionar Cdrom" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1227,9 +1209,8 @@ msgid "D_elete downloaded software files:" msgstr "A_pagar ficheiros descarregados:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "O Download está completo" +msgstr "Transferir de:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1259,32 +1240,31 @@ msgstr "Restaurar as chaves padrão da sua distribuição" #: ../data/software-properties.desktop.in.h:2 #, fuzzy msgid "Software Sources" -msgstr "Preferências de Software" +msgstr "Fontes de Software" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Código fonte" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Estatísticas" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Submeter informação estatística" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Terceira Pessoa" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Procurar por actualizações automaticamente:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Descarregar actualizações silenciosamente, sem as instalar" +msgstr "_Transferir actualizações automaticamente mas não as instalar" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1333,7 +1313,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1361,7 +1340,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Editar o Código Fonte" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1369,7 +1348,7 @@ msgstr "A pesquisar o CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "_Adicionar Fonte" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1431,257 +1410,195 @@ msgid "The window size" msgstr "Tamanho da Janela" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Configurar os repositórios de software e actualizações pela internet" +msgstr "Configurar os repositórios de software e actualizações instaláveis" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 Actualizações" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Mantido pela comunidade (Universe)" +msgstr "Mantido pela comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Drivers proprietários para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Não-livre (Multiverse)" +msgstr "Software Restrito" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cdrom com o Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +msgid "Canonical supported Open Source software" +msgstr "Software de Código Aberto suportado pela Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Mantido pela comunidade (Universe)" +msgstr "Mantido pela comunidade (universal)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Mantido pela comunidade (Universe)" +msgstr "Software de Código Fonte Aberto mantido pela comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Não-livre (Multiverse)" +msgstr "Controladores não-livres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Drivers proprietários para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Não-livre (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" -msgstr "" +msgid "Software restricted by copyright or legal issues" +msgstr "Software restringido por copyright ou questões legais" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 +#, fuzzy msgid "Backported updates" -msgstr "" +msgstr "Actualizações dos repositórios \"backport\"" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Actualizações" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Cdrom com o Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado Oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 Actualizações de Segurança" +msgstr "Actualizações de Segurança do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 Actualizações" +msgstr "Actualizações do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Backports do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Algum software já não é suportado oficialmente" +msgstr "Sem mais suporte oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Direitos de autor restritos" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 Actualizações de Segurança" +msgstr "Actualizações de Segurança do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 Actualizações" +msgstr "Actualizações do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Backports do Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Actualizações de Segurança" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatível-DFSG com Dependências Não-Livres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" @@ -1701,20 +1618,16 @@ msgstr "Software compatível-DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "O seu sistema já foi actualizado." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "A actualizar para Ubuntu 6.06 LTS" +#~ "A actualizar para Ubuntu 6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 Actualizações de Segurança" +#~ msgstr "Actualizações de segurança importantes do Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Actualize para a última versão do Ubuntu" +#~ msgstr "Actualizações do Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Impossível de instalar todas as actualizações disponíveis" @@ -1735,16 +1648,17 @@ msgstr "Software compatível-DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas actualizações requerem a remoção de software. Utilize a função " -#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade" -#~ "\" numa consola para actualizar completamente o seu sistema." +#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade\" " +#~ "numa consola para actualizar completamente o seu sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes actualizações serão ignoradas:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Cerca de %li segundos restantes" @@ -1765,14 +1679,12 @@ msgstr "Software compatível-DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo " -#~ "tempo" +#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou " -#~ "'Synaptic'." +#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou 'Synaptic'." #~ msgid "Channels" #~ msgstr "Repositórios" @@ -1801,9 +1713,10 @@ msgstr "Software compatível-DFSG" #~ msgid "Edit Channel" #~ msgstr "Editar Repositório" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Adicionar Repositório" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Adicionar Repositório" +#~ msgstr[1] "_Adicionar Repositórios" #~ msgid "_Custom" #~ msgstr "_Personalizado" @@ -1821,8 +1734,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Ubuntu 6.06 LTS Backports" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Ao pesquisar o seu repositório de informação não foi encontrada nenhuma " #~ "entrada válida de actualização.\n" @@ -1841,15 +1754,15 @@ msgstr "Software compatível-DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "A efectuar download de alterações\n" +#~ "A efectuar download de " +#~ "alterações\n" #~ "\n" #~ "É necessário obter as alterações de um servidor central" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" #~ "Não existe espaço suficiente no seu sistema para descarregar os pacotes " #~ "necessários. Por favor liberte algum espaço antes de tentar novamente por " @@ -1862,8 +1775,8 @@ msgstr "Software compatível-DFSG" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" -#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de " -#~ "um problema de rede. Por favor verifique a rede e tente novamente. " +#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de um " +#~ "problema de rede. Por favor verifique a rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1888,8 +1801,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Tem a certeza que pretende cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " #~ msgstr "" #~ "Cancelar durante uma actualização pode deixar o seu sistema num estado " #~ "instável. É fortemente aconselhado a prosseguir a operação. " @@ -1904,4 +1817,4 @@ msgstr "Software compatível-DFSG" #~ msgstr "Nunca exibir esta mensagem novamente" #~ msgid "CD" -#~ msgstr "CD" +#~ msgstr "CD" \ No newline at end of file diff --git a/po/pt_BR.po b/po/pt_BR.po index 91341f94..60893d45 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,9 +5,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-26 22:31+0000\n" -"Last-Translator: KurtKraut \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-02 11:49+0000\n" +"Last-Translator: Andre Noel \n" "Language-Team: Ubuntu-BR \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -msgstr "Diário" +msgstr "Diariamente" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" @@ -54,63 +54,57 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Após %s dias" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Instalando Atualizações" +msgstr "Atualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Servidor no(a) %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Servidor mais próximo" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Servidores personalizados" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Modificando os canais de programas" +msgstr "Canais de Programas" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Ativo" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Source" +msgstr "(Código Fonte)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Source" +msgstr "Código Fonte" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "Importar Chave" +msgstr "Importar chave" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" @@ -119,7 +113,7 @@ msgstr "Erro importando o arquivo selecionado" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -"O arquivo selecionado pode não ser um arquivo de chave GPG ou pode estar " +"O arquivo selecionado parece não ser um arquivo de chave GPG ou pode estar " "corrompido." #: ../SoftwareProperties/SoftwareProperties.py:992 @@ -127,19 +121,20 @@ msgid "Error removing the key" msgstr "Erro removendo a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"A chave que você selecionou não pôde se removida. Por favor reporte isto " -"como um erro." +"A chave selecionada não pode ser removida. Por favor reporte isto como um " +"bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Erro analisando o CD\n" +"Erro procurando no CD\n" "\n" "%s" @@ -160,9 +155,9 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"O seu sistema possui pacotes quebrados que não puderam ser fixados com este " -"programa. Por favor, arrume-os primeiro usando o Synaptic ou apt-get antes " -"de continuar." +"O seu sistema possui pacotes quebrados que não puderam ser corrigidos com " +"este programa. Por favor, corrija-os primeiro utilizando o Synaptic ou apt-" +"get antes de continuar." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -172,23 +167,23 @@ msgstr "Não foi possível atualizar os meta-pacotes requeridos" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "Não foi possível calcular a atualização" +msgstr "Não foi possível processar a atualização" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Um problema sem resolução ocorreu enquanto calculando a atualização. Por " -"favor reporte isto como um erro. " +"Um erro impossível de se resolver ocorreu enquanto verificava a " +"atualização.\n" +"\n" +"Por favor reporte esse erro no pacote 'update-manager' e inclua os arquivos " +"contidos em /var/log/dist-upgrade/ no relatório de erros." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" @@ -199,9 +194,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"Não foi possível autenticar alguns pacotes. Isso poder devido a um problema " -"de rede. Você pode tentar de novo depois. Veja abaixo uma lista dos pacotes " -"não-autenticados." +"Não foi possível autenticar alguns pacotes. Isso pode ser devido a um " +"problema momentâneo na rede. Você pode tentar de novo depois. Veja abaixo " +"uma lista dos pacotes não-autenticados." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -213,16 +208,14 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Não foi possível instalar um pacote requerido. Por favor reporte isto como " -"um erro. " +"Não foi possível instalar um pacote requerido. Por favor relate isto como um " +"erro. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "Não foi possível adivinhar o meta-pacote" +msgstr "Não foi possível determinar o meta-pacote" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -230,16 +223,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"O seu sistema não possui um pacote ubuntu-desktop, kubuntu-desktop ou " -"edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você está " -"executando.\n" -"Por favor instale um desses pacotes primeiro usando o Synaptic ou apt-get " -"antes de continuar." +"Seu sistema não possui nenhum dos pacotes ubuntu-desktop, kubuntu-desktop ou " +"edubuntu-desktop e não foi possível detectar qual a versão do Ubuntu você " +"esta rodando.\n" +" Por favor, instale um dos pacotes acima usando o synaptic ou apt-get antes " +"de seguir adiante." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Falha ao obter" +msgstr "Falha ao adicionar o CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -250,6 +242,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Ocorreu um erro ao adicionar o CD, a atualização será abortada. Por favor, " +"reporte isto como um erro caso este seja um CD válido do Ubuntu.\n" +"\n" +"Mensagem de erro:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -257,7 +254,7 @@ msgstr "Lendo cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Buscar dados da rede para a atualização?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -266,6 +263,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"A atualização pode usar a rede para checar as últimas melhorias e extrair os " +"pacotes que não estão no CD atual.\n" +"Se você possui acesso rápido ou barato à rede você deve responder 'Sim'. Se " +"o acesso à rede é caro para você, escolha 'Não'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -282,7 +283,7 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"Enquanto buscava informações em seus repositórios nenhuma entrada para " +"Durante a busca de informações em seus repositórios nenhuma entrada para " "atualizações foi encontrada. Isso pode acontecer se você está executando um " "repositório interno ou se a informação do repositório está desatualizada.\n" "\n" @@ -290,10 +291,9 @@ msgstr "" "'Sim' atualizará todas '%s' para '%s' entradas.\n" "Se você selecionar 'não' a atualização será cancelada." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "Gerar sources padrão?" +msgstr "Gerar fontes padrão?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -306,7 +306,7 @@ msgstr "" "Depois de checar seu 'sources.list' nenhuma entrada válida para '%s' foi " "encontrada.\n" "\n" -"Entradas padrões para '%s' devem ser adicionadas? Se você escolher 'Não' a " +"Entradas padrão para '%s' devem ser adicionadas? Se você escolher 'Não' a " "atualização será cancelada." #: ../DistUpgrade/DistUpgradeControler.py:301 @@ -318,8 +318,8 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Atualizando a informações de repositórios resultou em um arquivo inválido. " -"Por favor reporte isso como um erro." +"A atualização das informações de repositórios resultou em um arquivo " +"inválido. Por favor relate isso como um erro." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -332,9 +332,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Algumas entradas de terceiros de seu sources.list foram desabilitadas. Você " -"poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " -"programa' ou com o synaptic." +"Algumas entradas de terceiros em seu sources.list foram desabilitadas. Você " +"pode reabilitá-las após a atualização com a ferramenta 'software-properties' " +"ou com o synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -360,21 +360,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A atualização cancela agora. Por favor libere pelo menos %s de espaço de " -"disco no %s. Esvazie seu lixo e remova temporariamente pacotes de " +"A atualização será abortada agora. Por favor libere pelo menos %s de espaço " +"de disco no %s. Esvazie sua lixeira e remova pacotes temporários de " "instalações anteriores usando 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,14 +380,17 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"A atualização será abortada agora. Seu sistema pode estar em um estado " -"instável. Uma recuperação é executada (dpkg --configure -a)." +"A atualização será abortada agora. Seu sistema pode ter ficado instável. O " +"processo de recuperação foi executado (dpkg --configure -a).\n" +"\n" +"Por favor, informe este erro no pacote 'update-manager' e inclua os arquivos " +"contidos em /var/log/dist-upgrade/ no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Não foi possível obter as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -397,12 +398,11 @@ msgstr "" "A atualização será abortada agora. Por favor verifique sua conexão à " "Internet ou mídia de instalação e tente de novo. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "O suporte para algumas aplicações foi descontinuado" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -410,79 +410,67 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Estes pacotes já instalados não são mais oficialmente suportados, e agora " -"são suportados somente pela comunidade ('universe').\n" -"\n" -"Se você não tem o repositório 'universe' habilitado, estes pacotes serão " -"sugeridos à remoção no próximo passo. " -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "Remover Pacotes obsoletos?" +msgstr "Remover pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Pular Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Alguns problemas ocorreram durante a limpeza. Por favor veja as mensagens " +"Alguns problemas ocorreram durante a limpeza. Por favor veja a mensagem " "abaixo para maiores informações. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "Reiniciando o estado original do sistema" +msgstr "Restaurando o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "Verificando o Gerenciador de Pacotes" +msgstr "Verificando o gerenciador de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Preparando a Atualização" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Um problema sem resolução ocorreu enquanto calculando a atualização. Por " -"favor reporte isto como um erro. " -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Atualizando informação do repositório" -#: ../DistUpgrade/DistUpgradeControler.py:708 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Informação do pacote inválida" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -490,27 +478,28 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Depois que a informação do seu pacote foi atualizada o pacote essencial '%s' " -"não pôde mais ser encontrado.\n" -"Isto indica um sério erro, por favor reporte isso como um erro." +"Depois que a sua informação do pacote foi atualizada, o pacote essencial " +"'%s' não pôde mais ser encontrado.\n" +"Isso indica uma falha grave, por favor reporte isso como um erro no pacote " +"do 'update-manager' e inclua os arquivos contidos em /var/log/dist-upgrade/ " +"no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "Pedindi por confirmação" +msgstr "Pedindo confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Atualizando" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "A Atualização do Sistema está completa." +msgstr "A atualização do sistema está completa." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,30 +508,29 @@ msgstr "Por favor insira '%s' no drive '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 #, fuzzy msgid "Fetching is complete" -msgstr "Atualização completa" +msgstr "A extração foi completada" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Obtendo arquivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Aproximadamente %li minutos restando" +msgstr "Restam %s aproximadamente" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Obtendo arquivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "..." +msgstr "Aplicando mudanças" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format @@ -554,141 +542,144 @@ 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 bugreport." msgstr "" +"A atualização irá abortar agora. Por favor, relate esse erro no pacote " +"'update-manager' e inclua os arquivos em /var/log/dist-upgrade/ no relatório " +"de erros." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Substituir arquivo de configuração\n" -"'%s' ?" +"Substituir o arquivo de configurações customizadas\n" +"'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor reporte isto como um bug e inclua os arquivos /var/log/dist-" -"upgrade.log e /var/log/dist-upgrade-apt.log em seu relatório. O upgrade " -"abortará agora.\n" +"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-" +"upgrade.log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização " +"será abortada agora.\n" "Seu sources.list original foi salvo em /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s pacote será removido." -msgstr[1] "%s pacotes serão removidos." +msgstr[0] "%d pacote será removido." +msgstr[1] "%d pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s novo pacote será instalado." -msgstr[1] "%s novos pacotes serão instalados." +msgstr[0] "%d novo pacote será instalado." +msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s pacote será atualizado." -msgstr[1] "%s pacotes serão atualizados." +msgstr[0] "%d pacote será atualizado." +msgstr[1] "%d pacotes serão atualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Você precisa obter um total de %s." +msgstr "" +"\n" +"\n" +"Você tem que baixar um total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"A atualização pode levar diversas horas e não poderá ser cancelada depois." +"A obtenção e instalação da atualização pode levar muitas horas e não poderá " +"ser cancelada depois." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Não há atualizações disponíveis para o seu sistema. A atualização será " +"cancelada agora." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Atualizar %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Aproximadamente %li dias %li horas %li minutos restando" +msgstr "%li dias %li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Aproximadamente %li horas %li minutos restando" +msgstr "%li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -705,7 +696,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -725,15 +715,16 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicie o seu sistema para finalizar a atualização" +msgstr "" +"Reinicie o seu sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Iniciar a Atualização?" +msgstr "Iniciar a atualização?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Atualizando o Ubuntu para a versão 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -748,7 +739,6 @@ msgid "Difference between the files" msgstr "Diferenças entre os arquivos" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Obtendo e instalando as atualizações" @@ -758,7 +748,7 @@ msgstr "Modificando os canais de software" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "Preparando a Atualização" +msgstr "Preparando a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" @@ -769,9 +759,8 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "Continua_r Atualização" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -783,11 +772,11 @@ msgstr "_Manter" #: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" -msgstr "_Subtituir" +msgstr "_Substituir" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "Reportar _Erro" +msgstr "Relatar _Erro" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -798,9 +787,8 @@ msgid "_Resume Upgrade" msgstr "Continua_r Atualização" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "Continua_r Atualização" +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -818,7 +806,6 @@ msgstr "Não foi possível obter as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor, verifique sua conexão de internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Não foi possível executar a ferramenta de atualização" @@ -836,7 +823,7 @@ msgstr "Obtendo a ferramenta de atualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "A ferramenta de atualização irá guia-lo pelo processo." +msgstr "A ferramenta de atualização irá guiá-lo durante o processo." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -872,13 +859,12 @@ msgid "Verfication failed" msgstr "Falha na verificação" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Falha na verificação da atualização. Pode ter havido um problema com a rede " -"ou com o servidor. " +"Falha ao verificar atualização. Talvez devido a um problema com a rede ou " +"com o servidor. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -893,138 +879,116 @@ msgstr "" "com o servidor. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Obtendo arquivo %li de %li a %s/s" +msgstr "" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Obtendo arquivo %li de %li a %s/s" +msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"A lista de alterações não está disponível ainda. Por favor, tente novamente " -"mais tarde." +msgstr "A lista de alterações não está disponível" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"A lista de alterações não está disponível ainda. Por favor, tente novamente " -"mais tarde." -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Não foi possível baixar a lista de mudanças. Por favor, verifique sua " -"conexão com a internet." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Atualizações de Segurança do Ubuntu 5.10" +msgstr "Principais Atualizações de Segurança" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Atualizações recomendadas" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Instalando Atualizações" +msgstr "Atualizações sugeridas" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backports" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "Continua_r Atualização" +msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Instalando Atualizações" +msgstr "Outras atualizações" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" -msgstr "Version %s: \n" +msgstr "Versão %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "Obtendo a lista de alterações" +msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "_Desmarcar Todos" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Verificar" +msgstr "_Marcar Todos" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Você pode instalar %s atualização" msgstr[1] "Você pode instalar %s atualizações" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "Por favor, espere, isto pode levar algum tempo." +msgstr "Aguarde por favor, isso pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "Atualização completa" +msgstr "A atualização está completa" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Procurar updates disponíveis" +msgstr "Verificando por atualizações" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "New version: %s (Tamanho: %s)" +msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Version %s: \n" +msgstr "Versão %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Sua distribuição não é mais suportada" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1032,19 +996,18 @@ msgid "" msgstr "" "Você não terá mais como instalar atualizações críticas ou correções para " "falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. " -"Veja http://www.ubuntu-br.org" +"Veja http://www.ubuntu-br.org para mais informações." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Uma nova versão da distribuição '%s' está disponível" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "A índex de software está quebrado" +msgstr "O index do software está quebrado" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1054,58 +1017,43 @@ msgstr "" "Gerenciador de Pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" " "em um terminal para resolver esse problema primeiro." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Nenhum" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Você deve verificar as atualizações manualmente\n" -"\n" -"O seu sistema não procura por atualizações automaticamente. Você pode " -"configurar essa opção em \"Sistema\" -> \"Administração\" -> \"Propriedades " -"de Programas\"." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "Manter o Sistema Atualizado" +msgstr "Manter o sistema atualizado" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Erro analisando o CD\n" -"\n" -"%s" +msgstr "Nem todas as atualizações podem ser instaladas" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Iniciar a Atualização?" +msgstr "Iniciando o gerenciador de atualizações" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1113,7 +1061,7 @@ msgstr "Mudanças" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Mudanças e descrição da atualização" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1138,6 +1086,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Fazer uma atualização da distribuição, para instalar quantas atualizações " +"forem possíveis. \n" +"\n" +"Isso pode ser causado por um upgrade incompleto, pacotes de programas não-" +"oficiais ou por executar uma versão em desenvolvimento." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1145,15 +1098,15 @@ msgstr "Exibir progresso de arquivos únicos" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "Atualizações de Programas" +msgstr "Atualizações de Software" #: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " -"segurança, e prover novas funcionalidades para você." +"Atualizações de programas podem corrigir erros, eliminar vulnerabilidades de " +"segurança e prover novas funcionalidades." #: ../data/glade/UpdateManager.glade.h:19 #, fuzzy @@ -1169,9 +1122,8 @@ msgid "_Check" msgstr "_Verificar" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "Continua_r Atualização" +msgstr "Atualização da _Distribuição" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1182,31 +1134,28 @@ msgid "_Install Updates" msgstr "_Instalar Atualizações" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Mudanças" +msgstr "mudanças" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "atualizações" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Atualizações via Internet" +msgstr "Atualizações automáticas" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Atualizações via Internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Atualizações via Internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1218,11 +1167,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Para melhorar a experiência do usuário Ubuntu por favor participe desta " +"pesquisa de popularidade. Se você participar, uma lista dos aplicativos " +"instalados e com que frequência são utilizados será coletada e enviada " +"anonimamente para o projeto Ubuntu semanalmente.\n" +"\n" +"Os resultados são usados para melhorar o suporte de aplicativos populares a " +"para fazer um ranking de aplicações nos resultados de busca." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Adicionar _Cdrom" +msgstr "Adicionar CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1233,9 +1188,8 @@ msgid "D_elete downloaded software files:" msgstr "Apagar arquivos d_e programas obtidos:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "O Download está completo" +msgstr "Baixar de:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1251,10 +1205,9 @@ msgid "" "automatically" msgstr "" "Somente atualizações de segurança do servidor oficial do Ubuntu serão " -"instaladas automaticamente." +"instaladas automaticamente" #: ../data/glade/SoftwareProperties.glade.h:16 -#, fuzzy msgid "Restore _Defaults" msgstr "Restaurar Pa_drões" @@ -1264,35 +1217,32 @@ msgstr "Restaurar as chaves padrão da sua distribuição" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Software Properties" +msgstr "Canais de Software" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Source" +msgstr "Código fonte" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Estatísticas" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Enviar informações estatísticas" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Outros Pacotes" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "Verifi_car por atualizações automaticamente:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Obter atualizações em segundo plano, mas não instalá-las" +msgstr "_Obter atualizações automaticamente, mas não instalá-las" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1303,7 +1253,6 @@ msgid "_Install security updates without confirmation" msgstr "_Instalar novas atualizações de segurança sem confirmação" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1312,16 +1261,18 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"O canal informação está desatualizado\n" +"A informação sobre programas disponíveis está " +"desatualizada\n" "\n" -"Você tem que recarregar as informações do canal para instalar programas e " -"atualizações de canais adicionados ou alterados.\n" +"Para instalar programas e atualizações de fontes recentemente adicionadas ou " +"alteradas, você tem que recarregar as informações sobre programas " +"disponíveis.\n" "\n" -"Você necessita uma conexão de internet para continuar." +"Você precisa de uma conexão com a Internet funcionando para continuar." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" -msgstr "Comment:" +msgstr "Comentário:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" @@ -1329,18 +1280,17 @@ msgstr "Componentes:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" -msgstr "Distribution:" +msgstr "Distribuição:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 msgid "Type:" -msgstr "Type:" +msgstr "Tipo:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1348,37 +1298,35 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Insira a linha completa do APT do canal que você quer adicionar\n" +"Entre com a linha do APT completa do repositório que você deseja " +"adicionar como fonte\n" "\n" -"A linha do APT contém o tipo, a localização e as seções do canal, por " -"exemplo \"deb http://ftp.debian.org sarge main\"." +"A linha do APT inclui o tipo, localização e componentes de um repositório, " +"por exemplo \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" -msgstr "APT line:" +msgstr "Linha do APT:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 msgid "" "Binary\n" "Source" msgstr "" -"Binary\n" -"Source" +"Binário\n" +"Fonte" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Source" +msgstr "Editar Canal" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "Procurando no CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Source" +msgstr "_Adicionar Canal" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1405,15 +1353,14 @@ msgid "Check for new distribution releases" msgstr "Checar por novas versões da distribuição" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"Se a verificação automática de atualizações for desativada, você terá que " -"recarregar manualmente a lista de canais. Esta opção perminte que você " -"esconda o lembrete mostrado neste caso." +"Se a verificação de atualizações estiver desabilitada, você tem que " +"recarregar a lista de canais manualmente. Esta opção oculta o lembrete " +"mostrado neste caso." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1425,309 +1372,380 @@ msgstr "Exibir detalhes de uma atualização" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Armazena o tamanho do diálogo do update-manager" +msgstr "" +"Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Armazena o estado do expansor que contém a lista de mudanças e a descrição" +"Armazena o status do expansor que contém a lista de mudanças e a descrição" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" msgstr "O tamanho da janela" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" msgstr "Configurar os canais de software e atualizações via internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Atualizações do Ubuntu 5.10" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Mantido pela Comunidade (Universe)" +msgstr "Mantido pela comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Controladores proprietários para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Contributed software" +msgstr "Software restrito" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cdrom com Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" msgstr "Mantido pela Comunidade (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Mantido pela Comunidade (Universe)" +msgstr "Programa de Código Aberto mantido pela Comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Não-livre (Multiverse)" +msgstr "Drivers Não-livres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Controladores proprietários para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Não-livre (Multiverse)" +msgstr "Programas restritos (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "US export restricted software" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Atualizações \"Backport\"" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Atualizações do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "Suporte oficial" +msgstr "Suportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Atualizações de Segurança do Ubuntu 5.10" +msgstr "Atualizações de Segurança do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Atualizações do Ubuntu 5.10" +msgstr "Atualizações do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Backports do Ubuntu 5.10" +msgstr "Backports do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela Comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Não-livre (Multiverse)" +msgstr "Não-livres (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Alguns softwares não são mais oficialmente suportado." +msgstr "Não é mais suportado oficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "Restrito por copyright" +msgstr "Copyright restrito" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 4.10 Security Updates" +msgstr "Atualizações de Segurança do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Atualizações do Ubuntu 5.10" +msgstr "Atualizações do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Backports do Ubuntu 5.10" +msgstr "Backports do Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "Debian \"Etch\" (testing)" +msgstr "Debian \"Etch\" (testando)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "Debian \"Sid\" (unstable)" +msgstr "Debian \"Sid\" (instável)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "Programa compatível com a DFSG mas com dependências não-livres" +msgstr "Programa compatível com a DFSG mas com Dependências Não-Livres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" -#~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" +#, python-format +#~ msgid "" +#~ "Error scaning the CD\n" +#~ "\n" +#~ "%s" +#~ msgstr "" +#~ "Erro durante a análise do CD\n" +#~ "\n" +#~ "%s" #, fuzzy -#~ msgid "Normal updates" -#~ msgstr "Instalando Atualizações" +#~ msgid "" +#~ "A unresolvable problem occured while calculating the upgrade.\n" +#~ "\n" +#~ "Please report this bug against the 'update-manager' package and include the " +#~ "files in /var/log/dist-upgrade/ in the bugreport." +#~ msgstr "" +#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por favor " +#~ "relate isto como um erro." -#~ msgid "Cancel _Download" -#~ msgstr "Cancelar _Download" +#~ msgid "" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." +#~ msgstr "" +#~ "O seu sistema não possui um pacote ubuntu-desktop, kubuntu-desktop ou " +#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você está " +#~ "executando.\n" +#~ "Por favor instale um desses pacotes primeiro usando o Synaptic ou apt-get " +#~ "antes de continuar." + +#~ msgid "" +#~ "Some third party entries in your souces.list were disabled. You can re-" +#~ "enable them after the upgrade with the 'software-properties' tool or with " +#~ "synaptic." +#~ msgstr "" +#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. Você " +#~ "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " +#~ "programa' ou com o synaptic." #~ msgid "Some software no longer officially supported" #~ msgstr "Alguns softwares não são mais oficialmente suportado." +#~ msgid "" +#~ "These installed packages are no longer officially supported, and are now " +#~ "only community-supported ('universe').\n" +#~ "\n" +#~ "If you don't have 'universe' enabled these packages will be suggested for " +#~ "removal in the next step. " +#~ msgstr "" +#~ "Estes pacotes já instalados não são mais oficialmente suportados, e agora " +#~ "são suportados somente pela comunidade ('universe').\n" +#~ "\n" +#~ "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " +#~ "sugeridos à remoção no próximo passo. " + +#, python-format +#~ msgid "" +#~ "Replace configuration file\n" +#~ "'%s'?" +#~ msgstr "" +#~ "Substituir arquivo de configuração\n" +#~ "'%s' ?" + +#, python-format +#~ msgid "%s package is going to be removed." +#~ msgid_plural "%s packages are going to be removed." +#~ msgstr[0] "%s pacote será removido." +#~ msgstr[1] "%s pacotes serão removidos." + +#, python-format +#~ msgid "%s new package is going to be installed." +#~ msgid_plural "%s new packages are going to be installed." +#~ msgstr[0] "%s novo pacote será instalado." +#~ msgstr[1] "%s novos pacotes serão instalados." + +#, python-format +#~ msgid "%s package is going to be upgraded." +#~ msgid_plural "%s packages are going to be upgraded." +#~ msgstr[0] "%s pacote será atualizado." +#~ msgstr[1] "%s pacotes serão atualizados." + #~ msgid "Could not find any upgrades" #~ msgstr "Não foi possível encontrar nenhuma atualização" #~ msgid "Your system has already been upgraded." #~ msgstr "Seu sistema já foi atualizado." -#, fuzzy +#, python-format +#~ msgid "" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" +#~ msgstr "" +#~ "Este download demorará cerca de %s com um modem 56k e cerca de %s com uma " +#~ "conexão 1Mbit DSL." + #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atualizando para o Ubuntu 6.06 " -#~ "LTS" +#~ "Atualizando para o Ubuntu 6.10" + +#~ msgid "" +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " +#~ msgstr "" +#~ "Falha na verificação da atualização. Pode haver um problema com a rede ou " +#~ "com o servidor. " + +#, python-format +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "Obtendo arquivo %li de %li a %s/s" + +#, python-format +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" + +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "" +#~ "A lista de alterações não está disponível ainda. Por favor, tente novamente " +#~ "mais tarde." + +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "" +#~ "Não foi possível baixar a lista de mudanças. Por favor, verifique sua " +#~ "conexão com a internet." -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Atualizações de Segurança do Ubuntu 5.10" +#~ msgstr "Atualizações de segurança importantes do Ubuntu" + +#~ msgid "Recommended updates of Ubuntu" +#~ msgstr "Atualizações recomentadas do Ubuntu" + +#~ msgid "Proposed updates for Ubuntu" +#~ msgstr "Atualizações propostas para o Ubuntu" + +#~ msgid "Backports of Ubuntu" +#~ msgstr "Backports do Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Atualizar para a última versão do Ubuntu" +#~ msgstr "Atualizações do Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Não foi possível instalar todas as atualizações disponíveis" +#~ msgid "Downloading the list of changes..." +#~ msgstr "Obtendo a lista de alterações..." + +#~ msgid "Select _None" +#~ msgstr "Selecionar _Nenhum" + +#~ msgid "Select _All" +#~ msgstr "Selecion_ar Todos" + +#, python-format +#~ msgid "From version %s to %s" +#~ msgstr "Da versão %s para %s" + +#~ msgid "" +#~ "You must check for updates manually\n" +#~ "\n" +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ msgstr "" +#~ "Você deve verificar por atualizações manualmente\n" +#~ "\n" +#~ "O seu sistema não procura por atualizações automaticamente. Você pode " +#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> \"Propriedades " +#~ "de Programas\"." + #~ msgid "" #~ "Examining your system\n" #~ "\n" @@ -1736,25 +1754,82 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Verificando as Atualizações Disponíveis\n" #~ "\n" -#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades " -#~ "de segurança, e prover novas funcionalidades para você." +#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " +#~ "segurança, e prover novas funcionalidades para você." + +#~ msgid "Cancel _Download" +#~ msgstr "Cancelar _Download" + +#~ msgid "" +#~ "The channel information is out-of-date\n" +#~ "\n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" +#~ "\n" +#~ "You need a working internet connection to continue." +#~ msgstr "" +#~ "O canal informação está desatualizado\n" +#~ "\n" +#~ "Você tem que recarregar as informações do canal para instalar programas e " +#~ "atualizações de canais adicionados ou alterados.\n" +#~ "\n" +#~ "Você necessita uma conexão de internet para continuar." + +#~ msgid "" +#~ "Enter the complete APT line of the source that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a source, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." +#~ msgstr "" +#~ "Insira a linha completa do APT referente ao canal que você quer " +#~ "adicionar\n" +#~ "\n" +#~ "A linha do APT contém o tipo, a localização e as seções do canal, por " +#~ "exemplo \"deb http://ftp.debian.org sarge main\"." + +#~ msgid "" +#~ "If automatic checking for updates is disabeld, you have to reload the " +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." +#~ msgstr "" +#~ "Se a verificação automática de atualizações for desativada, você terá que " +#~ "recarregar manualmente a lista de canais. Esta opção perminte que você " +#~ "esconda o lembrete mostrado neste caso." + +#~ msgid "" +#~ "Stores the state of the expander that contains the list of changs and the " +#~ "description" +#~ msgstr "" +#~ "Armazena o estado do expansor que contém a lista de mudanças e a descrição" + +#~ msgid "By Canonical supported Open Source software" +#~ msgstr "Programa de Código Aberto suportado pela Canonical" + +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Programas restritos por copyright ou questões legais" #~ msgid "Oficially supported" #~ msgstr "Suportado Oficialmente" +#, fuzzy +#~ msgid "No longer oficially supported" +#~ msgstr "Alguns softwares não são mais oficialmente suportado." + #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas atualizações requerem a remoção de outros pacotes.Use a função " -#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou " -#~ "rode \"sudo apt-get dist-upgrade\" em um terminal para atualizar seu " -#~ "sistema completamente." +#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou rode " +#~ "\"sudo apt-get dist-upgrade\" em um terminal para atualizar seu sistema " +#~ "completamente." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes atualizações serão puladas:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Aproximadamente %li segundos restando" @@ -1775,8 +1850,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo " -#~ "tempo" +#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1789,11 +1863,14 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Keys" #~ msgstr "Chaves" +#~ msgid "Add _Cdrom" +#~ msgstr "Adicionar _Cdrom" + #~ msgid "Installation Media" #~ msgstr "Mídia de Instalação" #~ msgid "Software Preferences" -#~ msgstr "Preferências de Programas" +#~ msgstr "Preferências de software" #~ msgid " " #~ msgstr " " @@ -1802,7 +1879,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Canal" #~ msgid "Components" -#~ msgstr "Componentes:" +#~ msgstr "Componentes" #~ msgid "Add Channel" #~ msgstr "Adicionar Canal" @@ -1810,9 +1887,10 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Edit Channel" #~ msgstr "Editar Canal" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Adicionar Canal" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Adicionar Canal" +#~ msgstr[1] "_Adicionar Canais" #, fuzzy #~ msgid "_Custom" @@ -1831,8 +1909,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Backports do Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Enquanto analisava as informações de repositórios não foi encontrada uma " #~ "entrada válida para a atualização.\n" @@ -1850,6 +1928,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Sections" #~ msgstr "Seções" +#~ msgid "Check for available updates" +#~ msgstr "Procurar updates disponíveis" + #~ msgid "Sections:" #~ msgstr "Sections:" @@ -1880,12 +1961,12 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" #~ "Não há espaço suficiente no seu sistema para obter os pacotes requeridos. " -#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-" -#~ "get clean'" +#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-get " +#~ "clean'" #~ msgid "Error fetching the packages" #~ msgstr "Erro ao obter os pacotes" @@ -1895,8 +1976,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" #~ "Alguns problemas ocorreram durante a obtenção dos pacotes. Isso é bem " -#~ "provável que seja por problemas de rede. Por favor verifique a sua " -#~ "conexão de rede e tente novamente. " +#~ "provável que seja por problemas de rede. Por favor verifique a sua conexão " +#~ "de rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1921,11 +2002,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Tem certeza que deseja cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " #~ msgstr "" -#~ "Cancelar durante a atualização pode deixar o sistema em um estado " -#~ "instável. É fortemente recomendável que a operação continue. " +#~ "Cancelar durante a atualização pode deixar o sistema em um estado instável. " +#~ "É fortemente recomendável que a operação continue. " #, fuzzy #~ msgid "Sources" @@ -1948,13 +2029,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -1974,16 +2055,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -2008,11 +2089,11 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -2045,13 +2126,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -2060,11 +2139,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -2074,33 +2153,33 @@ msgstr "Programas não compatíveis com a DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "There is a new release of Ubuntu available!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -2132,10 +2211,10 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." \ No newline at end of file diff --git a/po/qu.po b/po/qu.po new file mode 100644 index 00000000..38609208 --- /dev/null +++ b/po/qu.po @@ -0,0 +1,1424 @@ +# Quechua translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Quechua \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/ro.po b/po/ro.po index 0bd1db76..9335d302 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,14 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-24 17:39+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?1:2)\n" +"Plural-Forms: " +"nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?1:2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,15 +56,13 @@ msgstr "După o lună" msgid "After %s days" msgstr "După %s zile" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "_Instalează actualizarile" +msgstr "%s actualizări" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,47 +70,39 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Server principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server pentru %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Cel mai apropiat server" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Servere preferenţiale" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Actualizări software" +msgstr "Canal software" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Activ" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "" -"Binar\n" -"Sursă" +msgstr "(Cod sursă)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "" -"Binar\n" -"Sursă" +msgstr "Cod sursă" #: ../SoftwareProperties/SoftwareProperties.py:969 #, fuzzy @@ -131,11 +122,12 @@ msgid "Error removing the key" msgstr "Eroare la ştergerea cheii." #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -159,27 +151,25 @@ msgid "Broken packages" msgstr "Pachete deteriorate" #: ../DistUpgrade/DistUpgradeCache.py:92 -#, fuzzy msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Sistemul conţine pachete deteriorate care nu au putut fi reparate cu acest " -"program. Înainte de a continua vă rugăm să le remediaţi utilizând synaptic " -"sau apt-get." +"Sistemul dumneavoastră conţine pachete deteriorate care nu au putut fi " +"reparate cu acest program. Înainte de a continua vă rugăm să le remediaţi " +"utilizând synaptic sau apt-get." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "" +msgstr "Este imposibilă actualizarea meta-pachetelor cerute" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "" +msgstr "Un pachet esenţial ar trebui şters" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "Imposibil de calculat actualizarea" #: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" @@ -189,7 +179,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -201,6 +190,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"A fost imposibilă identificarea unor pachete. Acest lucru se poate datora " +"unor probleme temporare pe reţea. Vă recomandăm să reveniţi mai târziu. " +"Dedesubt sunt afişate lista pachetelor neidentificate." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -208,18 +200,16 @@ msgid "Can't install '%s'" msgstr "Nu pot instala '%s'" #: ../DistUpgrade/DistUpgradeCache.py:313 -#, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Nu am reuşit să instalez pachetul cerut. Puteţi raporta acest lucru ca bug " -"(eroare). " +"Nu am reuşit să instalez pachetul cerut. Vă rugăm raportaţi acest lucru ca " +"bug (eroare). " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "" +msgstr "Imposibl de ghicit meta-pachet" #: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy @@ -235,9 +225,8 @@ msgstr "" "sau apt-get." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Nu s-a putut extrage" +msgstr "Adăugarea CD-ului a eşuat" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -248,6 +237,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"A apărut o eroare la adăugarea CD-ului; eroarea se va opri. Vă rugăm " +"raporaţi o eroare dacă acest CD Ubuntu este unul valid.\n" +"\n" +"Mesajul de eroare a fost:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -255,7 +249,7 @@ msgstr "Citire cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Descarc date de la reţea pentru actualizare?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -264,10 +258,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Actualizarea poate cauza reţeaua să verifice ultimele actualizări şi să " +"descarce pachete care nu se găsesc pe CD-ul curent.\n" +"Dacă aveţi o conexiune rapidă sau ieftină ar trebui să răspundeti cu 'Da'. " +"Dacă accesul la reţea este scump pentru dumneavoastră alegeţi 'Nu'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "" +msgstr "Nicio oglindă validă găsită" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -280,11 +278,16 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"În timpul scanării datelor dumneavoastră despre depozit nicio intrare " +"oglindă nu a fost găsită. Acest lucru se poate întâmpla dacă rulaţi o " +"oglindă internă sau daca informaţiile sunt învechite.\n" +"\n" +"Doriţi să rescrieţi fişierul 'sources.list' oricum? Dacă selectaţi 'Da' se " +"vor modifica toate intrările din '%s' în '%s'." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "Generez surse implicite?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -294,20 +297,27 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"După scanarea fişierului 'sources.list' nicio intrare validă pentru '%s' nu " +"a fost găsită.\n" +"\n" +"Ar trebui ca intrările implicite pentru '%s' să fie adăugate? Daca selectaţi " +"'Nu' actualizarea va înceta." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "Informaţii despre depozit nevalide" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"Actualizând informaţiile despre deposit a rezultat într-un fişier nevalid. " +"Vă rugăm să reportaţi acest lucru ca eroare." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "" +msgstr "Sursele terţe ar trebui dezactivate" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -325,6 +335,8 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" +"A apărut o problemă în timpul actualizării. De obicei este legată de reţea, " +"vă rugăm să verificaţi conexiunea dumneavoastra şi să încercaţi din nou." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -337,17 +349,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"Actualizarea se opreşte acum. Vă rugăm să eliberaţi cel puţin %s de spaţiu " +"pe disc pe %s. Goliţi coşul de gunoi şi ştergeţi pachetele temporare de la " +"instalările vechi folosind 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Nu s-au putut instalat upgrade-urile" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -355,22 +369,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"Actualizarea se opreşte acum. Sistemul dumneavoastră ar putea fi într-o " +"stare în care nu funcţionează. O recuperare a fost pornita (dpkg --configure " +"-a).\n" +"Vă rugăm raportaţi această eroare la pachetul 'update-manager' şi includeţi " +"fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Nu pot descărca actualizările" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" +"Actualizarea se opreşte acum. Vă rugăm să verificaţi conexiunea la Internet " +"sau sursa de instalare şi să încercaţi din nou. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -379,67 +400,67 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "Şterg pachetele vechi?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "_Sari peste acest pas" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "Şter_ge" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "" +msgstr "Eroare în timpul salvării" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" +"O problemă a apărut în timpul acţiunii de curăţenie. Vă rugăm vedeţi mesajul " +"de mai jos pentru informaţii suplimentare. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 #, fuzzy msgid "Restoring original system state" msgstr "Se reface starea iniţială a sistemului" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Se pregăteşte actualizarea" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "Actualizez informaţii depozit" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "Informaţii pachet nevalide" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -448,52 +469,54 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"După ce informaţiile despre pachete au fost actualizate pachetul esenţial " +"'%s' nu mai poate fi găsit.\n" +"Aceasta indică o eroare serioasă, vă rugăm raportaţi o eroare la pachetul " +"'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "" +msgstr "Se aşteaptă confirmarea" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Se actualizează" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "Caut software învechit" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "Vă rugăm introduceţi '%s' în unitatea '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" -msgstr "" +msgstr "Descărcare completă" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "Descarc fişierul %li din %li la %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" -msgstr "" +msgstr "Mai rămâne aproximativ %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "Se descarcă fişierul %li din %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Se aplică modificările" @@ -501,15 +524,16 @@ msgstr "Se aplică modificările" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "'%s' nu s-a putut instala" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"Actualizarea se opreşte acum. Vă rugăm raportaţi o eroare la pachetul " +"'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -519,136 +543,149 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "Comanda 'diff' nu a putut fi localizată" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "" +msgstr "S-a produs o eroare fatală" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" +"Vă rugăm raportaţi aceasta ca eroare şi includeţi fişierele /var/log/dist-" +"upgrade/main.log şi /var/log/dist-upgrade/apt.log în raportul dumneavoastră. " +"Actualizarea se orpeşte acum.\n" +"Fişierul iniţial sources.list a fost salvat în " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" +msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" +msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" +msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" +"\n" +"\n" +"Trebuie să descărcaţi un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" +"Descărcarea şi intalarea actualizărilor poate dura câteva ore şi nu poate fi " +"abandonată mai târziu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" +"Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi " +"documentele." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" -msgstr "" +msgstr "Şterge %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" -msgstr "" +msgstr "Instalează %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "" +msgstr "Actualizează %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li zile %li ore %li minute" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li ore %li minute" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minute" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li secunde" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "" +msgstr "Este necesară repornirea" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" +"Actualizarea s-a încheiat şi este necesară repornirea. Doriţi să faceţi " +"acest lucru acum?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -661,14 +698,18 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" +"Anulaţi actualizarea în curs de desfăşurare?\n" +"\n" +"Este posibil ca sistemul să fie inoperabil dacă anulaţi actualizarea. Vă " +"recomandăm să continuaţi actualizarea." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" +msgstr "Reporniţi sistemul pentru a încheia actualizarea" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "" +msgstr "Îcepeţi actualizarea?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" @@ -676,7 +717,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "" +msgstr "Curăţ" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" @@ -684,16 +725,15 @@ msgstr "Detalii" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "Diferenţa dintre fişiere" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Nu s-au putut instalat upgrade-urile" +msgstr "Descarc şi instalez actualizări" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "" +msgstr "Modificând depozitele software" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" @@ -718,19 +758,19 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "_Păstrează" #: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" -msgstr "" +msgstr "_Înlocuieşte" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "_Raportaţi eroare" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "" +msgstr "_Reporneşte acum" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" @@ -743,55 +783,54 @@ msgstr "_Continuă Actualizarea" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "Nu găsesc notiţele de lansare" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "Serverul ar putea fi supraîncărcat. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "Nu pot descărca notiţele de lansare" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." msgstr "Verificaţi conexiunea internet" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "Nu pot rula utilitarul de actualizare" #: ../UpdateManager/DistUpgradeFetcher.py:150 -#, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" -"Acest lucru este cel mai probabil o eroare. Raportaţi acest lucru ca eroare." +"Aceasta este cel mai probabil o eroare. Raportaţi acest lucru ca eroare." #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "" +msgstr "Descarc utiliatul de actualizare" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "Utilitarul de actualizare vă va ghida în procesul de actualizare." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "Actualizează semnătura utilitarului" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "" +msgstr "Actualizează utilitar" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "Descărcare eşuata" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" +"Descărcarea actualizării a eşuat. Ar putea exista o problemă la reţea. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -802,10 +841,12 @@ msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Extragerea actualizării a eşuat. Ar putea exista o problemă cu reţeaua sau " +"cu serverul. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "Verificare eşuată" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" @@ -822,6 +863,8 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" +"Autentificarea actualizării a eşuat. Ar putea exista o problemă cu reţeaua " +"sau cu serverul. " #: ../UpdateManager/GtkProgress.py:108 #, python-format @@ -833,19 +876,18 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Nu există nici un pachet de actualizat." +msgstr "Lista schimbărilor nu este disponibilă" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Nu există nici un pachet de actualizat." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -854,149 +896,141 @@ msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Actualizări de Securitate Ubuntu 5.10" +msgstr "Actualizări importante de securitate" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Actualizări recomandate" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "_Instalează actualizarile" +msgstr "Pachete propuse" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Actualizări de securitate Ubuntu 5.04" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Continuă Actualizarea" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "_Instalează actualizarile" +msgstr "Alte actualizări" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Versiunea %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Se descarcă listă schimbărilor..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "" +msgstr "Dimensiune descărcare: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Puteţi instala actualizarea %s" +msgstr[1] "Puteţi instala actualizarea %s" +msgstr[2] "Puteţi instala actualizarea %s" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "Vă rugăm aşteptaţi, ar putea dura." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "" +msgstr "Actualizare completă." -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "_Instalează actualizarile" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versiunea nouă: %s (Mărime: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Versiunea %s: \n" +msgstr "Versiunea %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Dimensiune: %s)" -#: ../UpdateManager/UpdateManager.py:825 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" -msgstr "Distribuţia dvs. nu mai este suportată" +msgstr "Distribuţia dvs. nu mai este asistată" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" +"Nu veţi mai primi actualizări de securitate sau actualizări obligatorii. " +"Instalaţi o versiune mai nouă a Ubuntu Linux. Vedeţi http://www.ubuntu.com " +"pentru mai multe informaţii legate de actualizare." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Noua versiune '%s' este disponibilă" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "Indexul software este deteriorat" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" +"Instalarea sau ştergerea de software este imposibilă. Vă rugăm să folosiţi " +"managerul de pachete \"Synaptic\" sau rulaţi \"sudo apt-get install -f\" " +"într-un terminal pentru a remedia această problemă." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Nimic" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 msgid "" @@ -1008,7 +1042,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "" +msgstr "Menţineţi sistemul la zi" #: ../data/glade/UpdateManager.glade.h:5 #, fuzzy @@ -1032,15 +1066,15 @@ msgstr "Modificări" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Modificări şi descrierea actualizării" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "" +msgstr "Verific_ă" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "" +msgstr "Verifică depozitele software pentru actualizări noi" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1048,7 +1082,7 @@ msgstr "Descriere" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "" +msgstr "Notiţe de lansare" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1060,7 +1094,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "Afişează progresul pentru fiecare fişier în parte" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" @@ -1071,19 +1105,20 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" +"Actualizările programelor corectează erorile, elimină vulnerabilităţile şi " +"vă pun la dispoziţie opţiuni suplimentare." #: ../data/glade/UpdateManager.glade.h:19 -#, fuzzy msgid "U_pgrade" -msgstr "_Actualizează" +msgstr "A_ctualizează" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "" +msgstr "Instalaţi ultima versiune Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_Verifică" #: ../data/glade/UpdateManager.glade.h:22 #, fuzzy @@ -1092,39 +1127,35 @@ msgstr "_Continuă Actualizarea" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_Nu mai afişa această informaţie pe viitor" #: ../data/glade/UpdateManager.glade.h:24 -#, fuzzy msgid "_Install Updates" -msgstr "_Instalează actualizarile" +msgstr "_Instalează actualizări" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Modificări" +msgstr "modificări" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "actualizări" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Actualizări de pe Internet" +msgstr "Actualizări automate" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Actualizări de pe Internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Actualizări de pe Internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1136,6 +1167,13 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Pentru a îmbunătăţii experienţa Ubuntu vă rugăm să luaţi parte la " +"concursul de popularitate. Dacă faceţi acest lucru lista de software " +"instalat şi frecveţa de folosire vor fi colectate şi trimise anonim către " +"proiectul Ubuntu săptămânal.\n" +"\n" +"Rezultatele sunt folosite pentru îmbunătăţirea asistenţei la aplicaţiile " +"populare şi pentru a ordona aplicaţiile în rezultatele căutărilor." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1147,16 +1185,15 @@ msgstr "Autentificare" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "" +msgstr "Ş_terge fişierele software descărcate:" #: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" -msgstr "" +msgstr "Descarcă din:" #: ../data/glade/SoftwareProperties.glade.h:13 -#, fuzzy msgid "Import the public key from a trusted software provider" -msgstr "Elimină cheia selectată din keyring-ul de încredere." +msgstr "Importă cheia publică de la un furnizor software de încredere" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" @@ -1167,57 +1204,53 @@ msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" +"Doar actualizările de securitate de pe serverele oficiale Ubuntu vor fi " +"instalate automat" #: ../data/glade/SoftwareProperties.glade.h:16 -#, fuzzy msgid "Restore _Defaults" -msgstr "Restaurează cheile implicite." +msgstr "Restaurează _Setări" #: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" -msgstr "" +msgstr "Restaurează cheile iniţiale pentru distribuţia mea" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Preferinţe software" +msgstr "Surse software" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "" -"Binar\n" -"Sursă" +msgstr "Cod sursă" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistici" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Trimite informaţii statistice" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Terţ" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" -msgstr "" +msgstr "_Verifică pentru actualizări automat:" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" -msgstr "" +msgstr "_Descarcă actualizări automat, dar nu le instala" #: ../data/glade/SoftwareProperties.glade.h:25 -#, fuzzy msgid "_Import Key File" -msgstr "Importă cheie" +msgstr "_Importă fişier cheie" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "" +msgstr "_Instalează actualizări de securitate fără confirmare" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" @@ -1261,9 +1294,9 @@ msgstr "" "Introduceţi linia APT completă a locaţiei pe care doriţi să o " "adăugaţi\n" "\n" -"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de exemplu" -"\"deb http://ftp.debian.org sarge main\". Puteţi găsi o descriere " -"detaliată a sintaxei în documentaţie." +"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de " +"exemplu\"deb http://ftp.debian.org sarge main\". Puteţi găsi o " +"descriere detaliată a sintaxei în documentaţie." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1278,45 +1311,40 @@ msgstr "" "Sursă" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "" -"Binar\n" -"Sursă" +msgstr "Editează sursa" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "Scanez CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "" -"Binar\n" -"Sursă" +msgstr "_Adaugă sursă" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" -msgstr "" +msgstr "_Reîncarcă" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "Afişează şi instalează actualizările disponibile" #: ../data/update-manager.desktop.in.h:2 -#, fuzzy msgid "Update Manager" -msgstr "Actualizări Ubuntu 4.10" +msgstr "Manager actualizări" #: ../data/update-manager.schemas.in.h:1 msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" +"Verifică automat dacă o versiune mai nouă a acestei distribuţii este " +"disponibilă şi oferă-te să actualizezi (dacă este posibil)." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "" +msgstr "Verifică pentru lansări noi de distribuţie" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1327,15 +1355,15 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "" +msgstr "Aminteşte-mi să reîncarc lista canalelor" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "Arată detaliile unei actualizări" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" +msgstr "Salvează dimensiunea ferestrei update-manager" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1345,259 +1373,204 @@ msgstr "" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "Dimensiunea ferestrei" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" +msgstr "Configurează sursele pentru software instalabil şi actualizări" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Actualizări Ubuntu 5.10" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Software în contribuţie" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cdrom cu Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Actualizări de securitate Ubuntu 5.04" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Pachete non-libere (Multiverse)" +msgstr "Pachete non-libere" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Pachete non-libere (Multiverse)" +msgstr "Software restricţionat (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Software cu restricţii de export din SUA" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Actualizări de securitate Ubuntu 5.04" +msgstr "Cdrom cu Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Actualizări portate înapoi" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizări Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 -#, fuzzy msgid "Ubuntu 5.10 Backports" -msgstr "Actualizări de securitate Ubuntu 5.04" +msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Actualizări de securitate Ubuntu 5.04" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Actualizări de securitate Ubuntu 5.04" +msgstr "Cdrom cu Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Pachete suportate oficial" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Actualizări de Securitate Ubuntu 5.10" +msgstr "Actualizări de Securitate Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Actualizări Ubuntu 5.10" +msgstr "Actualizări Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Actualizări de securitate Ubuntu 5.04" +msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pachete non-libere (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cdrom cu Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Pachete suportate oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrictiv" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizări de securitate Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Actualizări Ubuntu 5.10" +msgstr "Actualizări Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Actualizări de securitate Ubuntu 5.04" +msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" -msgstr "" +msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizări de securitate Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "" +msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "" +msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "Software compatibil DFSG cu dependenţe negratuite" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "Software incompatibil DFSG" + +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Software cu restricţii de export din SUA" #, fuzzy #~ msgid "Normal updates" @@ -1609,13 +1582,11 @@ msgstr "" #~ msgid "Your system has already been upgraded." #~ msgstr "Sistemul dumneavoastră este actualizat la zi!" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Actualizări de Securitate Ubuntu 5.10" +#~ msgstr "Actualizări importante de securitate pentru Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Se actualizează Ubuntu" +#~ msgstr "Actualizări pentru Ubuntu" #, fuzzy #~ msgid "Oficially supported" @@ -1710,13 +1681,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " -#~ "apăsând pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " +#~ "pe butonul Instalează." #~ msgid "Repository" #~ msgstr "Locaţie" @@ -1736,8 +1707,8 @@ msgstr "" #~ msgstr "" #~ "Chei autentificare\n" #~ "\n" -#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul " -#~ "unei chei estede a permite verificarea integrităţii unui pachet software " +#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul unei " +#~ "chei estede a permite verificarea integrităţii unui pachet software " #~ "descărcat." #~ msgid "A_uthentication" @@ -1745,8 +1716,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Adăugaţi o nouă cheie în keyring-ul de încredere. Asiguraţi-vă că aţi " #~ "obţinut cheia printr-un canal sigur şi că aveţi încredere în proprietarul " @@ -1763,8 +1734,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Restaurează cheile implicite furnizate împreună cu distribuţia. Această " #~ "acţiune nu va influenţa cheile instalate ca utilizator." @@ -1789,8 +1760,8 @@ msgstr "" #~ msgstr "Actualizările sunt în curs de aplicare." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1800,8 +1771,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1824,13 +1795,13 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " -#~ "apăsând pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " +#~ "pe butonul Instalează." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/ru.po b/po/ru.po index 6f5cf049..ff5f15bb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,15 +1,15 @@ # Russian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. -# FIRST AUTHOR , 2006. +# Igor Zubarev , 2006. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-25 19:23+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-03 02:07+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" @@ -18,6 +18,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Ежедневно" @@ -56,57 +57,53 @@ msgstr "Через месяц" msgid "After %s days" msgstr "Через %s дней" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Установить обновления" +msgstr "%s обновлений" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Основной сервер" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Сервер %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Ближайший сервер" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Свои сервера" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Обновления программ" +msgstr "Источник программ" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Активен" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Исходный код)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Исходный код" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -125,12 +122,13 @@ msgid "Error removing the key" msgstr "Ошибка при удалении ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -169,23 +167,22 @@ msgstr "Невозможно обновить требуемые мета-пак msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"При подготовке к обновлению системы возникла неразрешимая проблема. " -"Пожалуйста, отправьте отчет об ошибке. " +"При подготовке к обновлению системы возникла неразрешимая проблема.\n" +"\n" +"Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " +"файлы в /var/log/dist-upgrade/ к отчету." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" @@ -213,13 +210,11 @@ msgstr "" "Невозможно установить необходимый пакет. Пожалуйста, отправьте отчет об " "ошибке. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -229,13 +224,12 @@ msgid "" msgstr "" "Ваша система не содержит пакетов ubuntu-desktop, kubuntu-desktop или " "edubuntu-desktop, поэтому невозможно определить используемую версию Ubuntu.\n" -" Для продолжения сначала установите один из приведенных выше пакетов с " -"помощью synaptic или apt-get." +" Пожалуйста установите один из приведенных выше пакетов с помощью synaptic " +"или apt-get." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Не удалось получить" +msgstr "Не удалось добавить CD" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -246,6 +240,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"При добавлении CD произошла ошибка, обновление будет прервано. Пожалуйста " +"сообщите об ошибке, если это был годный Ubuntu CD\n" +"\n" +"Сообщение об ошибке:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -253,7 +252,7 @@ msgstr "Чтение кэша" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Получить из сети данные для обновления?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -262,6 +261,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Программа обновления может использовать сеть для проверки последних " +"обновлений и для получения пакетов, отсутствующих на текущем CD\n" +"Если у вас быстрое и недорогое подключение к сети, то ответь 'Да'. Если " +"подключение дорогое для вас, ответьте 'Нет'." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -286,7 +289,6 @@ msgstr "" "обновлены все записи '%s' на '%s'.\n" "Ответ 'Нет' отменит обновление." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" @@ -299,8 +301,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"В результате просмотра 'sources.list' не найдена действующая запись для '%" -"s'.\n" +"В результате просмотра 'sources.list' не найдена действующая запись для " +"'%s'.\n" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." @@ -321,13 +323,12 @@ msgid "Third party sources disabled" msgstr "Источники третьих сторон отключены" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"Некоторые источники третьих сторон в souces.list были отключены. После " +"Некоторые источники третьих сторон в sources.list были отключены. После " "обновления вы можете снова включить их с помощью утилиты 'software-" "properties' или synaptic." @@ -358,17 +359,15 @@ msgstr "" "%s. Очистите вашу корзину и удалите временные пакеты, оставшиеся от " "предыдущих установок с помощью команды 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Невозможно установить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -377,13 +376,16 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Обновление прервано. Система, возможно, находится в неработоспособном " -"состоянии. Запущено восстановление системы (dpkg --configure -a)." +"состоянии. Запущено восстановление системы (dpkg --configure -a).\n" +"\n" +"Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " +"файлы в /var/log/dist-upgrade/ к отчету." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Невозможно загрузить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,12 +393,11 @@ msgstr "" "Обновление прервано. Проверьте соединение с Интернет или установочный диск и " "попробуйте снова. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Некоторые программы больше не поддерживаются" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -404,29 +405,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Эти установленные пакеты больше не поддерживаются официально. Теперь их " -"поддержкой занимается только сообщество ('universe').\n" +"Эти пакеты больше не поддерживаются Canonical Ltd. Теперь их поддержкой " +"занимается сообщество.\n" "\n" -"Если у вас не подключен репозиторий 'universe', на следующем шаге вам " -"предложат удалить эти пакеты. " +"Если у вас не подключен репозиторий сообщества (universe), на следующем шаге " +"вам предложат удалить эти пакеты." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "_Пропустить этот шаг" +msgstr "Пропустить этот шаг" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "_Удалить" +msgstr "Удалить" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Ошибка при фиксировании" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,48 +435,42 @@ msgstr "" "При очистке возникла проблема. Более полная информация приведена в сообщении " "ниже. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Загрузка '%s' из репозитария backports" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Подготовка обновления" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"При подготовке к обновлению системы возникла неразрешимая проблема. " -"Пожалуйста, отправьте отчет об ошибке. " -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Обновление информации о репозитории" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Неверная информация о пакете" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -483,56 +478,53 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"После обновления информации о пакетах, важный пакет '%s' не может быть " -"найден.\n" -"Это говорит о серьезной проблеме, пожалуйста отправьте отчет об ошибке." +"После обновления информации о пакетах не найден важный пакет '%s'.\n" +"Это серьёзная проблема, пожалуйста, сообщите об ошибке пакета 'update-" +"manager', включив в отчёт об ошибке файлы, лежащие в /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Запрос подтверждения" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Обновление" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Обновление системы завершено." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Пожалуйста, вставьте '%s' в устройство '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Обновление завершено" +msgstr "Загрузка завершена" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Загрузка файла %li из %li со скоростью %s/с" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Осталось приблизительно %li минут" +msgstr "Осталось приблизительно %s минут" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Загрузка файла %li из %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Применение изменений" @@ -547,145 +539,146 @@ 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 bugreport." msgstr "" +"Обновление прервано. Пожалуйста сообщите об ошибке в пакете 'update-manager' " +"и включите файлы, находящиеся в /var/log/dist-upgrade/ в сообщение об ошибке" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Заменить конфигурационный файл\n" +"Заменить изменённый конфигурационный файл\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Не найдена команда 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Произошла неисправимая ошибка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Пожалуйста отправьте отчет об ошибке и включите в него файлы /var/log/dist-" +"Пожалуйста, отправьте отчет об ошибке и включите в него файлы /var/log/dist-" "upgrade.log и /var/log/dist-upgrade-apt.log. Обновление прервано.\n" -"Оригинальный sources.list был сохранен как /etc/apt/sources.list.distUpgrade." +"Оригинальный файл sources.list был сохранен как " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s пакет будет удален." -msgstr[1] "%s пакета будут удалены." -msgstr[2] "%s пакетов будут удалены." +msgstr[0] "%d пакет будет удален." +msgstr[1] "%d пакета будут удалены." +msgstr[2] "%d пакетов будут удалены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s новый пакет будет установлен." -msgstr[1] "%s новых пакета будут установлены." -msgstr[2] "%s новых пакетов будут установлены." +msgstr[0] "%d новый пакет будет установлен." +msgstr[1] "%d новых пакета будут установлены." +msgstr[2] "%d новых пакетов будут установлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s пакет будет обновлен." -msgstr[1] "%s пакета будут обновлены." -msgstr[2] "%s пакетов будут обновлены." +msgstr[0] "%d пакет будет обновлен." +msgstr[1] "%d пакета будут обновлены." +msgstr[2] "%d пакетов будут обновлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Всего требуется загрузить %s." +msgstr "" +"\n" +"\n" +"Всего требуется загрузить %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"Обновление может занять несколько часов и не может быть прервано в любой " -"момент." +"Загрузка и установка обновлений может занять несколько часов и не может быть " +"прервано в любой момент." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Для вашей системы не доступно ни одно обновление. Обновление будет отменено." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Удалить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Установить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Обновить %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Осталось приблизительно %li дней %li часов %li минут" +msgstr "%li дней %li часов %li минут" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Осталось приблизительно %li часов %li минут" +msgstr "%li часов %li минут" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li минут" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li секунд" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -695,12 +688,12 @@ msgstr "Требуется перезагрузка" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" +msgstr "" +"Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -728,7 +721,7 @@ msgstr "Начать обновление?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Обновление Ubuntu до версии 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -743,13 +736,12 @@ msgid "Difference between the files" msgstr "Различие между файлами" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Загрузка и установка обновлений" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "Изменение каналов приложений" +msgstr "Изменение источников приложений" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" @@ -764,9 +756,8 @@ msgid "Terminal" msgstr "Терминал" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Продолжить обновление" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -774,28 +765,27 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "_Оставить" +msgstr "Оставить" #: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" -msgstr "_Заменить" +msgstr "Заменить" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "_Отправить сообщение об ошибке" +msgstr "Отправить сообщение об ошибке" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "Перезапустить _сейчас" +msgstr "Перезапустить сейчас" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "_Продолжить обновление" +msgstr "Продолжить обновление" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Продолжить обновление" +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -813,7 +803,6 @@ msgstr "Не могу загрузить сведения о релизе" msgid "Please check your internet connection." msgstr "Пожалуйста, проверьте соединение с интернет." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Невозможно запустить утилиту обновления" @@ -866,7 +855,6 @@ msgid "Verfication failed" msgstr "Проверка не удалась" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " @@ -887,96 +875,78 @@ msgstr "" "сети или на сервере. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Загрузка файла %li из %li со скоростью %s/с" +msgstr "Загрузка файла %(current)li из %(total)li со скоростью %(speed)s/с" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Загрузка файла %li из %li со скоростью %s/с" +msgstr "Загрузка файла %(current)li из %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" -"На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." +msgstr "Список изменений недоступен или отсутствует." -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Не удалось загрузить список изменений. Пожалуйста, проверьте соединение с " -"интернет." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Обновления безопасности Ubuntu 5.10" +msgstr "Важные обновления безопасности" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Рекомендованые обновления" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Установить обновления" +msgstr "Предлагаемые обновления" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Бэкпорты" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_Продолжить обновление" +msgstr "Обновления дистрибутива" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Установить обновления" +msgstr "Прочие обновления" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Версия %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "Загрузка списка изменений..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "Сбросить все" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "Проверить" +msgstr "Проверить все" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Размер загружаемых данных: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -984,40 +954,38 @@ msgstr[0] "Вы можете установить %s обновление" msgstr[1] "Вы можете установить %s обновления" msgstr[2] "Вы можете установить %s обновлений" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Пожалуйста подождите, это может занять некоторое время." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Обновление завершено" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Установить обновления" +msgstr "Проверка наличия обновлений" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Новая версия: %s (Размер: %s)" +msgstr "С версии %(old_version)s на %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Версия %s: \n" +msgstr "Версия %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Размер: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Ваша версия Ubuntu больше не поддерживается" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1027,17 +995,16 @@ msgstr "" "обновления. Обновите систему до более поздней версии Ubuntu Linux. Для " "получения информации об обновлении посетите http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Индекс программ поврежден" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1047,57 +1014,48 @@ msgstr "" "используйте менеджер пакетов \"Synaptic\" или запустите в терминале \"sudo " "apt-get install -f\"." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Нет" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 Кб" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f Кб" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f Мб" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Вы должны проверить обновления вручную\n" +"Вы должны проверить наличие обновлений вручную\n" "\n" -"Ваша система не проверяет обновления автоматически. Это настраивается в " -"\"Система\" -> \"Администрирование\" -> \"Параметры приложений\"." +"Ваша система не проверяет наличие обновлений автоматически. Это " +"настраивается в Источники приложений на вкладке Обновления в " +"Интернет." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Не забывайте обновлять систему" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Ошибка при сканировании CD\n" -"\n" -"%s" +msgstr "Не удается установить все обновления" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Начать обновление?" +msgstr "Запуск менеджера обновлений" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1105,15 +1063,15 @@ msgstr "Изменения" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Изменения и описание обновления" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "_Проверить" +msgstr "Проверить" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Проверить каналы приложений на наличие обновлений" +msgstr "Проверить источники приложений на наличие обновлений" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1130,6 +1088,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Для установки максимального числа обновлений, запустите обновление " +"дистрибутива.\n" +"\n" +"Это может быть вызвано незавершенным обновлением, нестандартными программами " +"или использованием бета-версии." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1160,9 +1123,8 @@ msgid "_Check" msgstr "Проверить" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Продолжить обновление" +msgstr "Обновление дистрибутива" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1173,31 +1135,28 @@ msgid "_Install Updates" msgstr "Установить обновления" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Изменения" +msgstr "изменения" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "обновления" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Обновления в Интернет" +msgstr "Автоматические обновления" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Обновления в Интернет" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Обновления в Интернет" +msgstr "Интернет" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1209,11 +1168,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Для улучшения удобства использования Ubuntu, пожалуйста примите участие в " +"создании рейтинга популярности. Если вы это сделаете, список установленных " +"приложений и частоты их использования будет еженедельно создаваться и " +"анонимно отправляться в проект Ubuntu.\n" +"\n" +"Результаты используются для улучшения поддержки наиболее популярных " +"приложений и оценки рейтинга приложений в результатах поиска." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Добавить _Cdrom" +msgstr "Добавить Cdrom" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1224,9 +1189,8 @@ msgid "D_elete downloaded software files:" msgstr "Удалить загруженные файлы программ:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Загрузка завершена" +msgstr "Загрузить с:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1254,34 +1218,32 @@ msgstr "Восстановить исходные ключи вашего дис #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Параметры приложений" +msgstr "Источники приложений" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Исходный код" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Статистика" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Отправлять статистику" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Сторонние производители" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "Автоматически проверять наличие обновлений:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "Загружать обновления в фоне, но не устанавливать их" +msgstr "Автоматически загружать обновления, но не устанавливать их" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1292,7 +1254,6 @@ msgid "_Install security updates without confirmation" msgstr "Устанавливать обновления безопасности без запроса" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1301,10 +1262,10 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Информация о каналах устарела\n" +"Информация о программном обеспечении устарела\n" "\n" -"Вам следует загрузить информацию о каналах для установки программ и " -"обновлений из добавленных или измененных каналов.\n" +"Для установки программ и обновлений из новых или изменённых источников нужно " +"скачать информацию о доступном программном обеспечении.\n" "\n" "Для продолжения требуется действующее подключение к Интернет." @@ -1329,7 +1290,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1337,11 +1297,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Введите полную строку APT канала, который вы хотите добавить\n" +"Введите полную APT-строку репозитория, который вы хотите добавить " +"как источник\n" "\n" -"Строка APT состоит из типа, расположения и компонентов канала, например " -"\"deb http://ftp.debian.org sarge main\"." +"APT-строка состоит из типа, расположения и компонентов репозитория, например " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1357,7 +1317,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Редактировать источник" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1365,7 +1325,7 @@ msgstr "Просмотр CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "Добавить источник" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1392,19 +1352,18 @@ msgid "Check for new distribution releases" msgstr "Проверить на наличие новых релизов дистрибутива" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" "Если автоматическая проверка обновлений отключена, вам придется обновлять " -"список каналов вручную. Этот параметр позволяет скрыть показываемое в данном " -"случае напоминание." +"список источников вручную. Этот параметр позволяет скрыть показываемое в " +"данном случае напоминание." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "Напоминать обновить список каналов" +msgstr "Напоминать обновить список источников" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1415,267 +1374,237 @@ msgid "Stores the size of the update-manager dialog" msgstr "Хранит размер окна менеджера обновлений" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" -msgstr "Хранит состояние экспандера, содержащего список изменений и описание" +msgstr "Хранит состояние экспандера, содержащего описание и список изменений" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "Размен окна" +msgstr "Размер окна" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Настроить каналы программ и обновления из интернет" +msgstr "Настроить источники установки программ и обновлений" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Обновления Ubuntu 5.10" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Поддерживается сообществом (Universe)" +msgstr "Поддерживается сообществом" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Проприетарные драйвера устройств" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Несвободное (Multiverse)" +msgstr "Несвободное ПО" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CDROM с Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Поддерживается сообществом (Universe)" +msgstr "Поддерживается сообществом (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Поддерживается сообществом (Universe)" +msgstr "Поддерживаемое сообществом свободное ПО" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Несвободное (Multiverse)" +msgstr "Несвободные драйвера" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Проприетарные драйвера устройств " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Несвободное (Multiverse)" +msgstr "Несвободное обеспечение (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "CD с Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Обновления в бэкпортах" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "CD с Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Обновления Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 5.10 бэкпорты" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "CD с Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официально поддерживается" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Обновления безопасности Ubuntu 5.10" +msgstr "Обновления безопасности Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Обновления Ubuntu 5.10" +msgstr "Обновления Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 5.04 бэкпорты" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддерживается сообществом (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободное (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "CD с Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Некоторые программы больше не поддерживаются официально" +msgstr "Официально больше не поддерживается" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограниченные авторские права" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Обновления безопасности Ubuntu 5.10" +msgstr "Обновления безопасности Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Обновления Ubuntu 5.10" +msgstr "Обновления Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Ubuntu 4.10 бэкпорты" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Обновления безопасности Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-совместимое ПО с зависимостями от несвободного ПО" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" +#~ msgid "" +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." +#~ msgstr "" +#~ "Если вы замените файл его поздней версией, вы потеряете все изменения " +#~ "сделанные вами или скриптами." + +#, python-format +#~ msgid "" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" +#~ msgstr "" +#~ "Скачивание займёт примерно %s при 56к модеме и примерно %s при 1Мбит DSL-" +#~ "подключении" + +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "" +#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." + +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "" +#~ "Не удалось загрузить список изменений. Пожалуйста, проверьте соединение с " +#~ "интернет." + +#~ msgid "By Canonical supported Open Source software" +#~ msgstr "Открытое программное обеспечение, поддерживаемое Canonical" + +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "" +#~ "Программное обеспечение, ограниченное копирайтом или другими правовыми " +#~ "проблемами" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Загрузка файла %li из %li с неизвестной скоростью" @@ -1695,20 +1624,16 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgid "Your system has already been upgraded." #~ msgstr "Система уже обновлена." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Обновление до Ubuntu 6.06 LTS" +#~ "Обновление до Ubuntu 6.10" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Обновления безопасности Ubuntu 5.10" +#~ msgstr "Важные обновления безопасности для Ubuntu" -#, fuzzy #~ msgid "Updates of Ubuntu" -#~ msgstr "Обновить систему до последней версии Ubuntu" +#~ msgstr "Обновления для Ubuntu" #~ msgid "Cannot install all available updates" #~ msgstr "Невозможно установить все доступные обновления" @@ -1730,17 +1655,17 @@ msgstr "Не-DFSG-совместимое ПО" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Некоторые обновления требуют удаления других приложений. Для полного " -#~ "обновления системы используйте функцию \"Пометить все обновления\" " -#~ "менеджера пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get " -#~ "dist-upgrade\"." +#~ "обновления системы используйте функцию \"Пометить все обновления\" менеджера " +#~ "пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get dist-upgrade\"." #~ msgid "The following updates will be skipped:" #~ msgstr "Следующие обновления будут пропущены:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Осталось приблизительно %li секунд" @@ -1797,9 +1722,11 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgid "Edit Channel" #~ msgstr "Изменить канал" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "Добавить канал" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "Добавить канал" +#~ msgstr[1] "Добавить каналы" +#~ msgstr[2] "Добавить каналы" #~ msgid "_Custom" #~ msgstr "_Выбрать" @@ -1814,4 +1741,4 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgstr "Обновления Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/rw.po b/po/rw.po index f99464e5..d3e86628 100644 --- a/po/rw.po +++ b/po/rw.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:44+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" "MIME-Version: 1.0\n" @@ -63,15 +63,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Kwinjiza porogaramu" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -81,7 +79,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -136,7 +133,8 @@ msgstr "i Urufunguzo" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -173,7 +171,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -185,9 +182,8 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " +msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -211,7 +207,6 @@ msgid "" "bug. " msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -271,7 +266,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -329,16 +323,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,21 +340,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -370,67 +363,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy msgid "Checking package manager" msgstr "Muyobozi ni" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy 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/dist-" "upgrade/ in the bugreport." -msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " +msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -440,24 +431,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 #, fuzzy msgid "Upgrading" msgstr "Byarangiye" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -473,7 +463,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -485,7 +475,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -502,7 +491,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -512,47 +500,46 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -560,40 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -619,12 +605,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -639,7 +624,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -750,7 +734,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -826,19 +809,19 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "ni a Gishya Bya Bihari" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "ni a Gishya Bya Bihari" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -846,143 +829,133 @@ msgid "" msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "5" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "5" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "Byarangiye" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:460 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:462 +#, fuzzy msgid "Version %s: \n" msgstr "Verisiyo \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Iyimura... i" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Verisiyo \n" +msgstr "Verisiyo" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ikwirakwiza... ni Oya" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1327,257 +1300,215 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Kohereza Nta gukoresha bisesuye" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Kigenga" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Kigenga" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Kohereza Nta gukoresha bisesuye" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 #, fuzzy msgid "Non-free (Multiverse)" msgstr "Kigenga" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "Uburenganzira bw'umuhimbyi" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "5" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "4. 10" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Kohereza Nta gukoresha bisesuye" + #, fuzzy #~ msgid "Normal updates" #~ msgstr "Kwinjiza porogaramu" @@ -1700,8 +1631,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "> Ukoresha: Utubuto" @@ -1788,8 +1719,7 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "i Bya i Igikorwa Nka gukora iyinjizaporogaramu:%s Cyangwa ni Bya ngombwa " #~ "Gukoresha Cyangwa Kubona Kuri i" @@ -1804,8 +1734,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1820,16 +1750,16 @@ msgstr "" #, fuzzy #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi " -#~ "Ibyangombwa HTTP www org kugirango Ibisobanuro" +#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi Ibyangombwa " +#~ "HTTP www org kugirango Ibisobanuro" #, fuzzy #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "A Gishya Na: i ni Bihari HTTP www org kugirango Amabwiriza" #, fuzzy @@ -1838,8 +1768,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1868,4 +1798,4 @@ msgstr "" #, fuzzy #~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "com" +#~ msgstr "com" \ No newline at end of file diff --git a/po/sk.po b/po/sk.po index ae65ae2c..f8f2a15c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-24 17:32+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "Každý druhý deň" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "Raz týždenne" +msgstr "Raz za týždeň" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" @@ -55,34 +55,31 @@ msgstr "Po mesiaci" msgid "After %s days" msgstr "Po %s dňoch" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Nainštalovať _aktualizácie" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, python-format +#, fuzzy msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "Server pre %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Najbližší server" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" @@ -126,11 +123,12 @@ msgid "Error removing the key" msgstr "Chyba pri odstraňovaní kľúča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Nemôžem aktualizovať požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" @@ -182,9 +179,8 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " -"ako chybu. " +"ako chybu." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" @@ -210,7 +206,6 @@ msgid "" "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." @@ -283,7 +278,6 @@ msgstr "" "nahradené všetky '%s' záznamy '%s' záznamami.\n" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" @@ -296,8 +290,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre '%" -"s'.\n" +"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre " +"'%s'.\n" "\n" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." @@ -356,16 +350,15 @@ msgstr "" "vyprázdnením svojho kôša, prípadne odstránením dočasných inštalačných " "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +370,11 @@ msgstr "" "Aktualizácia teraz skončí. Váš systém môže byť v nepoužiteľnom stave, preto " "bol spustený príkaz na zotavenie sa z tohto stavu (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť požadované balíky" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +382,11 @@ msgstr "" "Aktualizácia bola neočakávane prerušená. Skontrolujte svoje internetové " "pripojenie alebo inštalačné médiá a skúste znova. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -406,25 +399,25 @@ msgstr "" "sa o ne komunita.\n" "\n" "Pokiaľ nemáte zapnutý komunitou spravovaný zdroj softvéru 'universe', budú " -"tieto balíky v ďalšom kroku navrhnuté na odstránenie. " +"tieto balíky v ďalšom kroku navrhnuté na odstránenie." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Preskočiť tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Odstrániť" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,29 +425,27 @@ msgstr "" "Počas čistenia sa vyskytli problémy. Pre viac informácií si pozrite nižšie " "uvedené správy. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Kontrola správcu balíkov" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Prebieha príprava aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -462,18 +453,18 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " -"ako chybu. " +"ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Aktualizácia informácií o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -481,27 +472,26 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík '%" -"s'.\n" +"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík " +"'%s'.\n" "To znamená závažný problém. Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Požaduje sa potvrdenie" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Prebieha aktualizácia" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -513,24 +503,23 @@ msgid "Fetching is complete" msgstr "Aktualizácia je dokončená" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, fuzzy msgid "About %s remaining" msgstr "Zostáva %li minút" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Sťahujem %li súbor z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikujem zmeny" @@ -546,9 +535,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -558,112 +546,114 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Príkaz 'diff' nebol nájdený." -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Nastala závažná chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nahláste to ako chybu a k svojmu hláseniu priložte súbory /var/log/dist-" "upgrade.log a /var/log/dist-upgrade-apt.log. Aktualizácia bude teraz " "prerušená.\n" -"Váš pôvodný súbor 'sources.list' bol uložený ako /etc/apt/sources.list." -"distUpgrade." +"Váš pôvodný súbor 'sources.list' bol uložený ako " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bude odstránený %s balík." msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bude nainštalovaný %s nový balík." msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bude aktualizovaný %s balík." msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Musíte stiahnuť celkom %s." +msgstr "" +"\n" +"\n" +"Musíte stiahnuť celkom %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." +msgstr "" +"Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Odstrániť %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Inštalovať %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Aktualizovať %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Zostáva %li dní %li hodín %li minút" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Zostáva %li hodín %li minút" @@ -678,12 +668,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -700,7 +689,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -813,7 +801,6 @@ msgstr "Nebolo možné stiahnuť poznámky k vydaniu" msgid "Please check your internet connection." msgstr "Skontrolujte si internetové pripojenie." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nebolo možné spustiť aktualizačný program" @@ -887,28 +874,28 @@ msgstr "" "problémom alebo nedostupňosťou servera. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Sťahovanie súboru %li z %li pri %s/s" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Zoznam zmien ešte nie je k dispozícii. Skúste neskôr." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Zoznam zmien ešte nie je k dispozícii. Skúste neskôr." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -917,64 +904,60 @@ msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Nainštalovať _aktualizácie" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Ubuntu 5.10 - backporty" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "_Pokračovať v aktualizácii" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Nainštalovať _aktualizácie" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Verzia %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Získava sa zoznam zmien..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 #, fuzzy msgid "_Check All" msgstr "_Skontrolovať" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "Veľkosť na stiahnutie: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -982,40 +965,39 @@ msgstr[0] "Môžete nainštalovať %s aktualizáciu" msgstr[1] "Môžete nainštalovať %s aktualizácie" msgstr[2] "Môžete nainštalovať %s aktualizácií" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "Čakajte prosím, toto môže chvíľu trvať." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Aktualizácia je dokončená" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Kontrolujem aktualizácie..." -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verzia: %s (veľkosť: %s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Verzia %s: \n" +msgstr "Verzia %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Vaša distribúcia už nie je podporovaná" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -1023,20 +1005,19 @@ msgid "" msgstr "" "Nebudete mať k dispozícii žiadne nové bezpečnostné ani kritické " "aktualizácie. Prejdite preto na najnovšiu verziu distribúcie Ubuntu Linux. " -"Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." -"com.\"" +"Pre viac informácií o prechode na novšiu verziu si pozrite " +"http://www.ubuntu.com.\"" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "K dispozícii je nové vydanie distribúcie '%s'" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "Index softvéru je poškodený" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " @@ -1046,27 +1027,24 @@ msgstr "" "Na odstránenie tohto problému použite správcu balíkov 'Synaptic' alebo " "spustite 'sudo apt-get install -f' v termáli." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 +#, fuzzy msgid "None" -msgstr "" +msgstr "Žiadna" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1339,11 +1317,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete pridať\n" +"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " +"pridať\n" "\n" -"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " -"\"deb·http://ftp.debian.org·sarge·main\"." +"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " +"\"deb·http://ftp.debian.org·sarge·main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1435,254 +1413,215 @@ msgstr "Veľkosť okna" msgid "Configure the sources for installable software and updates" msgstr "Nastaviť zdroje softvéru a internetové aktualizácie" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 - aktualizácie" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Udržiavané komunitou (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Softvér závislý na neslobornom softvéri" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Udržiavané komunitou (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neslobodné (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neslobodné (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Softvér s obmedzených exportom pre USA" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 - aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 - backporty" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálne podporované" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 - aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 - backporty" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodné (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Niektoré programy už nie sú viac oficiálne podporované" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "S obmedzujúcou licenciou" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 - backporty" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Softvér kompatibilný s DFSG bez závislostí na neslobodnom softvére" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Softvér s obmedzených exportom pre USA" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" @@ -1706,8 +1645,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Prebieha aktualizácia na Ubuntu " -#~ "6.06 LTS" +#~ "Prebieha aktualizácia na Ubuntu 6.06 " +#~ "LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1736,17 +1675,18 @@ msgstr "Softvér nekompatibilný s DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste " -#~ "vykonali úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie" -#~ "\" správcu balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade" -#~ "\" v termináli." +#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste vykonali " +#~ "úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie\" správcu " +#~ "balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade\" v " +#~ "termináli." #~ msgid "The following updates will be skipped:" #~ msgstr "Nasledujúce balíky nebudú aktualizované:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zostáva %li sekúnd" @@ -1801,9 +1741,11 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "Edit Channel" #~ msgstr "Upraviť zdroje" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Pridať zdroj" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Pridať zdroj" +#~ msgstr[1] "_Pridať zdroje" +#~ msgstr[2] "_Pridať zdroje" #~ msgid "_Custom" #~ msgstr "_Vlastný" @@ -1827,15 +1769,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Nebol nájdený žiadny platný záznam" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na " -#~ "použitie pre upgrade.\n" +#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na použitie " +#~ "pre upgrade.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Upgrade neočakávane skončil. Váš systém môže byt v nestabilnom stave. Pre " #~ "opravu skúste teraz spustiť (dpkg --configure -a)." @@ -1844,8 +1786,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log " -#~ "a ~/dist-upgrade-apt.log. Upgrade teraz skončí. " +#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log a " +#~ "~/dist-upgrade-apt.log. Upgrade teraz skončí. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1860,14 +1802,14 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených " -#~ "vo vašich zdrojoch softvéru. Chcete to urobiť teraz?" +#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených vo " +#~ "vašich zdrojoch softvéru. Chcete to urobiť teraz?" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analyzuje sa váš systém\n" #~ "\n" @@ -1875,8 +1817,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Softvérové aktualizácie môžu opravovať chyby, odstraňovať bezpečnostné " #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." @@ -1887,15 +1829,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "installed therefor" #~ msgstr "" #~ "Automaticky budú inštalované len bezpečnostné aktualizácie z oficiálnych " -#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček " -#~ "'unattended-upgrades'." +#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček 'unattended-" +#~ "upgrades'." #~ msgid "Sections" #~ msgstr "Sekcie:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1903,8 +1845,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " #~ "pridať\n" #~ "\n" -#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " -#~ "\"deb·http://ftp.debian.org·sarge·main\"." +#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " +#~ "\"deb·http://ftp.debian.org·sarge·main\"." #~ msgid "Sections:" #~ msgstr "Sekcie:" @@ -1936,8 +1878,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "umožňuje overiť integritu stiahnutého softvéru." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Pridať nový kľúč do zväzku dôveryhodných kľúčov. Uistite sa, že ste kľúč " #~ "dostali bezpečnou cestou, a že môžete veriť jeho vydavateľovi. " @@ -1967,8 +1909,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Maximálna veľkosť archívu na disku (v MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Obnoví pôvodné kľúče dodávané s vašou distribúciou. Toto neovplyvní " #~ "používateľom nainštalovnané kľúče." @@ -2000,8 +1942,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostupné aktualizácie\n" #~ "\n" @@ -2082,8 +2024,7 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr[2] "Vybrali ste %s balíkov na aktualizáciu, veľkosť %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[1] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[2] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" @@ -2092,8 +2033,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Práve prebieha aktualizácia." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Môžete mať spustenú najviac jednu aplikáciu na správu balíkov. Prosím, " #~ "najprv zavrite druhú aplikáciu." @@ -2106,8 +2047,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Prejdite prosím, na novšiu verziu distribúcie Ubuntu Linux. Verzia, ktorú " #~ "používate nie je viac podporovaná. To znamená, že už nie sú k dispozícii " @@ -2118,12 +2059,12 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Bola nájdená novšia verzia Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". " -#~ "Pre viac informácií o prechode na vyššiu verziu si pozrite http://www." -#~ "ubuntulinux.org." +#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". Pre " +#~ "viac informácií o prechode na vyššiu verziu si pozrite " +#~ "http://www.ubuntulinux.org." #~ msgid "Never show this message again" #~ msgstr "Už viac nezobrazovať toto upozornenie" @@ -2136,4 +2077,4 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "A_utentifikácia" #~ msgid "Packages to install:" -#~ msgstr "Balíky na inštaláciu:" +#~ msgstr "Balíky na inštaláciu:" \ No newline at end of file diff --git a/po/sl.po b/po/sl.po new file mode 100644 index 00000000..dc01145c --- /dev/null +++ b/po/sl.po @@ -0,0 +1,1466 @@ +# Slovenian translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-08-01 13:08+0000\n" +"Last-Translator: Tadej \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Dnevno" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Vsaka dva dneva" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Tedensko" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Vsaka dva tedna" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Vsakih %s dni" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Po enem tednu" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Po dveh tednih" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Po enem mesecu" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Po %s dnevih" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Uvozi ključ" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Napaka pri uvozu izbrane datoteke" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "Izbrana datoteka verjetno ni GPG ključ ali pa je morda pokvarjena" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Napaka pri odstranitvi kluča" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Kluč, katerega ste izbrali, se ne more odstraniti. Prosim, javite to kot " +"napako." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Prosim, vnesite ime za ta disk" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "Prosim, vstavite disk v pogon" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Pokvarjeni paketi" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" +"Vaš sistem vsebuje pokvarjene pakete, ki se ne morejo obnoviti s to " +"programsko opremo. \n" +"Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " +"nadaljujete." + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "Ne morem nadgraditi zahtevanih meta-paketov" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "Bistven paket se bo moral odstraniti" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "Ne morem izračunati nadgradnje" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "Napaka pristnosti nekaterih paketov" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" +"Nekaterih paketov ni bilo mogoče preveriti. Napaka je lahko pri začasnem " +"omrežju. Morda poskusite kasneje. Spodaj poglejte seznam nepreverjenih " +"paketov." + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, fuzzy +msgid "Can't install '%s'" +msgstr "Ne morem namestiti '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Nemogoče je bilo namestiti zahtevani paket. Prosim, javite to kot napaka. " + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "Ne morem ugibati meta-paketa" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "Berem zalogo" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "Najdena neveljavna zrcalnost" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" +"Med preverjanjem vaših shranjenih informacij, ni bil najden noben zrcalni " +"vnos za nadgradnjo\n" +"To se lahko pripeti, če zaženete notranje zrcaljenje ali pa je zrcalna " +"informacija zastarala.\n" +"\n" +"Ali želite kljub temu prepisati vašo 'sources.list' datoteko? Če tukaj " +"izberete 'Yes', vam bo posodobilo vse vhode iz '%s' v '%s'.\n" +"Če izberete 'no', se bo posodobitev prekinila." + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "Proizvedem pomanjkljive izvore?" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" +"Po pregledu vaše 'sources.list', ni bilo najdenega nobenega vnosa za '%s'.\n" +"\n" +"Se naj dodajo pomanjkljivi vnosi za '%s'? Če izberete 'No', se bo " +"posodabljanje prekinilo." + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "Neveljavna shranjena informacija" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" +"Nadgradnja shranjene informacije je zaključena kot neveljavna datoteka. " +"Prosim, javite to kot napaka." + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "Izvor tretje skupine izključen" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "Napaka med posodobitvijo" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" +"Med posodobitvijo je prišlo do napake. Ponavadi je to lahko omrežna napaka, " +"prosim, da preverite vaše omrežje in poskusite znova." + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "Premalo prostora na disku" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" +"Nadgradnja se bo sedaj prekinila. Prosim, zagotovite najmanj %s prostega " +"prostora na %s. Izpraznite koš in odstranite začasne pakete prejšnjih " +"namesitev z uporabo 'sudo apt-get clean'." + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "Želite pričeti z nadgradnjo?" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "Ne morem namestiti nadgradenj." + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "Ne morem sneti nadgradenj" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" +"Nadgradnja sedaj končuje. Prosim, preverite internetno povezavo ali " +"namestitveni medij in poizkusite znova. " + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "Odstranim neuporabne pakete?" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "_Preskoči ta korak" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "_Odstrani" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "Napaka med izvedbo" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" +"Med čiščenjem je prišlo do problema. Prosim, poglejte sporočilo spodaj za " +"več informacij. " + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "Preverjam paketni upravitelj" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "Posodabljam shranjeno informacijo" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "Neveljavna paketna informacija" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "Sprašujem za potrditev" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "Nadgrajevanje" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "Nadgrajevanje sistema je dokončano" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "Odstrani %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "Namesti %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "Nadgradi %s" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "Potreben je ponoven zagon" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "Nadgrajevanje je končano in potreben je ponoven zagon" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr " " + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "Ponovno zaženite sistem da dokončate nadgradnjo" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "Pripravljam nadgradnjo" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "Ponovno zaganjam sistem" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "Terminal" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "_Obdrži" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "_Zamenjaj" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "_Poročaj hrošča" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "_Ponovno zaženi zdaj" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "_Nadaljuj nadgradnjo" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "Ni bilo mogoče najti zapiskov ob izdaji" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "Različica %s: \n" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "Velikost prenosa: %s" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/sq.po b/po/sq.po new file mode 100644 index 00000000..42f6ef44 --- /dev/null +++ b/po/sq.po @@ -0,0 +1,1446 @@ +# Albanian translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-09-30 21:20+0000\n" +"Last-Translator: Alejdin Tirolli \n" +"Language-Team: Albanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Përditë" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Çdo dy ditë" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Përjavë" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Çdo dy javë" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Çdo %s ditësh" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Pas një jave" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Pas dy javësh" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Pas një muaji" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Pas %s ditësh" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "%s përmirësimet" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "Serveri për %s" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "Serveri më i afërt" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "Aktiv" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "(Kodi i hapur)" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "Kodi i hapur" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Importo çelës" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Gabim gjatë importimit të të dhënës së zgjedhur" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" +"E dhëna e zgjedhur sipas të gjitha gjasave nuk është GPG-çelës ose është e " +"dëmtuar." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Gabim gjatë largimit të çelësit" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Çelësi i zgjedhur nuk mund të largohet.Ju lutemi krijoni këtu një raport për " +"gabimin." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" +"Gabim gjatë leximit të CD\n" +"\n" +"%s" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Jepni një emër për Mediumin." + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "Ju lutemi futni një Medium në drive:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Paketat e dëmtuara" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" +"Sistemi juaj përmban paketa defekt, të cilat nuk mund të riparohen me këtë " +"softuer.Ju lutemi riparoni këtë me Synaptic ose apt-get, para se të shkoni " +"përpara." + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "Një paketë themelore u deshtë të largohej" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "Aktualizimi nuk mund të llogaritej" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" +"Një problem i pazgjidhshëm ndodhi gjatë aktualizimit.Ju lutemi krijoni një " +"raport për këtë gabim." + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" +"Disa paketa nuk mund të vërtetoheshin për origjinalitet.Kjo ka si pasojë " +"problemet me rrjetin.Ju lutemi provoni më vonë edhe një herë.Paketat e " +"mëposhtme nuk mund të vërtetohen për nga origjinaliteti." + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "'%s' nuk mund të instalohet" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Një paketë i nevojshëm nuk mundi të instalohet.Ju lutemi raportoni këtë " +"problem. " + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "Can't guess meta-package" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" 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" +"Ju lutemi instaloni njërën nga paketat e theksuara nëpërmjet Synaptic ose " +"apt-get, para se të vazhdoni." + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "Futja e CD dështoi" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/sr.po b/po/sr.po index e063ffb7..9583ee0a 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-27 12:27+0000\n" -"Last-Translator: Dejan Milosavljevic \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-06-01 10:04+0000\n" +"Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Posle jednog meseca" msgid "After %s days" msgstr "Posle %s dana" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -112,20 +109,26 @@ msgid "Import key" msgstr "Importiranje kljuca" #: ../SoftwareProperties/SoftwareProperties.py:979 +#, fuzzy msgid "Error importing selected file" -msgstr "" +msgstr "Грешка у учитавању изабранe datoteke" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:992 +#, fuzzy msgid "Error removing the key" -msgstr "" +msgstr "Грешка у уклањању кључа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +#, fuzzy +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" +"Кључ који сте изабрали није могуће уклонити. Молим вас пријавите ово као " +"грешку." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -136,22 +139,29 @@ msgid "" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1096 +#, fuzzy msgid "Please enter a name for the disc" -msgstr "" +msgstr "Молим вас унесите име диска" #: ../SoftwareProperties/SoftwareProperties.py:1112 +#, fuzzy msgid "Please insert a disc in the drive:" -msgstr "" +msgstr "Молим вас убаците диск у јединицу диска:" #: ../DistUpgrade/DistUpgradeCache.py:91 +#, fuzzy msgid "Broken packages" -msgstr "" +msgstr "Оштећени пакети" #: ../DistUpgrade/DistUpgradeCache.py:92 +#, fuzzy msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" +"У вашем систему постоје оштећени пакети који не могу бити поправљени овим " +"софтвером. Молим вас прво њих поправите користећи synaptic или apt-get прије " +"него што наставите." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -161,7 +171,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +183,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +205,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +264,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -303,27 +309,30 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:368 +#, fuzzy msgid "Not enough free disk space" -msgstr "" +msgstr "Нема довољно места на диску" #: ../DistUpgrade/DistUpgradeControler.py:369 -#, python-format +#, fuzzy 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 using 'sudo " "apt-get clean'." msgstr "" +"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску " +"%s. Испразните канту за отпаtке и уклоните привремене пакете предходних " +"инсталација користећи команду 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +364,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "_Прескочи овај корак" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "" +msgstr "_Уклони" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,23 +430,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 +#, fuzzy msgid "System upgrade is complete." -msgstr "" +msgstr "Унапређење система је завршено" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +462,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +474,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,7 +489,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -493,29 +498,29 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#, fuzzy msgid "The 'diff' command was not found" -msgstr "" +msgstr "Команда 'diff' није нађена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -523,7 +528,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -531,7 +536,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -539,7 +544,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -547,42 +552,43 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "" +"Да би спречили губитак података затворите све активне програме и документа." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" -msgstr "" +msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" -msgstr "" +msgstr "Унапреди %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format @@ -605,17 +611,17 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 +#, fuzzy msgid "Reboot required" -msgstr "" +msgstr "Потребно је поново покретање система" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" @@ -625,11 +631,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -657,11 +662,12 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" -msgstr "" +msgstr "Детаљи" #: ../DistUpgrade/DistUpgrade.glade.h:10 +#, fuzzy msgid "Difference between the files" -msgstr "" +msgstr "Разлике између датотека" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" @@ -681,7 +687,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" -msgstr "" +msgstr "Терминал" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" @@ -731,7 +737,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -805,74 +810,69 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -880,79 +880,73 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1274,229 +1268,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/sv.po b/po/sv.po index 41ec7a4d..a6bc08ea 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,5 +1,6 @@ # Swedish messages for update-manager. # Copyright (C) 2005 Free Software Foundation, Inc. +# Daniel Nylander , 2006. # Christian Rose , 2005. # # $Id: sv.po,v 1.5 2005/04/04 08:49:52 mvogt Exp $ @@ -8,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:18+0000\n" -"Last-Translator: Robin Sonefors \n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-06 03:32+0000\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,58 +56,51 @@ msgstr "Efter en månad" msgid "After %s days" msgstr "Efter %s dagar" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "%d uppdateringar" +msgstr "Uppdateringar för %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy, python-format +#, python-format msgid "%s (%s)" -msgstr "%s - %s/s" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Huvudserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 -#, fuzzy, python-format +#, python-format msgid "Server for %s" -msgstr "Server" +msgstr "Server för %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Närmaste server" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Anpassade servrar" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Programvaruuppdateringar" +msgstr "Programvarukanal" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 -#, fuzzy msgid "Active" -msgstr "Aktivera" +msgstr "Aktiv" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Källkod" +msgstr "(Källkod)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" msgstr "Källkod" @@ -128,28 +122,28 @@ msgid "Error removing the key" msgstr "Fel vid borttagning av nyckeln" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "" -"Nyckeln du valde kan inte tas bort. Var vänlig anmäl detta som en bugg." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "Nyckeln du valde kan inte tas bort. Rapportera detta som ett fel." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Fel vid genomsökning av CD\n" +"Fel vid avsökning av cd-skiva\n" "\n" "%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "Skriv in ett namn på skivan" +msgstr "Ange ett namn för skivan" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "Sätt in en skiva i enheten:" +msgstr "Mata in en skiva i enheten:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" @@ -166,29 +160,28 @@ msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "Kan inte uppdatera obligatoriska meta-paket" +msgstr "Kan inte uppdatera de obligatoriska meta-paketen" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "Kunde inte beräkna uppdateringen" +msgstr "Kunde inte beräkna uppgraderingen" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Ett problem som inte gick att lösa uppstod när uppdateringen beräknades. Var " -"vänlig rapportera detta som en bugg. " +"Ett problem utan lösning inträffade vid beräkning av uppgraderingen.\n" +"\n" +"Rapportera det här felet mot paketet \"update-manager\" och inkludera " +"filerna i /var/log/dist-upgrade/ i felrapporten." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" @@ -201,7 +194,7 @@ msgid "" msgstr "" "Det gick inte att autentisiera vissa paket. Det kan vara ett tillfälligt " "nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista " -"med icke autentisierade paket." +"med icke-autentisierade paket." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -213,16 +206,14 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Det var inte möjligt att installera ett nödvändigt paket. Var vänlig " -"rapportera detta som en bugg. " +"Det var inte möjligt att installera ett nödvändigt paket. Rapportera detta " +"som ett fel. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -230,16 +221,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller edubuntu-" -"desktop och det gick inte att upptäcka vilken version av ubuntu du " -"använder.\n" -" Installera ett av dessa paket med synaptic eller apt-get innan du " +"Ditt system innehåller inte något av paketen ubuntu-desktop, kubuntu-desktop " +"eller edubuntu-desktop och det var inte möjligt att identifiera vilken " +"version av Ubuntu som du kör.\n" +" Installera först ett av paketen ovan med Synaptic eller apt-get innan du " "fortsätter." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Misslyckades med att hämta" +msgstr "Misslyckades med att lägga till cd-skivan" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -250,6 +240,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"Det inträffade ett fel när cd-skivan lades till, uppgraderingen kommer att " +"avbrytas. Rapportera detta som ett fel om det gäller en giltig Ubuntu-cd.\n" +"\n" +"Felmeddelandet var:\n" +"\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -257,7 +252,7 @@ msgstr "Läser cache" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Hämta uppgraderingsdata från nätverket?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -266,6 +261,12 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Uppgraderingen kan använda nätverket för att leta efter de senaste " +"uppdateringarna och för att hämta paketen som inte finns på den aktuella cd-" +"skivan.\n" +"\n" +"Om du har en snabb nätverksanslutning bör du svara \"Ja\" här. Om nätverket " +"är långsamt kan du svara \"Nej\"." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -288,12 +289,11 @@ msgstr "" "\n" "Vill du skriva över filen \"sources.list\" i alla fall? Om du väljer \"Ja\" " "här kommer det att uppdatera alla \"%s\" till \"%s\".\n" -"Om du väljer \"nej\" kommer uppdateringen avbrytas." +"Om du väljer \"Nej\" kommer uppdateringen avbrytas." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "Lägg till standardförråd?" +msgstr "Generera standardkällor?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -310,30 +310,29 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "Information om förråd ogiltig" +msgstr "Förrådsinformationen är ogiltig" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Uppdatering av förrådsinformationen orsakade en ogiltig fil. Var vänlig " -"rapportera detta som en bugg." +"Uppdatering av förrådsinformationen orsakade en ogiltig fil. Rapportera " +"detta som ett fel." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Tredjepartskällor inaktiverade" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"Somliga tredjeparskällor i din sources.list var avstängda. Du kan åter-" -"aktivera dem efter uppgraderingen med verktyget \"software-properties\" " -"eller med synaptic." +"Vissa tredjepartsposter i din sources.list blev inaktiverade. Du kan " +"återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " +"eller med Synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -360,20 +359,18 @@ msgid "" "apt-get clean'." msgstr "" "Uppgraderingen avbryts nu. Frigör åtminstone %s diskutrymme på %s. Töm din " -"papperskorg och ta bort temporära paket av tidigare installationer genom att " -"använda 'sudo apt-get clean'." +"papperskorg och ta bort temporära paket från tidigare installationer genom " +"att använda \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "Vill du starta uppdateringen?" +msgstr "Vill du starta uppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,26 +379,28 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " -"En återställning kördes (dpkg --configure -a)." +"En återhämtning kördes (dpkg --configure -a).\n" +"\n" +"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i " +"/var/log/dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" -msgstr "Det gick inte ladda ner uppgraderingarna" +msgstr "Det gick inte att hämta uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"Uppdateringen avbryts nu. Var god kontrollera din internetanslutning eller " -"ditt installationsmedia och försök igen. " +"Uppgraderingen avbryts nu. Var god kontrollera din Internetanslutning eller " +"ditt installationsmedia, och försök igen. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Stöd för vissa program har upphört" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -409,27 +408,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " -"gemenskapsunderhållna ('universe').Om du inte har 'universe' aktiverat " -"kommer dessa paket föreslås för borttagning i nästa steg. " +"Canonical Ltd. tillhandahåller inte längre stöd för följande " +"programvarupaket. Du kan fortfarande få stöd från gemenskapen.\n" +"\n" +"Om du inte har aktiverat gemenskapsunderhållen programvara (universe), " +"kommer dessa paket att föreslås för borttagning i nästa steg." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Hoppa över det här steget" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Ta bort" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "Fel inträffade vid utförandet" +msgstr "Fel inträffade vid verkställandet" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -437,48 +438,45 @@ msgstr "" "Något fel inträffade vid upprensningen. Se meddelandet nedan för mer " "information. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "Återställer systemstatus" +msgstr "Återställer ursprungligt systemtillstånd" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Hämtar bakåtportering av \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Förbereder uppgraderingen" +msgstr "Förberedelse av uppgradering misslyckades" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Ett problem som inte gick att lösa uppstod när uppdateringen beräknades. Var " -"vänlig rapportera detta som en bugg. " +"Förberedelse av systemet för uppgraderingen misslyckades. Rapportera det här " +"som ett fel mot paketet \"update-manager\" och inkludera filerna i " +"/var/log/dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Ogiltig paketinformation" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -486,59 +484,58 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Efter att paketinformationen uppdaterades går det inte att hitta det " -"nödvändiga paketet \"%s\" längre.\n" -"Det här tyder på ett alvarligt fel, var god och rapportera detto som en bugg." +"Efter att din paketinformation blev uppdaterad kan det systemkritiska " +"paketet \"%s\" inte längre hittas.\n" +"Detta innebär att det finns ett allvarligt fel, vänligen rapportera detta " +"fel mot paketet \"update-manager\" och bifoga filerna i /var/log/dist-" +"upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Ber om bekräftelse" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Uppgraderar" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "Söker efter föråldrad mjukvara" +msgstr "Söker efter föråldrad programvara" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Mata in \"%s\" i enheten \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Uppdateringen är färdig" +msgstr "Hämtning är klar" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "Hämtar hem fil %li av %li i %s/s" +msgstr "Hämtar fil %li av %li i %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "Omkring %li minuter återstår" +msgstr "Ungefär %s återstående" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "Laddar ner fil %li av %li" +msgstr "Hämtar fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "Verställer ändringar" +msgstr "Verkställer ändringar" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format @@ -550,145 +547,148 @@ 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 bugreport." msgstr "" +"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-" +"manager\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Ersätt konfigurationsfil\n" +"Ersätt den anpassade konfigurationsfilen\n" "\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" +"Du kommer att förlora de ändringar du har gjort i den här " +"konfigurationsfilen om du väljer att ersätta den med en senare version." -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "Kommandot \"diff\" hittades inte" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "Ett kritiskt fel uppstod" +msgstr "Ett ödesdigert fel uppstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Var god och rapportera detta som en bugg och inkludera filerna /var/log/dist-" -"upgrade.log och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen " -"avbryts nu.\n" -"Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." +"Rapportera detta som ett fel och bifoga filerna /var/log/dist-" +"upgrade/main.log och /var/log/dist-upgrade/apt.log i din rapport. " +"Uppgraderingen avbryts nu.\n" +"Din ursprungliga sources.list sparades som /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s paket kommer att tas bort." -msgstr[1] "%s paket kommer att tas bort." +msgstr[0] "%d paket kommer att tas bort." +msgstr[1] "%d paket kommer att tas bort." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s nytt paket kommer att installeras." -msgstr[1] "%s nya paket kommer att installeras." +msgstr[0] "%d nytt paket kommer att installeras." +msgstr[1] "%d nya paket kommer att installeras." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s paket kommer att uppgraderas." -msgstr[1] "%s paket kommer att uppgraderas." +msgstr[0] "%d paket kommer att uppgraderas." +msgstr[1] "%d paket kommer att uppgraderas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Du behöver ladda ner totalt %s." +msgstr "" +"\n" +"\n" +"Du måste hämta totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"Uppdateringen kan ta flera timmar och kan inte avbrytas någon gång senare." +"Hämtning och installation av uppgraderingen kan ta flera timmar och kan inte " +"avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "Stäng alla öppna program och dokument för att undvika dataförlust." +msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -"Det finns %s uppdateringar tillgängliga för ditt system, som kräver " -"att %s data hämtas." +"Det finns inga tillgängliga uppgraderingar för ditt system. Uppgraderingen " +"kommer nu att avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "Ta bort %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "Installera %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "Uppgradera %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Omkring %li dagar, %li timmar och %li minuter återstår" +msgstr "%li dagar %li timmar %li minuter" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Omkring %li timmar och %li minuter återstår" +msgstr "%li timmar %li minuter" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minuter" #: ../DistUpgrade/DistUpgradeView.py:32 -#, fuzzy, python-format +#, python-format msgid "%li seconds" -msgstr "sekunder" +msgstr "%li sekunder" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" +"Den här hämtningen kommer att ta ungefär %s med en 1 Mbit DSL-anslutningen " +"och ungefär %s med ett 56k-modem" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -703,7 +703,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -716,10 +715,10 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" -"Avbryt pågående uppdatering?\n" +"Avbryt pågående uppgradering?\n" "\n" -"Systemet kan hamna i ett oanvändbart läge om du avbryter uppgraderingen. Du " -"är starkt rekommderad att fortsätta uppgraderingen." +"Systemet kan hamna i ett oanvändbart tillstånd om du avbryter " +"uppgraderingen. Det rekommenderas starkt att du fortsätter uppgraderingen." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -732,7 +731,7 @@ msgstr "Starta uppgraderingen?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Uppgraderar Ubuntu till version 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -747,13 +746,12 @@ msgid "Difference between the files" msgstr "Skillnad mellan filerna" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Hämtar och installerar uppgraderingarna" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "Ändrar källorna för program" +msgstr "Ändrar programvarukanalerna" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" @@ -768,14 +766,12 @@ msgid "Terminal" msgstr "Terminalfönster" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Återuppta uppgraderingen" +msgstr "_Avbryt uppgradering" #: ../DistUpgrade/DistUpgrade.glade.h:17 -#, fuzzy msgid "_Continue" -msgstr "Fortsätt" +msgstr "_Fortsätt" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -787,7 +783,7 @@ msgstr "_Ersätt" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "_Rapportera bugg" +msgstr "_Rapportera fel" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -798,13 +794,12 @@ msgid "_Resume Upgrade" msgstr "_Återuppta uppgraderingen" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "Distribution:" +msgstr "_Starta uppgradering" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "Det gick inte att hitta versionsinformation" +msgstr "Det gick inte att hitta versionsfaktan" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " @@ -812,40 +807,38 @@ msgstr "Servern kan vara överbelastad. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "Det gick inte att ladda ner versionsinformation" +msgstr "Det gick inte att hämta versionsfaktan" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "Kontrollera din internetanslutning" +msgstr "Kontrollera din Internetanslutning." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "Det gick inte att köra uppdateringsverktyget" +msgstr "Det gick inte att köra uppgraderingsverktyget" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" -"Det är troligen en bugg i uppdateringsverktyget. Var god rapportera det som " -"en bugg." +"Det är troligen ett fel i uppgraderingsverktyget. Rapportera det som ett fel." #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "Hämtar uppdateringsverktyget" +msgstr "Hämtar uppgraderingsverktyget" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." msgstr "" -"Uppdateringsverktyget kommer att guida dig genom uppdateringsprocessen." +"Uppgraderingsverktyget kommer att guida dig genom uppgraderingsprocessen." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "Uppdateringsverktygets signatur" +msgstr "Uppgraderingsverktygets signatur" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "Uppdateringsverktyg" +msgstr "Uppgraderingsverktyg" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" @@ -854,33 +847,32 @@ msgstr "Misslyckades med att hämta" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" -"Hämtningen av uppdateringen misslyckades. Det kan vara ett problem med " +"Hämtningen av uppgraderingen misslyckades. Det kan vara ett problem med " "nätverket. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "Misslyckades med att packa upp" +msgstr "Misslyckades med att extrahera" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Uppackningen av uppdateringen misslyckades. Det kan vara ett problem med " -"nätverket eller servern. " +"Extraheringen av uppgraderingen misslyckades. Det kan vara ett problem med " +"nätverket eller med servern. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "Kontrollen misslyckades" +msgstr "Verifieringen misslyckades" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Kontrollen av uppdateringen misslyckades. Det kan vara ett problem med " -"nätverket eller servern. " +"Validering av uppgraderingen misslyckades. Det kan finnas ett problem i " +"nätverket eller med servern. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -891,224 +883,194 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Autentisering av uppdateringen misslyckades. Det kan vara ett problem med " -"nätverket eller servern. " +"Autentisering av uppgraderingen misslyckades. Det kan vara ett problem med " +"nätverket eller med servern. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Hämtar hem fil %li av %li i %s/s" +msgstr "Hämtar fil %(current)li av %(total)li med %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Hämtar hem fil %li av %li i %s/s" +msgstr "Hämtar fil %(current)li av %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Listan med ändringar är inte tillgänglig än. Försök igen senare" +msgstr "Listan över ändringar finns inte tillgänglig" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Listan med ändringar är inte tillgänglig än. Försök igen senare" +msgstr "" +"Listan över ändringar är ännu inte tillgänglig.\n" +"Försök igen senare." -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Misslyckades med att hämta listan med ändringar. Kontrollera din " -"internetanslutning." +"Misslyckades med att hämta listan över ändringar. \n" +"Kontrollera din Internetanslutning." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" +msgstr "Viktiga säkerhetsuppdateringar" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "%d uppdateringar" +msgstr "Rekommenderade uppdateringar" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "%d uppdateringar" +msgstr "Föreslagna uppdateringar" -#: ../UpdateManager/UpdateManager.py:239 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "%d uppdateringar" +msgstr "Bakåtporteringar" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "Distribution:" +msgstr "Uppdateringar för utgåva" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Uppdateringar" +msgstr "Övriga uppdateringar" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "Hämtar lista med ändringar..." +msgstr "Hämtar lista över ändringar..." -#: ../UpdateManager/UpdateManager.py:548 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "_Uppdatera alla" +msgstr "_Avmarkera allt" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "_Kontrollera" +msgstr "_Kontrollera alla" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "Nerladdningsstorlek: %s" +msgstr "Hämtningsstorlek: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installera %s uppdatering" msgstr[1] "Du kan installera %s uppdateringar" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "Var god vänta, det här kan ta lite tid" +msgstr "Var god vänta, det här kan ta lite tid." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "Uppdateringen är färdig" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Kontrollera efter tillgängliga uppdateringar" +msgstr "Letar efter uppdateringar" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Ny version: %s (Storlek: %s)" +msgstr "Från version %(old_version)s till %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Version %s:" +msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:816 +#, python-format msgid "(Size: %s)" -msgstr "Storlek:" +msgstr "(Storlek: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "Din distribution stöds inte längre" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -"Du kommer inte längre få säkerhets- eller kritiska uppdateringar. Uppgradera " -"till en senare version av Ubuntu Linux. Se http://www.ubuntu.com för mer " -"information om att uppgradera." +"Du kommer inte längre att få säkerhets- eller kritiska uppdateringar. " +"Uppgradera till en senare version av Ubuntu Linux. Se http://www.ubuntu.com " +"för mer information om hur man uppgraderar." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Ny distributionsutgåva \"%s\" finns tillgänglig" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "Indexet för program är trasigt" +msgstr "Programindexet är trasigt" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" "Det är inte möjligt att installera eller ta bort några program. Använd " -"packethanteraren \"Synaptic\" eller kör \"sudo apt-get install -f\" i en " +"pakethanteraren \"Synaptic\" eller kör \"sudo apt-get install -f\" i en " "terminal för att rätta till det här problemet först." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 -#, fuzzy msgid "None" -msgstr "en" +msgstr "Ingen" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 -#, fuzzy msgid "1 KB" -msgstr "%d kB" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 -#, fuzzy, python-format +#, python-format msgid "%.0f KB" -msgstr "%.2f MB" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 -#, fuzzy, python-format +#, python-format msgid "%.1f MB" -msgstr "%.2f MB" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Du måste titta efter uppdateringar manuellt\n" +"Du måste manuellt leta efter uppdateringar\n" "\n" -"Ditt system tittar inte efter uppdateringar automatiskt. Du kan konfiguera " -"detta beteende i \"System\" -> \"Administration\" -> " -"\"Programvaruinställningar\"" +"Ditt system letar inte automatiskt efter uppdateringar. Du kan konfiguera " +"det här beteendet i Programvarukällor under fliken " +"Internetuppdateringar." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Håll ditt system uppdaterat" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Fel vid genomsökning av CD\n" -"\n" -"%s" +msgstr "Inte alla uppdateringar kan installeras" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Starta uppgraderingen?" +msgstr "Startar Uppdateringshanterare" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1116,7 +1078,7 @@ msgstr "Ändringar" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Ändringar och beskrivning av uppdateringen" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1124,7 +1086,7 @@ msgstr "_Kontrollera" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Kontrollera programvarukanalerna efter nya uppdateringar" +msgstr "Leta efter nya uppdateringar i programvarukanalerna" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1132,7 +1094,7 @@ msgstr "Beskrivning" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "Versionsinformation" +msgstr "Versionsfakta" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1141,6 +1103,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Kör en uppgradering av utgåvan för att installera så många uppdateringar som " +"möjligt. \n" +"\n" +"Det här kan orsakas av en icke-komplett uppgradering, inofficiella " +"programvarupaket eller genom att köra en utvecklingsversion." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1155,25 +1122,24 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Mjukvaruuppdateringar fixar fel, eliminerar säkerhetsproblem och ger dig nya " -"funktioner." +"Programvaruuppdateringar rättar till fel, eliminerar säkerhetsproblem och " +"ger dig nya funktioner." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "_Uppdateringar" +msgstr "U_ppgradera" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "Uppdatera till senaste versionen av Ubuntu" +msgstr "Uppgradera till senaste versionen av Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "_Kontrollera" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "Distribution:" +msgstr "_Uppgradering av utgåva" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1184,32 +1150,28 @@ msgid "_Install Updates" msgstr "_Installera uppdateringar" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Ändringar" +msgstr "ändrar" #: ../data/glade/UpdateManager.glade.h:26 -#, fuzzy msgid "updates" -msgstr "Uppdateringar" +msgstr "uppdaterar" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internetuppdateringar" +msgstr "Automatiska uppdateringar" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "Cd-rom/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Internetuppdateringar" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internetuppdateringar" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1221,11 +1183,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"För att förbättra Ubuntus användarvänlighet ber vi dig att delta i " +"Ubuntus populäritetstävling. Om du deltar kommer en lista över de program du " +"har installerat och uppgifter om hur ofta de används att samlas in. Listan " +"skickas anonymt till Ubuntu-projektet veckovis.\n" +"\n" +"Resultatet används för att förbättra stödet för populära program och för att " +"ranka program i sökresultat." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Lägg till _CD" +msgstr "Lägg till cd-rom" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1233,16 +1201,15 @@ msgstr "Autentisering" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "_Ta bort nerladdade programfiler:" +msgstr "_Ta bort hämtade programvarufiler:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Hämtningslogg" +msgstr "Hämta från:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" -msgstr "Importera den publika nyckeln från en betrodd mjukvaruutgivare" +msgstr "Importera den publika nyckeln från en betrodd programvaruleverantör" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" @@ -1253,12 +1220,12 @@ msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -"Bara säkerhetsuppdateringar från de officiella Ubuntuservrarna kommer " +"Endast säkerhetsuppdateringar från de officiella Ubuntuservrarna kommer " "installeras automatiskt" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" -msgstr "_Återställ standardalternativ" +msgstr "_Återställ standardvärden" #: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" @@ -1270,43 +1237,38 @@ msgid "Software Sources" msgstr "Programvarukällor" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" msgstr "Källkod" #: ../data/glade/SoftwareProperties.glade.h:20 -#, fuzzy msgid "Statistics" -msgstr "Status" +msgstr "Statistik" #: ../data/glade/SoftwareProperties.glade.h:21 -#, fuzzy msgid "Submit statistical information" -msgstr "Hämta användningsinformation" +msgstr "Skicka in statistik" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Tredjepart" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" -msgstr "Kolla efter uppdateringar _automatiskt:" +msgstr "Leta efter uppdateringar _automatiskt:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_Hämta uppdateringar i bakgrunden, men installera dem inte" +msgstr "_Hämta automatiskt uppdateringar, men installera dem inte" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "" +msgstr "_Importera nyckelfil" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Installera säkerhetsuppdateringar utan bekräftelse" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1315,12 +1277,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Kanalinformationen är gammal\n" +"Informationen om tillgänglig programvara är utdaterad\n" "\n" -"Du behöver uppdatera kanalinformationen för att installera program och " -"uppdateringar från nya eller ändrade kanaler. \n" +"För att installera programvara och uppdateringar från nyligen tillagda eller " +"ändrade källor behöver du läsa om information om tillgänglig programvara.\n" "\n" -"Du behöver en fungerande internetanslutning för att kunna fortsätta." +"Du behöver en fungerande Internetanslutning för att fortsätta." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1343,7 +1305,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1351,10 +1312,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Skriv in hela APT-raden till kanalen du vill lägga till\n" +"Ange den kompletta APT-raden till förrådet som du vill lägga till " +"som källa\n" "\n" -"APT-raden innehåller typ, plats och komponenter för en kanal, till exempel " -"\"deb http://ftp.debian.org sarge main\"." +"APT-raden inkluderar typen, platsen och komponenterna för ett förråd, till " +"exempel \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1369,18 +1331,16 @@ msgstr "" "Källkod" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Redigera tjänster" +msgstr "Redigera källa" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "Söker igenom CD-skivan" +msgstr "Söker igenom cd-skivan" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Lägg till tjänst" +msgstr "_Lägg till källa" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1399,23 +1359,22 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"Kontrollera automatiskt om en nyare version av nuvarande distribution finns " -"tillgänglig och fråga om du vill uppdatera (om möjligt)." +"Kontrollera automatiskt om en snare version för nuvarande distribution finns " +"tillgänglig och fråga om du vill uppgradera (om möjligt)." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "Sök efter ny utgåva av distributionen" +msgstr "Sök efter nya utgåvor av distributionen" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"Om automatisk kontroll av uppdateringar är inaktiverad behöver du ladda om " -"kanallistan manuellt. Det här alternativet möjliggör att dölja påminnelser " -"som visas i det här läget." +"Om automatisk kontroll efter uppdatering är inaktiverad behöver du läsa om " +"kanallistan manuellt. Det här alternativet tillåter att påminnelsen döljs i " +"det här fallet." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1427,286 +1386,354 @@ msgstr "Visa detaljer för en uppdatering" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Sparar storleken på uppdateringshanterarens fönster" +msgstr "Lagrar storleken för uppdateringshanterarens dialogfönster" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Sparar läget på expanderaren som innehåller listan på ändringar och " -"beskrivningar" +"Lagrar tillståndet för expanderaren som innehåller listan av ändringar och " +"beskrivningen" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" msgstr "Fönsterstorleken" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Konfigurera programkanaler och internetuppdateringar" +msgstr "" +"Konfigurera källorna för installerbara programvaror och uppdateringar" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 Uppdateringar" +msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Gemenskapsunderhållen (Universe)" +msgstr "Gemenskapsunderhållen" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Properitära drivrutiner för enheter" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Bidragen programvara" +msgstr "Inskränkt programvara" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +msgid "Canonical supported Open Source software" +msgstr "Öppen källkodsprogramvara som stöds av Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Gemenskapsunderhållen (Universe)" +msgstr "Gemenskapsunderhållen (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Gemenskapsunderhållen (Universe)" +msgstr "Öppen källkodsprogramvara underhållen av gemenskapen" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Ickefri (Multiverse)" +msgstr "Ickefria drivrutiner" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Properitära drivrutiner för enheter " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Ickefri (Multiverse)" +msgstr "Inskränkt programvara (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Programvara med USA-exportbegränsningar" +msgid "Software restricted by copyright or legal issues" +msgstr "Programvara begränsad av upphovsrätt eller juridiska avtal" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 \"Dapper Drake\"" +msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 -#, fuzzy msgid "Backported updates" -msgstr "%d uppdateringar" +msgstr "Bakåtporterade uppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Stöds officiellt" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" +msgstr "Säkerhetsuppdateringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 Uppdateringar" +msgstr "Uppdateringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 Bakåtportar" +msgstr "Bakåtporteringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Gemenskapsunderhållen (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ickefri (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Viss programvara har inte längre officiellt stöd" +msgstr "Stöds inte längre officiellt" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begränsad upphovsrätt" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" +msgstr "Säkerhetsuppdateringar för Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 Uppdateringar" +msgstr "Uppdateringar för Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 Bakåtportar" +msgstr "Bakåtporteringar för Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Säkerhetsuppdateringar" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://ftp.se.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel programvara med icke-fria beroenden" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "Inte DFSG-kompatibel programvara" +msgstr "Icke-DFSG-kompatibel programvara" -#~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "Hämtar hem fil %li av %li med okänd hastighet" +#, python-format +#~ msgid "" +#~ "Error scaning the CD\n" +#~ "\n" +#~ "%s" +#~ msgstr "" +#~ "Fel vid genomsökning av cd-skiva\n" +#~ "\n" +#~ "%s" -#, fuzzy -#~ msgid "Normal updates" -#~ msgstr "%d uppdateringar" +#~ msgid "" +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " +#~ msgstr "" +#~ "Ett problem uppstod som inte gick att lösa när uppgraderingen beräknades. " +#~ "Rapportera detta som ett fel. " -#~ msgid "Cancel _Download" -#~ msgstr "Avbryt _nedladdningen" +#~ msgid "" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." +#~ msgstr "" +#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller edubuntu-" +#~ "desktop och det gick inte att identifiera vilken version av Ubuntu du " +#~ "använder.\n" +#~ " Installera ett av dessa paket först med synaptic eller apt-get innan du " +#~ "fortsätter." + +#~ msgid "" +#~ "Some third party entries in your souces.list where disabled. You can re-" +#~ "enable them after the upgrade with the 'software-properties' tool or with " +#~ "synaptic." +#~ msgstr "" +#~ "Vissa tredjepartskällor i din sources.list blev inaktiverade. Du kan " +#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " +#~ "eller med synaptic." + +#~ msgid "" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "" +#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " +#~ "En återhämtning kördes (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" -#~ msgstr "Viss programvara har inte längre officiellt stöd" +#~ msgstr "Viss programvara stöds inte officiellt längre" + +#~ msgid "" +#~ "These installed packages are no longer officially supported, and are now " +#~ "only community-supported ('universe').\n" +#~ "\n" +#~ "If you don't have 'universe' enabled these packages will be suggested for " +#~ "removal in the next step. " +#~ msgstr "" +#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " +#~ "gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" aktiverat " +#~ "kommer dessa paket föreslås för borttagning i nästa steg. " + +#~ msgid "Restoring originale system state" +#~ msgstr "Återställer ursprunglig systemstatus" + +#, python-format +#~ msgid "" +#~ "After your package information was updated the essential package '%s' can " +#~ "not be found anymore.\n" +#~ "This indicates a serious error, please report this as a bug." +#~ msgstr "" +#~ "Efter att paketinformationen uppdaterades går det inte att hitta det " +#~ "nödvändiga paketet \"%s\" längre.\n" +#~ "Det här tyder på ett allvarligt fel, rapportera detta som ett fel." + +#, python-format +#~ msgid "About %li days %li hours %li minutes remaining" +#~ msgstr "Ungefär %li dagar, %li timmar och %li minuter återstår" + +#, python-format +#~ msgid "About %li hours %li minutes remaining" +#~ msgstr "Ungefär %li timmar och %li minuter återstår" + +#, python-format +#~ msgid "About %li minutes remaining" +#~ msgstr "Ungefär %li minuter återstår" + +#, python-format +#~ msgid "About %li seconds remaining" +#~ msgstr "Ungefär %li sekunder återstår" + +#~ msgid "Download is complete" +#~ msgstr "Hämtningen är färdig" + +#, python-format +#~ msgid "Downloading file %li of %li at %s/s" +#~ msgstr "Hämtar fil %li av %li i %s/s" + +#, python-format +#~ msgid "Downloading file %li of %li" +#~ msgstr "Hämtar fil %li av %li" + +#~ msgid "The upgrade aborts now. Please report this bug." +#~ msgstr "Uppdateringen avbryts nu. Rapportera detta som ett fel." + +#, python-format +#~ msgid "" +#~ "Replace configuration file\n" +#~ "'%s'?" +#~ msgstr "" +#~ "Ersätt konfigurationsfilen\n" +#~ "\"%s\"?" + +#~ msgid "" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +#~ msgstr "" +#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade.log " +#~ "och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen avbryts nu.\n" +#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." + +#, python-format +#~ msgid "%s package is going to be removed." +#~ msgid_plural "%s packages are going to be removed." +#~ msgstr[0] "%s paket kommer att tas bort." +#~ msgstr[1] "%s paket kommer att tas bort." + +#, python-format +#~ msgid "%s new package is going to be installed." +#~ msgid_plural "%s new packages are going to be installed." +#~ msgstr[0] "%s nytt paket kommer att installeras." +#~ msgstr[1] "%s nya paket kommer att installeras." + +#, python-format +#~ msgid "%s package is going to be upgraded." +#~ msgid_plural "%s packages are going to be upgraded." +#~ msgstr[0] "%s paket kommer att uppgraderas." +#~ msgstr[1] "%s paket kommer att uppgraderas." + +#, python-format +#~ msgid "You have to download a total of %s." +#~ msgstr "Du behöver hämta totalt %s." + +#~ msgid "" +#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ msgstr "" +#~ "Uppgraderingen kan ta flera timmar och kan inte avbrytas under tiden." #~ msgid "Could not find any upgrades" #~ msgstr "Kunde inte hitta några uppgraderingar" @@ -1714,72 +1741,61 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Your system has already been upgraded." #~ msgstr "Ditt system har redan uppgraderats." -#, fuzzy #~ msgid "" -#~ "Upgrading to Ubuntu 6.10" +#~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Uppdaterar till Ubuntu 6.06 LTS" +#~ "Uppgraderar till Ubuntu 6.06 " +#~ "LTS" -#, fuzzy -#~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" +#~ msgid "Downloading and installing the upgrades" +#~ msgstr "Hämtar och installerar uppgraderingarna" -#, fuzzy -#~ msgid "Recommended updates of Ubuntu" -#~ msgstr "%d uppdateringar" +#~ msgid "Upgrading Ubuntu" +#~ msgstr "Uppgraderar Ubuntu" -#, fuzzy -#~ msgid "Updates of Ubuntu" -#~ msgstr "Uppdatera till senaste versionen av Ubuntu" +#~ msgid "" +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " +#~ msgstr "" +#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem med " +#~ "nätverket eller med servern. " -#~ msgid "Cannot install all available updates" -#~ msgstr "Det går inte att installera alla tillgängliga uppdateringar" +#, python-format +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "Hämtar fil %li av %li i %s/s" -#~ msgid "Select _None" -#~ msgstr "Markera _inga" +#, python-format +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Hämtar fil %li av %li med okänd hastighet" -#~ msgid "Select _All" -#~ msgstr "Markera _alla" +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "Listan med ändringar är inte tillgänglig ännu. Försök igen senare" #~ msgid "" -#~ "Examining your system\n" -#~ "\n" -#~ "Software updates correct errors, eliminate security vulnerabilities and " -#~ "provide new features." +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." #~ msgstr "" -#~ "Undersöker ditt system\n" -#~ "\n" -#~ "Mjukvaruuppdateringar fixar fel, eliminerar säkerhetsproblem och ger dig " -#~ "nya funktioner." +#~ "Misslyckades med att hämta listan med ändringar. Kontrollera din " +#~ "Internetanslutning." -#~ msgid "Oficially supported" -#~ msgstr "Stöds officiellt" +#~ msgid "Cannot install all available updates" +#~ msgstr "Det går inte att installera alla tillgängliga uppdateringar" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Vissa uppdateringar kräver att andra program avinstalleras. Använd " -#~ "funktionen \"Markera alla Uppgraderingar\" i packethanteraren Synaptic " -#~ "eller kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera " -#~ "ditt system helt och hållet." +#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic eller " +#~ "kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera ditt " +#~ "system helt och hållet." #~ msgid "The following updates will be skipped:" -#~ msgstr "Följande uppdateringar kommer att hoppas över" - -#~ msgid "About %li seconds remaining" -#~ msgstr "Omkring %li sekunder återstår" - -#~ msgid "Download is complete" -#~ msgstr "Hämtningen är färdig" - -#~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "Uppdateringen avbryts nu. Var vänlig rapportera detta som en bugg." +#~ msgstr "Följande uppdateringar kommer att hoppas över:" -#~ msgid "Upgrading Ubuntu" -#~ msgstr "Uppgraderar Ubuntu" +#~ msgid "Downloading the list of changes..." +#~ msgstr "Hämtar listan med ändringar..." #~ msgid "Hide details" #~ msgstr "Dölj detaljer" @@ -1787,12 +1803,43 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Show details" #~ msgstr "Visa detaljer" +#, python-format +#~ msgid "New version: %s (Size: %s)" +#~ msgstr "Ny version: %s (storlek: %s)" + #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "Endast ett programvaruhanteringsverktyg tillåts att köra samtidigt" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "Stäng det andra programmet först, t.ex. 'aptitude' eller 'Synaptic'" +#~ msgstr "" +#~ "Stäng det andra programmet först, t.ex. \"aptitude\" eller \"Synaptic\"." + +#~ msgid "" +#~ "You must check for updates manually\n" +#~ "\n" +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ msgstr "" +#~ "Du måste leta efter uppdateringar manuellt\n" +#~ "\n" +#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan konfigurera " +#~ "detta beteende i \"System\" -> \"Administration\" -> " +#~ "\"Programvaruinställningar\"." + +#~ msgid "" +#~ "Examining your system\n" +#~ "\n" +#~ "Software updates correct errors, eliminate security vulnerabilities and " +#~ "provide new features." +#~ msgstr "" +#~ "Undersöker ditt system\n" +#~ "\n" +#~ "Programvaruuppdateringar rättar till fel, eliminerar säkerhetsproblem och " +#~ "ger dig nya funktioner." + +#~ msgid "Cancel _Download" +#~ msgstr "Avbryt _hämtningen" #~ msgid "Channels" #~ msgstr "Kanaler" @@ -1800,40 +1847,92 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Keys" #~ msgstr "Nycklar" +#~ msgid "Add _Cdrom" +#~ msgstr "Lägg till _cd-skiva" + #~ msgid "Installation Media" #~ msgstr "Installationsmedia" #~ msgid "Software Preferences" #~ msgstr "Programvaruinställningar" +#~ msgid "_Download updates in the background, but do not install them" +#~ msgstr "_Hämta uppdateringar i bakgrunden, men installera dem inte" + #~ msgid " " #~ msgstr " " +#~ msgid "" +#~ "The channel information is out-of-date\n" +#~ "\n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" +#~ "\n" +#~ "You need a working internet connection to continue." +#~ msgstr "" +#~ "Kanalinformationen är gammal\n" +#~ "\n" +#~ "Du behöver uppdatera kanalinformationen för att installera program och " +#~ "uppdateringar från nya eller ändrade kanaler. \n" +#~ "\n" +#~ "Du behöver en fungerande Internetanslutning för att kunna fortsätta." + #~ msgid "Channel" #~ msgstr "Kanal" #~ msgid "Components" #~ msgstr "Komponenter" +#~ msgid "" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a channel, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." +#~ msgstr "" +#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" +#~ "\n" +#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till exempel " +#~ "\"deb http://ftp.debian.org sarge main\"." + #~ msgid "Add Channel" #~ msgstr "Lägg till kanal" #~ msgid "Edit Channel" #~ msgstr "Redigera kanal" -#, fuzzy #~ msgid "_Add Channel" -#~ msgstr "_Lägg till kanal" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_Lägg till kanal" +#~ msgstr[1] "_Lägg till kanaler" #~ msgid "_Custom" #~ msgstr "An_passad" +#~ msgid "" +#~ "If automatic checking for updates is disabeld, you have to reload the " +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." +#~ msgstr "" +#~ "Om automatisk kontroll av uppdateringar är inaktiverad behöver du läsa om " +#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja påminnelser " +#~ "som visas i det här läget." + +#~ msgid "" +#~ "Stores the state of the expander that contains the list of changs and the " +#~ "description" +#~ msgstr "" +#~ "Lagrar tillståndet på expanderaren som innehåller listan på ändringar och " +#~ "beskrivningar" + +#~ msgid "Configure software channels and internet updates" +#~ msgstr "Konfigurera programvarukanaler och Internetuppdateringar" + #~ msgid "Software Properties" #~ msgstr "Programvaruegenskaper" -#, fuzzy #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 Uppdateringar" +#~ msgstr "Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Security Updates" #~ msgstr "Ubuntu 6.06 LTS Säkerhetsuppdateringar" @@ -1842,16 +1941,19 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Ubuntu 6.06 LTS Uppdateringar" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Bakåtportar" +#~ msgstr "Ubuntu 6.06 LTS Bakåtporteringar" + +#~ msgid "Ubuntu 6.06 'Dapper Drake'" +#~ msgstr "Ubuntu 6.06 \"Dapper Drake\"" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" #~ "Uppdateringen avbryter nu. Vänligen frigör minst %s diskutrymme. Töm din " -#~ "papperskorg och ta bort temporära paket från tidigare installationer " -#~ "genom att köra \"sudo apt-get clean\"." +#~ "papperskorg och ta bort temporära paket från tidigare installationer genom " +#~ "att köra \"sudo apt-get clean\"." #~ msgid "%s remaining" #~ msgstr "%s återstår" @@ -1860,15 +1962,15 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Ingen giltig källa funnen" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Ingen giltig källa för uppdatering hittades när din förrådsinformation " #~ "söktes igenom.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Uppdateringen avbryts nu. Ditt system kan vara i ett oanvändbart läge. En " #~ "återställning körs nu (dpkg --configure -a)." @@ -1878,8 +1980,8 @@ msgstr "Inte DFSG-kompatibel programvara" #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" #~ "Var vänlig rapportera detta som en bugg och inkludera filerna ~/dist-" -#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen " -#~ "avbryts nu. " +#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts " +#~ "nu. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1899,17 +2001,17 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analyserar ditt system\n" #~ "\n" -#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge " -#~ "dig nya funktioner." +#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dig " +#~ "nya funktioner." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Programuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dina " #~ "program nya funktioner." @@ -1919,29 +2021,35 @@ msgstr "Inte DFSG-kompatibel programvara" #~ "automatically. The software package \"unattended-upgrades\" needs to be " #~ "installed therefor" #~ msgstr "" -#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer " -#~ "att installeras automatiskt. Programpaketet \"unattended-upgrades\" " -#~ "behöver därför installeras" +#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer att " +#~ "installeras automatiskt. Programpaketet \"unattended-upgrades\" behöver " +#~ "därför installeras" #~ msgid "Sections" #~ msgstr "Avdelningar:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga till\n" +#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga " +#~ "till\n" #~ "\n" #~ "APT-raden innehåller typ, plats och avdelningar för kanalen, till exempel " #~ "\"deb http://ftp.debian.org sarge main\"." +#~ msgid "Oficially supported" +#~ msgstr "Stöds officiellt" + #~ msgid "Installing updates" #~ msgstr "Installerar uppdateringar" +#~ msgid "Check for available updates" +#~ msgstr "Kontrollera efter tillgängliga uppdateringar" + #~ msgid "Sections:" #~ msgstr "Avdelningar:" @@ -1949,6 +2057,10 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Reload the latest information about updates" #~ msgstr "Läs om paketinformationen från servern." +#, fuzzy +#~ msgid "Add Software Channels" +#~ msgstr "Programvaruuppdateringar" + #, fuzzy #~ msgid "Could not add any software channels" #~ msgstr "inte installerad" @@ -1960,8 +2072,8 @@ msgstr "Inte DFSG-kompatibel programvara" #~ "Need to get the changes from the central server" #~ msgstr "" #~ "Nätverksinställningar\n" -#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer " -#~ "åt andra datorer" +#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer åt " +#~ "andra datorer" #~ msgid "Show available updates and choose which to install" #~ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras" @@ -2042,8 +2154,7 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Det går inte att uppgradera alla paket." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "" -#~ "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." +#~ msgstr "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." #~ msgid "The updates are being applied." #~ msgstr "Uppdateringarna verkställs." @@ -2052,11 +2163,11 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Uppgradering slutförd" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " -#~ "andra programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " +#~ "programmet först." #, fuzzy #~ msgid "Updating package list..." @@ -2078,11 +2189,11 @@ msgstr "Inte DFSG-kompatibel programvara" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " -#~ "andra programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " +#~ "programmet först." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initierar och hämtar lista med uppdateringar..." @@ -2099,12 +2210,21 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Binary" #~ msgstr "Binär" +#~ msgid "Source" +#~ msgstr "Källkod" + #~ msgid "CD" #~ msgstr "CD" +#~ msgid "Contributed software" +#~ msgstr "Bidragen programvara" + #~ msgid "Non-free software" #~ msgstr "Ickefri programvara" +#~ msgid "US export restricted software" +#~ msgstr "Programvara med USA-exportbegränsningar" + #~ msgid "Sources" #~ msgstr "Källor" @@ -2133,6 +2253,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Components" #~ msgstr "Komponenter" +#~ msgid "Distribution:" +#~ msgstr "Distribution:" + #~ msgid "Type:" #~ msgstr "Typ:" @@ -2148,6 +2271,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "User Interface" #~ msgstr "Användargränssnitt" +#~ msgid "Version %s:" +#~ msgstr "Version %s:" + #~ msgid "New version:" #~ msgstr "Ny version" @@ -2211,6 +2337,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Activation Code:" #~ msgstr "Aktiveringskod:" +#~ msgid "Activate" +#~ msgstr "Aktivera" + #~ msgid "Please fill in both email and activation code." #~ msgstr "Fyll i både e-postadress och aktiveringskod." @@ -2220,18 +2349,16 @@ msgstr "Inte DFSG-kompatibel programvara" #~ "Försäkra dig om att du angav e-postadressen och aktiveringskoden korrekt" #~ msgid "" -#~ "Unable to show help because the help files were missing. Please report " -#~ "this to your vendor." +#~ "Unable to show help because the help files were missing. Please report this " +#~ "to your vendor." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till " -#~ "din leverantör." +#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till din " +#~ "leverantör." #~ msgid "" -#~ "Unable to show help because there are no applications available to view " -#~ "help." +#~ "Unable to show help because there are no applications available to view help." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är " -#~ "tillgängliga." +#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är tillgängliga." #~ msgid "Are you sure you want to open %d package information windows?" #~ msgstr "Är du säker på att du vill öppna %d fönster med paketinformation?" @@ -2320,9 +2447,15 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Quit" #~ msgstr "Avsluta" +#~ msgid "Select _All" +#~ msgstr "Markera _alla" + #~ msgid "Select all items" #~ msgstr "Markera alla objekt" +#~ msgid "Select _None" +#~ msgstr "Markera _inga" + #~ msgid "Deselect all items" #~ msgstr "Avmarkera alla objekt" @@ -2466,11 +2599,10 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Löser beroenden" #~ msgid "" -#~ "You must agree to the licenses covering this software before installing " -#~ "it." +#~ "You must agree to the licenses covering this software before installing it." #~ msgstr "" -#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan " -#~ "du kan installera den." +#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan du " +#~ "kan installera den." #~ msgid "I Agree" #~ msgstr "Jag accepterar" @@ -2499,6 +2631,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Required Removals" #~ msgstr "Nödvändiga borttagningar" +#~ msgid "Continue" +#~ msgstr "Fortsätt" + #~ msgid "Package" #~ msgstr "Paket" @@ -2631,6 +2766,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Print client version and exit" #~ msgstr "Skriv ut klientversionsnummer och avsluta" +#~ msgid "Get usage information" +#~ msgstr "Hämta användningsinformation" + #~ msgid "Usage: %s ..." #~ msgstr "Användning: %s ..." @@ -2706,6 +2844,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Info" #~ msgstr "Info" +#~ msgid "Status" +#~ msgstr "Status" + #~ msgid "Patches" #~ msgstr "Programfixar" @@ -2820,6 +2961,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "All Packages" #~ msgstr "Alla paket" +#~ msgid "Updates" +#~ msgstr "Uppdateringar" + #~ msgid "Uninstalled Packages" #~ msgstr "Avinstallerade paket" @@ -2904,6 +3048,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Choose file to write XML to" #~ msgstr "Välj fil att skriva XML till" +#~ msgid "Edit Services" +#~ msgstr "Redigera tjänster" + #~ msgid "URL" #~ msgstr "URL" @@ -2913,6 +3060,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "_Add service" #~ msgstr "_Lägg till tjänst" +#~ msgid "Add Service" +#~ msgstr "Lägg till tjänst" + #~ msgid "Service URL" #~ msgstr "Tjänst-URL" @@ -2953,8 +3103,8 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Kanalprenumerationer på kanal %s" #~ msgid "" -#~ "You do not have permission to subscribe or unsubscribe from channels. " -#~ "You will be unable to make any changes to the subscriptions." +#~ "You do not have permission to subscribe or unsubscribe from channels. You " +#~ "will be unable to make any changes to the subscriptions." #~ msgstr "" #~ "Du har inte rättighet att prenumerera eller säga upp prenumerationer på " #~ "kanaler. Du kommer inte att kunna göra ändringar i prenumerationer." @@ -2968,12 +3118,15 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "_Updates" #~ msgstr "_Uppdateringar" +#~ msgid "_Update All" +#~ msgstr "_Uppdatera alla" + #~ msgid "Privilege" #~ msgstr "Privilegium" #~ msgid "" -#~ "If you remove superuser privileges from yourself, you will be unable to " -#~ "re-add them.\n" +#~ "If you remove superuser privileges from yourself, you will be unable to re-" +#~ "add them.\n" #~ "\n" #~ "Are you sure you want to do this?" #~ msgstr "" @@ -3053,6 +3206,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Unable to mount '%s' as a channel" #~ msgstr "Kan inte montera \"%s\" som en kanal" +#~ msgid "Server" +#~ msgstr "Server" + #~ msgid "Server URL:" #~ msgstr "Server-URL:" @@ -3092,8 +3248,8 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Information" #~ msgid "" -#~ "Unable to show help because it was not found or because you don't have " -#~ "any help viewers available." +#~ "Unable to show help because it was not found or because you don't have any " +#~ "help viewers available." #~ msgstr "" #~ "Kan inte visa hjälp eftersom den inte hittades eller eftersom du inte har " #~ "några hjälpvisare tillgängliga." @@ -3140,6 +3296,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Username" #~ msgstr "Användarnamn" +#~ msgid "%d KB" +#~ msgstr "%d kB" + #~ msgid "%d kB" #~ msgstr "%d kB" @@ -3200,10 +3359,8 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Executive Summary" #~ msgstr "Sammanfattning" -#~ msgid "" -#~ "Update packages individually (NOTE: This is an unsupported operation)" -#~ msgstr "" -#~ "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" +#~ msgid "Update packages individually (NOTE: This is an unsupported operation)" +#~ msgstr "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" #~ msgid "Actual widget tag" #~ msgstr "Riktig widgettagg" @@ -3347,8 +3504,7 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Städar upp..." #~ msgid "" -#~ "The packages you requested are being downloaded and installed on your " -#~ "system." +#~ "The packages you requested are being downloaded and installed on your system." #~ msgstr "" #~ "Paketen du begärde håller på att hämtas och installeras på ditt system." @@ -3454,9 +3610,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ "packages. You must free up some disk space before you can continue. Some " #~ "options include:" #~ msgstr "" -#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta " -#~ "de begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. " -#~ "Det finns en del alternativ:" +#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta de " +#~ "begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. Det " +#~ "finns en del alternativ:" #~ msgid "Removing some packages from your system" #~ msgstr "Tar bort en del paket från ditt system" @@ -3468,14 +3624,13 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Töm din cache." #~ msgid "" -#~ "Warning! There may not be sufficient disk " -#~ "space to install this package, and installation of this package may fail. " -#~ "You should free up some disk space before continuing." +#~ "Warning! There may not be sufficient disk space " +#~ "to install this package, and installation of this package may fail. You " +#~ "should free up some disk space before continuing." #~ msgstr "" #~ "Varning! Det kan finnas otillräckligt med " -#~ "diskutrymme för att installera detta paket, och installation av detta " -#~ "paket kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du " -#~ "fortsätter." +#~ "diskutrymme för att installera detta paket, och installation av detta paket " +#~ "kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du fortsätter." #~ msgid "1 Package" #~ msgstr "1 paket" @@ -3493,25 +3648,24 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "nödvändiga installationer" #~ msgid "Please wait, loading page..." -#~ msgstr "" -#~ "Var vänlig vänta, läser in sidan..." +#~ msgstr "Var vänlig vänta, läser in sidan..." #~ msgid "" #~ "You have no packages from this channel currently installed on your system." #~ msgstr "" -#~ "Du har för närvarande inte några paket från denna kanal installerade på " -#~ "ditt system." +#~ "Du har för närvarande inte några paket från denna kanal installerade på ditt " +#~ "system." #~ msgid "" -#~ "You can visit the channel's about page " -#~ "to get more information about what software is available, or you can go " +#~ "You can visit the channel's about page to " +#~ "get more information about what software is available, or you can go " #~ "directly to the install page to " #~ "install software." #~ msgstr "" -#~ "Du kan besöka kanalens om-sida för att " -#~ "få mer information om vilken programvara som är tillgänglig, eller gå " -#~ "direkt till installationssidan för " -#~ "att installera program." +#~ "Du kan besöka kanalens om-sida för att få " +#~ "mer information om vilken programvara som är tillgänglig, eller gå direkt " +#~ "till installationssidan för att " +#~ "installera program." #~ msgid "View the about page." #~ msgstr "Visa om-sidan." @@ -3523,8 +3677,8 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Gå tillbaka till sammanfattningen." #~ msgid "" -#~ "You don't have any packages installed from this channel. The following " -#~ "pre-defined sets of packages are available, or you may select individual " +#~ "You don't have any packages installed from this channel. The following pre-" +#~ "defined sets of packages are available, or you may select individual " #~ "packages from the Install page." #~ msgstr "" #~ "Du har inga paket installerade från denna kanal. Följande fördefinierade " @@ -3532,37 +3686,37 @@ msgstr "Inte DFSG-kompatibel programvara" #~ "href=updater:available_page>installationssidan." #~ msgid "" -#~ "To install new software from this channel, visit the install page." +#~ "To install new software from this channel, visit the install page." #~ msgstr "" -#~ "För att installera ny programvara går du till installationssidan." +#~ "För att installera ny programvara går du till installationssidan." #~ msgid "" -#~ "To remove already installed software from this channel, visit the remove page." +#~ "To remove already installed software from this channel, visit the remove page." #~ msgstr "" -#~ "För att ta bort redan installerad programvara från denna kanal går du " -#~ "till borttagningssidan." +#~ "För att ta bort redan installerad programvara från denna kanal går du till " +#~ "borttagningssidan." #~ msgid "Unsubscribe from this channel." #~ msgstr "" -#~ "Säg upp prenumerationen på " -#~ "denna kanal." +#~ "Säg upp prenumerationen på denna " +#~ "kanal." #~ msgid "" -#~ "There is 1 update available in this channel, totalling %s " -#~ "of data to be downloaded." +#~ "There is 1 update available in this channel, totalling %s of " +#~ "data to be downloaded." #~ msgstr "" #~ "Det finns 1 uppdatering tillgänglig i denna kanal, som kräver att " #~ "%s data hämtas." #~ msgid "" -#~ "There are %s updates available in this channel, totalling %s of data to be downloaded." +#~ "There are %s updates available in this channel, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver " -#~ "att %s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver att " +#~ "%s data hämtas." #~ msgid "Essential Updates" #~ msgstr "Nödvändiga uppdateringar" @@ -3576,6 +3730,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "1 update" #~ msgstr "1 uppdatering" +#~ msgid "%d updates" +#~ msgstr "%d uppdateringar" + #~ msgid "" #~ "The following packages from this channel are currently installed on your " #~ "system." @@ -3591,36 +3748,34 @@ msgstr "Inte DFSG-kompatibel programvara" #~ "ditt system.

" #~ msgid "" -#~ "

You can go to the Update page to " -#~ "view available updates for your software in this channel, or return to " -#~ "the Summary to view all available updates." -#~ "

" +#~ "

You can go to the Update page to view " +#~ "available updates for your software in this channel, or return to the Summary to view all available updates.

" #~ msgstr "" -#~ "

Du kan gå till uppdateringssidan " -#~ "för att se de uppdateringar till din programvara som finns i denna kanal, " -#~ "eller gå tillbaka till sammanfattningen " -#~ "för att se alla tillgängliga uppdateringar.

" +#~ "

Du kan gå till uppdateringssidan för " +#~ "att se de uppdateringar till din programvara som finns i denna kanal, eller " +#~ "gå tillbaka till sammanfattningen för att se " +#~ "alla tillgängliga uppdateringar.

" #~ msgid "" #~ "

You can go to the Summary to view all " #~ "available updates for your system.

" #~ msgstr "" -#~ "

Du kan gå till sammanfattningen för " -#~ "att se alla uppdateringar som är tillgängliga för ditt system.

" +#~ "

Du kan gå till sammanfattningen för att " +#~ "se alla uppdateringar som är tillgängliga för ditt system.

" #~ msgid "" #~ "The following packages from this channel are available for " #~ "installation." #~ msgstr "" -#~ "Följande paket från denna kanal är tillgängliga för " -#~ "installation." +#~ "Följande paket från denna kanal är tillgängliga för installation." #~ msgid "" -#~ " Package names that are in gray indicate " -#~ "that a newer version of this package is already installed." +#~ " Package names that are in gray indicate that " +#~ "a newer version of this package is already installed." #~ msgstr "" -#~ " Paketnamn som är grå indikerar att en " -#~ "nyare version av detta paket redan är installerat." +#~ " Paketnamn som är grå indikerar att en nyare " +#~ "version av detta paket redan är installerat." #~ msgid "Name:" #~ msgstr "Namn:" @@ -3628,6 +3783,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Installed Version:" #~ msgstr "Installerad version:" +#~ msgid "Size:" +#~ msgstr "Storlek:" + #~ msgid "bytes" #~ msgstr "byte" @@ -3659,10 +3817,17 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Du prenumererar för närvarande på alla tillgängliga kanaler!" #~ msgid "" -#~ "There is one update available for your system, totalling %s " +#~ "There is one update available for your system, totalling %s of " +#~ "data to be downloaded." +#~ msgstr "" +#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver att " +#~ "%s data hämtas." + +#~ msgid "" +#~ "There are %s updates available for your system, totalling %s " #~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver " +#~ "Det finns %s uppdateringar tillgängliga för ditt system, som kräver " #~ "att %s data hämtas." #~ msgid " Of these updates, one is urgent." @@ -3681,8 +3846,7 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Synlig felsökningsnivå, går från 0 (ingenting) till 6 (allting)" #~ msgid "Log file debugging level, ranges from 0 (nothing) to 6 (everything)" -#~ msgstr "" -#~ "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" +#~ msgstr "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" #~ msgid "The XAuthority file (usually from GDM)" #~ msgstr "XAuthority-filen (vanligtvis från GDM)" @@ -3701,11 +3865,11 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgstr "Hämtar kanalgrafik..." #~ msgid "" -#~ "An error occurred trying to parse the channel list. You should ensure " -#~ "that you are running a supported distribution and try again later." +#~ "An error occurred trying to parse the channel list. You should ensure that " +#~ "you are running a supported distribution and try again later." #~ msgstr "" -#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig " -#~ "om att du använder en distribution som stöds och försöka igen senare." +#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig om " +#~ "att du använder en distribution som stöds och försöka igen senare." #~ msgid "Navigation" #~ msgstr "Navigering" @@ -3758,15 +3922,24 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Unable to create directory %s for local package storage" #~ msgstr "Kan inte skapa katalogen %s för lokal paketlagring" +#~ msgid "Download Log" +#~ msgstr "Hämtningslogg" + #~ msgid "Verification Log" #~ msgstr "Verifieringslogg" +#~ msgid "%.2f MB" +#~ msgstr "%.2f MB" + #~ msgid "%d bytes" #~ msgstr "%d byte" #~ msgid "%%p%%%% (%s of %s) - %s/s" #~ msgstr "%%p%%%% (%s av %s) - %s/s" +#~ msgid "%s - %s/s" +#~ msgstr "%s - %s/s" + #~ msgid "Downloading data..." #~ msgstr "Hämtar data..." @@ -3788,6 +3961,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "zero" #~ msgstr "noll" +#~ msgid "one" +#~ msgstr "en" + #~ msgid "two" #~ msgstr "två" @@ -3852,6 +4028,9 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "Allowed cache difference:" #~ msgstr "Tillåten cacheskillnad:" +#~ msgid "seconds" +#~ msgstr "sekunder" + #~ msgid "%d %s" #~ msgstr "%d %s" @@ -3896,4 +4075,4 @@ msgstr "Inte DFSG-kompatibel programvara" #~ msgid "translator-credits" #~ msgstr "" #~ "Christian Rose\n" -#~ "Skicka synpunkter på översättningen till sv@li.org" +#~ "Skicka synpunkter på översättningen till sv@li.org" \ No newline at end of file diff --git a/po/ta.po b/po/ta.po new file mode 100644 index 00000000..cf08e19a --- /dev/null +++ b/po/ta.po @@ -0,0 +1,1430 @@ +# Tamil translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-08-04 02:52+0000\n" +"Last-Translator: Raghavan \n" +"Language-Team: Tamil \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "தினமும்" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "ஒவ்வோரு இரு நாட்கள்" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "வாரம் தோறும்" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "ஒவ்வோரு இரு வாரங்கள்" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "ஒவ்வொரு %s நாட்கள்" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "ஒரு வார்த்திற்க்கு பிறகு" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "இரண்டு வாரத்திற்க்கு பிறகு" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "ஒரு மாதத்திற்க்கு பின்" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "%s நாட்களுக்கு பிறகு" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "தெயவு செய்து இயக்கியினுள் வட்டை செலுத்தவும்:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:207 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "'%s' நிறுவமுடியவில்லை" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +#, fuzzy +msgid "Error during update" +msgstr "புதுப்பிக்கும் பொழுது பிழை ஏற்பட்டுள்ளது" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +#, fuzzy +msgid "Not enough free disk space" +msgstr "வட்டுவில்் போதுமான காலி இடம் இல்லை" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +#, fuzzy +msgid "Asking for confirmation" +msgstr "உறுதிப்படுத்த கேட்கிறது" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "மேம்படுத்துகிறது" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +#, fuzzy +msgid "System upgrade is complete." +msgstr "கணிணி மேம்பாடு முடிந்தது." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "'%s' நிறுவ முடியவில்லை" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#, fuzzy +msgid "The 'diff' command was not found" +msgstr "'diff' என்ற கட்டளை இல்லை" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, python-format +msgid "Remove %s" +msgstr "%s நீக்கு" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, python-format +msgid "Install %s" +msgstr "%s நிறுவு" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format +msgid "Upgrade %s" +msgstr "%s மேம்படுத்து" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +#, fuzzy +msgid "Reboot required" +msgstr "மறு தொடக்கம் தேவைப்படுகிறது" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:462 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:523 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:550 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:556 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:617 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:650 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:652 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:703 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:810 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:814 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:816 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:827 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:828 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:847 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:882 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:883 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/th.po b/po/th.po index 4362b371..1d64a830 100644 --- a/po/th.po +++ b/po/th.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-24 16:44+0000\n" -"Last-Translator: Roys Hengwatanakul \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:44+0000\n" +"Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,57 +54,53 @@ msgstr "หลังจาก 1 เดือน" msgid "After %s days" msgstr "หลังจาก %s วัน" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "_ติดตั้งปรัยปรุง" +msgstr "%s ปรับปรุง" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "เซิร์ฟเวอร์หลัก" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "เซิร์ฟเวอร์สำหรับประเทศ %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "เซิร์ฟเวอร์ที่ใกล้ที่สุด" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "เซิร์ฟเวอร์ที่กำหนดเอาเอง" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "ซอฟต์แวร์ปรับปรุง" +msgstr "ซอฟต์แวร์แชนเนล" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "เปิดใช้งาน" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(ต้นฉบับโปรแกรม)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "ต้นฉบับโปรแกรม" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -123,17 +119,18 @@ msgid "Error removing the key" msgstr "มีปัญหาขณะลบกุจแจ" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"มีปัญหาตรวจสอบแผ่นซีดี\n" +"มีปัญหาในการตรวจสอบแผ่นซีดี\n" "\n" "%s" @@ -154,8 +151,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " -"หรือ apt-get ก่อนดำเนินการต่อไป" +"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ " +"กรุณาซ่อมโดยใช้โปรแกรม synaptic หรือ apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -165,21 +162,22 @@ msgstr "ไม่สามารถปรับปรุง meta แพกเก msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา " +msgstr "" +"ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุงรุ่น\n" +"\n" +"กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" +"upgrade/ ในรายงานด้วย" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" @@ -190,8 +188,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " -"คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" +"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ " +"นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย คุณอาจจะลองอีกครั้งภายหลังก็ได้ " +"กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -204,13 +203,11 @@ msgid "" "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -220,13 +217,12 @@ msgid "" msgstr "" "ระบบของคุณไม่มีอูบันตูเดสก์ท็อป คูบันตูเดสก์ท็อป หรือ เอ็ดดูบันตูเดกส์ท็อป " "แพกเกจและไม่สามารถที่จะตรวจสอบได้ว่าคุณใช้อูบันตูรุ่นไหนอยู่\n" -"กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic หรือโปรแกรม apt-get " -"ก่อนดำเนินการต่อไป" +" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic " +"หรือโปรแกรม apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "ไม่สามารถเอามาได้" +msgstr "ไม่สามารถเพิ่มซีดีได้" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -237,6 +233,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก " +"กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" +"\n" +"ปัญหาคือ : \n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -244,7 +245,7 @@ msgstr "กำลังอ่านจากที่เก็บชั่วค #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "ดึงข้อมูลจากเครือข่ายสำหรับปรับปรุงรุ่นหรือไม่?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -253,6 +254,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ " +"่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" +"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ " +"'ตกลง' ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -270,13 +275,14 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "ไม่เจอรายการของเซิรฟ์เวอร์เสริมสำหรับปรับปรุงขณะที่ตรวจสอบแหล่งข้อมูลของคุณ " -"นี่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริมล้าสมัย\n" +"นี" +"่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริม" +"ล้าสมัย\n" "\n" -"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก 'Yes' " -"ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" +"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก " +"'Yes' ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "สร้าง default sources?" @@ -301,20 +307,20 @@ msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" +msgstr "" +"การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "แหล่งอื่นๆใช้ไม่ได้" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"บางรายการใน souces.list ของคุณใช้ไม่ได้ " +"บางรายการใน souces.list ของคุณถุกปิดไว้ " "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรม synaptic" @@ -342,19 +348,18 @@ msgid "" "apt-get clean'." msgstr "" "การปรับปรุงถูกยกเลิกแล้ว กรุณาฟรีอย่างน้อย %s ของดิสก์พื้นที่บน %s " -"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" +"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-" +"get clean'" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -362,27 +367,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" -"configure -a)" +"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง " +"โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --configure -a)\n" +"\n" +"กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" +"upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " -"mediaและลองอีกครั้ง " +"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ " +"installation mediaและลองอีกครั้ง " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "สนับสนุนสำหรับบางแอพพลิเคชันสิ้นสุดลง" -#: ../DistUpgrade/DistUpgradeControler.py:505 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -390,74 +397,76 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจากชุมชน " -"('universe') แต่เพียงอย่างเดียว\\n\n" -"\\n\n" -"ถ้าคุณไม่ได้เลือกใช้แหล่งข้อมูล 'universe' แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป " +"" +"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจาก" +"ชุมชน แต่เพียงอย่างเดียว\n" +"\n" +"ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_ข้ามขั้นตอนนี้" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "เ_อาออก" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " +msgstr "" +"เกิดปัญหาขึ้นขณะทำการเก็บกวาด " +"กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "เริ่มระบบใหม่อีกครั้ง" +msgstr "คืนระบบสู่สถานะแรกเริ่ม" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "ดึงพอร์ตย้อนหลังของ '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "กำลังเตรียมปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy 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/dist-" "upgrade/ in the bugreport." -msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา " +msgstr "" +"ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง " +"กรุณารายงานว่านี่เป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -466,54 +475,52 @@ msgid "" "bugreport." msgstr "" "หลังจากการปรับปรุงข้อมูลของแพจเกจ แพจเกจที่จำเป็น '%s'ได้หายไป\n" -"นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานว่าเป็นปัญหา" +"นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' " +"และแนบไฟล์ใน /var/log/dist-upgrade/ กับรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "_ถามการยืนยันจากคุณก่อน" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "กำลังปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "กรุณาใส่ '%s' เข้าไปในเครื่องเล่น '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "ปรับปรุงเสร็จสิ้นแล้ว" +msgstr "ดึงข้อมูลเสร็จสิ้นแล้ว" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li ที่ %s/s" +msgstr "กำลังดึงไฟล์ %li จาก %li ที่ %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "เหลือประมาณ %li นาที" +msgstr "เหลือประมาณ %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "ดาวน์โหลดไฟล์ %li จาก %li" +msgstr "กำลังดึงไฟล์ %li จาก %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "กำลังเปลี่ยนแปลง" @@ -528,136 +535,138 @@ 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 bugreport." msgstr "" +"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" +"manager' และ กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"เปลี่ยนไฟล์ปรับแต่ง\n" -"'%s'?" +"เปลี่ยนไฟล์ปรับแต่งที่แก้ไขเอง\n" +"'%s' หรือไม่?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "ไม่เจอคำสั่ง 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "เกิดข้อผิดพลาดอย่างร้ายแรง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"กรุณารายงานว่าเป็นปัญหาและส่งไฟล์ /var/log/dist-upgrade.log and /var/log/dist-" -"upgrade-apt.log มาในรายงานของคุณ การปรับปรุงถูกยกเลิก\n" -"ไฟล์เก่า sources.list ของคุณถูกเก็บไว้ที่ /etc/apt/sources.list.distUpgrade" +"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and " +"/var/log/dist-upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" +"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ " +"/etc/apt/sources.list.distUpgrade" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s แพกเกจจะถูกลบออก" +msgstr[0] "%d แพกเกจจะถูกลบออก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s แพกเกจใหม่จะถูกติดตั้ง" +msgstr[0] "%d แพกเกจใหม่จะถูกติดตั้ง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s แพกเกจจะถูกปรับปรุง" +msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, fuzzy msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "คุณจะต้องดาวน์โหลดทั้งหมด %s" +msgstr "" +"\n" +"\n" +"คุณจะต้องดาวน์โหลดทั้งหมด %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "การปรับปรุงอาจจะใช้เวลานานหลายชั่วโมงและไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" +msgstr "" +"ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง " +"และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "ไม่มีข้อมูลปรับปรุงรุ่นสำหรับระบบของคุณ การปรับปรุงรุ่นจึงถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "ลบออก %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "ติดตั้ง %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "ปรับปรุงรุ่น %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "เหลือประมาณ %li วัน %li ชั่วโมง %li นาที" +msgstr "%li วัน %li ชั่วโมง %li นาที" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "เหลือประมาณ %li ชั่วโมง %li นาที" +msgstr "%li ชั่วโมง %li นาที" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li นาที" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li วินาที" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -667,12 +676,13 @@ msgstr "ต้องเริ่มระบบใหม่" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" +msgstr "" +"การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ " +"คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -687,7 +697,8 @@ msgid "" msgstr "" "ต้องการยกเลิกการปรับปรุงที่กำลังทำอยู่หรือไม่?\n" "\n" -"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" +"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง " +"ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -699,7 +710,7 @@ msgstr "เริ่มการปรับปรุงหรือไ #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "กำลังปรับปรุงอูบันตูขึ้นไปเป็นรุ่น 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -714,9 +725,8 @@ msgid "Difference between the files" msgstr "ข้อแตกต่างระหว่างไฟล์" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "กำลังดาวน์โหลดและทำการปรับปรุง" +msgstr "กำลังดาวน์โหลดและติดตั้งปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -784,7 +794,6 @@ msgstr "ไม่สามารถดาวน์โหลดบันทึก msgid "Please check your internet connection." msgstr "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ไม่สามารถเรียกใช้เครื่องมือปรับปรุง" @@ -826,18 +835,20 @@ msgstr "ไม่สามารถเอาออกมาได้" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "" +"ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ " +"อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" msgstr "ไม่สามารถตรวจเช็คความถูกต้องได้" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "" +"ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -847,135 +858,126 @@ msgstr "ไม่สามารถยืนยันว่าเป็นขอ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "" +"ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li ด้วย %s/s" +msgstr "" +"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว " +"%(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li ด้วย %s/s" +msgstr "กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" +msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +"ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง " +"กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "อูบันตู 5.10 Security Updates" +msgstr "ปรับปรุงด้านความปลอดภัยที่สำคัญ" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "การปรับปรุงที่แนะนำให้ทำ" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "_ติดตั้งปรัยปรุง" +msgstr "การปรับปรุงที่เสนอให้ทำ" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "พอร์ตย้อนหลัง" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" +msgstr "ปรับปรุงชุดเผยแพร่" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "_ติดตั้งปรัยปรุง" +msgstr "_ปรับปรุงอื่นๆ" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "รุ่น %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "กำลังดาวน์โหลดรายการของการเปลี่ยนแปลง..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "ไ_ม่เลือกทั้งหมด" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "เ_ลือก" +msgstr "เ_ลือกทั้งหมด" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "ขนาดดาวน์โหลด: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "คุณสามารถติดตั้ง %s รายการปรับปรุง" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "กรุณารอสักครู่ นี่อาจจะใช้เวลาสักหน่อย" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "ปรับปรุงเสร็จสิ้นแล้ว" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "_ติดตั้งปรัยปรุง" +msgstr "กำลังตรวจหาข้อมูลปรับปรุง" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "รุ่นใหม่: %s (ขนาด: %s)" +msgstr "จากรุ่นเก่า: %(old_version)s ไปสู่รุ่นใหม่ %(new_version)s" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "รุ่น %s: \n" +msgstr "รุ่น %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(ขนาด: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "ชุดเผยแพร่(distribution)ของคุณไม่มีบริการสนับสนุนแล้ว" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " @@ -985,49 +987,44 @@ msgstr "" "ปรับปรุงขึ้นไปรุ่นถัดไปของอูบันตูลีนุกซ์ กรุณาอ่าน http://www.ubuntu.com " "สำหรับรายละเอียดเพิ่มเติมในการปรับปรุงรุ่น" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "มีชุดแจกจ่ายใหม่ '%s' " -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ \"Synaptic\" หรือ " -"คำสั่ง \"sudo apt-get install -f\" ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ " +"\"Synaptic\" หรือ คำสั่ง \"sudo apt-get install -f\" " +"ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "ไม่มี" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1036,25 +1033,20 @@ msgid "" msgstr "" "คุณต้องตรวจหารายการปรับปรุงด้วยตนเอง\n" "\n" -"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื คุณสามารถปรับแต่งใน\"System\" -> " -"\"Administration\" -> \"Software Properties\"." +"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื " +"คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "รักษาระบบของคุณให้ทันสมัย" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"มีปัญหาตรวจสอบแผ่นซีดี\n" -"\n" -"%s" +msgstr "ไม่สามารถทำการติดตั้งปรับปรุงได้ทั้งหมด" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "เริ่มการปรับปรุงหรือไม่?" +msgstr "เริ่มโปรแกรมจัดการปรับปรุง" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1062,7 +1054,7 @@ msgstr "เปลี่ยนแปลง" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "เปลี่ยนแปลงและคำอธิบายของการปรับปรุงรุ่น" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1087,6 +1079,10 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"ดำเนินการปรับปรุงชุดเผยแพร่ ทำการติดตั้งปรับปรุงมากที่สุดเท่าที่จะทำได้ \n" +"\n" +"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น " +"ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1100,7 +1096,8 @@ msgstr "ซอฟต์แวร์ปรับปรุง" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" +msgstr "" +"ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1115,9 +1112,8 @@ msgid "_Check" msgstr "เ_ลือก" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" +msgstr "_ปรับปรุงชุดเผยแพร่" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1134,25 +1130,23 @@ msgstr "เปลี่ยนแปลง" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "ปรับปรุง" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "ปรับปรุงทางอินเทอร์เน็ต" +msgstr "ปรับปรุงอัตโนมัติ" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "ซีดีรอม/ดีวีดี" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "ปรับปรุงทางอินเทอร์เน็ต" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "ปรับปรุงทางอินเทอร์เน็ต" +msgstr "อินเทอร์เน็ต" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1164,11 +1158,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู " +"กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " +"รายการของซอฟต์แวร์ที่ติดตั้งและความถี่ในการเรียกใช้งานจะถูกเก็บไว้ " +"และส่งโดยไม่ระบุชื่อไปที่โครงการอูบันตูอาทิตย์ละครั้ง\n" +"\n" +"ผลลัพท์ที่ได้จะใช้ในการเพิ่มการสนับสนุนสำหรับแอพพลิเคชันที่เป็นที่นิยม " +"และเรียงลำดับแอพพลิเคชันในการค้นหาข้อมูล" #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "เพิ่ม_ซีดีรอม" +msgstr "เพิ่ม ซีดีรอม" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1179,9 +1179,8 @@ msgid "D_elete downloaded software files:" msgstr "_ลบซอฟแวร์ไฟล์ที่ดาวน์โหลด:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "ดาวน์โหลดเสร็จแล้ว" +msgstr "ดาวน์โหลดจาก:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1195,7 +1194,10 @@ msgstr "ปรัปรุงทางอินเทอร์เน็ต" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเท่านั้น" +msgstr "" +"" +"การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเ" +"ท่านั้น" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1207,34 +1209,32 @@ msgstr "คืนกุญแจเดืมของชุดเผยแพร #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "คุณสมบัติของซอฟแวร์" +msgstr "แหล่งของซอฟแวร์" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "ต้นฉบับโปรแกรม" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "สถิติ" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "ส่งข้อมูลสถิติ" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "บุคคลที่สาม" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_ตรวจหารายการปรับปรุงโดยอัตโนมัติ:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "_ดาวน์โหลดปรับปรุงอยู่เบื้องหลังแต่ยังไม่ต้องติดตั้ง" +msgstr "_ดาวน์โหลดปรับปรุงโดยอัตโนมัติแต่ยังไม่ต้องติดตั้ง" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1245,7 +1245,6 @@ msgid "_Install security updates without confirmation" msgstr "_ติดตั้งการปรับปรุงด้านความปลอดภัยโดยไม่ต้องถามก่อน" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1254,11 +1253,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"ข้อมูลของช่องล้าสมัย\n" +"ข้อมูลเกี่ยวกับซอฟต์แวร์ที่มีล้าสมัย\n" "\n" -"คุณจะต้องดาวน์โหลดข้อมูลใหม่ของช่องเพื่อที่จะติดตั้งซอฟแวร็หรือปรับปรุงจากช่องที่เพิ่มใหม่หรือเปลี่ยนช่องใหม่\n" +"เพื่อที่จะติดตั้งซอฟต์แวร์และปรับปรุงจากแหล่งที่เพิ่มหรือเปลี่ยนใหม่ " +"คุณจะต้องโหลดข้อมูลเกี่ยวกับซอฟต์แวร์ใหม่\n" "\n" -"คุณจะต้องมีการสื่อสารทางอินเตอร์เน็ตที่ใช้งานได้ที่เพื่อที่จะดำเนินการต่อไป" +"คุณจะต้องมี่อินเทอร์เน็ตที่ใช้ได้เพื่อที่จะดำเนินการต่อไป" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1281,7 +1281,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1289,10 +1288,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"กรุณาเติมให้ครบบรรทัด APT ของช่องที่คุณต้องการจะเพิ่ม\n" +"กรุณาเติมให้ครบบรรทัด APT " +"ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" "\n" -"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของช่อง เช่น \"deb http://ftp.debian." -"org sarge main\"" +"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb " +"http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1308,7 +1308,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "แก้ไขต้นฉบับ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1316,7 +1316,7 @@ msgstr "ตรวจสอบแผ่นซีดี" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "เ_พิ่มต้นฉบับ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1335,21 +1335,23 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่นได้(ถ้าเป็นไปได้)" +"" +"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่น" +"ได้(ถ้าเป็นไปได้)" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" msgstr "ตรวจหาชุดเผยแพร่ใหม่" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ คุณจะต้องโหลดช่องรายการใหม่เอง " -"ตัวเลือกนี้จะซ่อนคำเตือนที่จะแสดงในกรณีนี้" +"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ " +"คุณจะต้องโหลดช่องรายการใหม่เอง " +"ตัวเลือกนี้ทำให้ซ่อนคำเตือนที่จะแสดงในกรณีนี้ได้" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1364,273 +1366,210 @@ msgid "Stores the size of the update-manager dialog" msgstr "บึนทึกขนาดของหน้าต่างของโปรแกรมจัดการปรับปรุง" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" -msgstr "บันทึกสถานะของตัวขยาย(expander)ที่มีรายการของการเปลี่ยนแปลงและคำบรรยาย" +msgstr "บันทึกสถานะของตัวขยายที่มีรายการของการเปลี่ยนแปลงและคำบรรยาย" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" msgstr "ขนาดของหน้าต่าง" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "ปรับแต่งช่องทางซอฟแวร์และปรับปรุงทางอินเตอร์เน็ต" +msgstr "ปรับแต่งแหล่งสำหรับซอฟต์แวร์และปรับปรุงที่ติดตั้งได้" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "อูบันตู 5.10 Updates" +msgstr "อูบันตู 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "ชุมชนดูแล (Universe)" +msgstr "ชุมชนดูแล" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "ไม่ฟรี(ลิขสิทธิ์)" +msgstr "ซอฟต์แวร์จำกัดการใช้งาน" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "ซีดีรอมที่มีอูบันตู 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "อูบันตู 6.06 'Dapper Drake'" +msgstr "อูบันตู 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "ชุมชนดูแล (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "ชุมชนดูแล (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "ชุมชนดูแล (Universe)" +msgstr "ชุมชนดูแล ซอฟต์แวร์แบบเปิดเผย" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "ไม่ฟรี(ลิขสิทธิ์)" +msgstr "ไดรเวอร์ที่ไม่ฟรี" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์ " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "ไม่ฟรี(ลิขสิทธิ์)" +msgstr "ซอฟต์แวร์จำกัดการใช้งาน(Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "อูบันตู 6.06 'Dapper Drake'" +msgstr "ซีดีรอมที่มีอูบันตู 6.06 LST 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "การปรับปรุงแบบย้อนหลัง" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "อูบันตู 5.10 'Breezy Badger'" +msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "อูบันตู 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "อูบันตู 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "อูบันตู 5.10 'Breezy Badger'" +msgstr "อูบันตู 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "ซีดีรอมที่มีอูบันตู 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "สนับสนุนอย่างเป็นทางการ" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "อูบันตู 5.10 Security Updates" +msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "อูบันตู 5.10 Updates" +msgstr "อูบันตู 5.04 ปรับปรุง" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "อูบันตู 5.10 Backports" +msgstr "อูบันตู 5.04 พอร์ตย้อนหลัง" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "อูบันตู 5.10 'Breezy Badger'" +msgstr "อูบันตู 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "ชุมชนดูแล (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "ซีดีรอมที่มีอูบันตู 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "ซอฟแวร์บางตัวไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" +msgstr "ไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "จำกัดลิขสิทธิ์" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "อูบันตู 5.10 Security Updates" +msgstr "อูบันตู 4.10 ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "อูบันตู 5.10 Updates" +msgstr "อูบันตู 4.10 ปรับปรุง" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "อูบันตู 5.10 Backports" +msgstr "อูบันตู 4.10 พอร์ตย้อนหลัง" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "เดเบียน 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "เดเบียน 3.1 \"Sarge\" ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "เดเบียน \"Etch\" (กำลังทดสอบ)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "เดเบียน \"Sid\" (ผันผวน)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอยู่กับไม่ฟรี" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "_ติดตั้งปรัยปรุง" +#~ msgstr "_ปรับปรุงตามปกติ" #~ msgid "Cancel _Download" #~ msgstr "ยกเลิก_ดาวน์โหลด" @@ -1677,16 +1616,17 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All Upgrades\" " -#~ "ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get dist-upgrade" -#~ "\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" +#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All " +#~ "Upgrades\" ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get " +#~ "dist-upgrade\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" #~ msgid "The following updates will be skipped:" #~ msgstr "การปรับปรุงต่อไปนี้จะถูกข้ามไป:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "เหลือประมาณ %li วินาที" @@ -1740,7 +1680,8 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgstr "แก้ไขช่องทาง" #~ msgid "_Add Channel" -#~ msgstr "_เพิ่มช่องทาง" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "_เพิ่มช่องทาง" #~ msgid "_Custom" #~ msgstr "_กำหนดเอง" @@ -1759,12 +1700,12 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" #~ "การปรับปรุงถูกยกเลิก กรุณาทำให้มีพื้นที่ว่างในดิสก์อย่างน้อย %s " -#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get " -#~ "clean'." +#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo " +#~ "apt-get clean'." #~ msgid "%s remaining" -#~ msgstr "%s เหลืออีก" +#~ msgstr "%s เหลืออีก" \ No newline at end of file diff --git a/po/tr.po b/po/tr.po index e63176a2..6d03541f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:45+0000\n" -"Last-Translator: Özgur KIRCALI \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-09-27 21:59+0000\n" +"Last-Translator: Kayra Akman \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,57 +55,53 @@ msgstr "Bir ay sonra" msgid "After %s days" msgstr "%s gün sonra" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" -msgstr "" +msgstr "%s güncellemeleri" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "Ana sunucu" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "%s sunucusu" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "En yakın sunucu" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "Özel sunucular" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Kanal Düzenle" +msgstr "Yazılım Kanalı" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "Etkin" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Kaynak Kodu)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Kaynak Kodu" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -117,18 +113,21 @@ msgstr "Seçili dosyayı aktarmada hata" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." +msgstr "" +"Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Anahtar kaldırmada hata" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -164,12 +163,11 @@ msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "" +msgstr "Gerekli bir paketin kaldırılması gerekmekte" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "Güncelleme hesaplanamadı" #: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" @@ -178,11 +176,14 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"Yükseltmeyi hesaplarken çözümlenemeyen bir hata oluştu.\n" +"\n" +"Lütfen bu hatayı 'update-manager' için bildirin, hata raporuna /var/log/dist-" +"upgrade/ konumundaki dosyaları da ekleyin." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "" +msgstr "Bazı paketlerin doğrulamasında hata" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -190,6 +191,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"Bazı paketler doğrulanamadı. Bu geçici bir ağ sorunu olabilir. Daha sonra " +"tekrar deneyebilirsiniz. Doğrulanamamış paketlerin listesi için aşağıya " +"bakınız." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -200,12 +204,12 @@ msgstr "'%s' yüklenemiyor" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +msgstr "" +"Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "" +msgstr "Meta-paket kestirilemedi" #: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy @@ -223,7 +227,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" -msgstr "" +msgstr "CD eklemede hata" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -234,6 +238,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"CD eklenirken bir hata oluştu, yükseltme durduruuyor. Eğer düzgün bir Ubuntu " +"CD'si kullanıyorsanız bu hatayı bildirin.\n" +"\n" +"Hata mesajı:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -241,7 +250,7 @@ msgstr "Önbellek okunuyor" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "Yükseltme için veriler ağdan indirilsin mi?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -250,6 +259,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"Yükseltme ağı kullanarak en sün güncellemeleri denetleyebilir ve mevcut " +"CD'de olmayan paketleri indirebilir.\n" +"Eğer ağa erişiminiz hızlıysa ya da pahalı değilse 'Evet'i seçmelisiniz. Aksi " +"halde 'Hayır'ı seçin." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -266,11 +279,17 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"Depo bilgileriniz taranırken güncelleme için yansı girdisi bulunamadı. Bu " +"dahili bir yansı çalıştırdığınız ya da yansı bilgisi güncel olmadığı için " +"gerçekleşmiş olabilir.\n" +"\n" +"'sources.list' dosyanızı tekrar oluşturmak istiyor musunuz? Eğer burada " +"'Evet'i seçersiniz '%s'den '%s'e kadar olan girdiler güncellenecek.\n" +"'Hayır'ı seçerseniz güncelleme iptal edilecek." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "Öntanımlı depolar kaydedilsin mi??" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -287,13 +306,15 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "Depo bilgisi geçersiz" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"Depo bilgisini güncelleme işlemi geçersiz bir dosya oluşturdu. Lütfen bu " +"hatayı bildirin." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -305,6 +326,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" +"sources.list dosyasındaki bazı üçüncü taraf girdiler etkisiz hale getirildi. " +"Yükseltmenin ardından bu girdileri 'software-properties' aracını ya da " +"synaptic'i kullanarak tekrar etkinleştirebilirsiniz." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -329,17 +353,19 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"Yükseltme sonlandırılıyor. Lütfen %s'de en az %s disk alanını boşaltın. " +"Çöpünüzü boşaltın ve 'sudo apt-get clean' kullanarak önceden kurulumların " +"geçici paketlerini kaldırın." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,12 +373,17 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"Yükseltmeden şimdi iptal ediliyor. Sisteminiz kararsız bir durumda olabilir. " +"Bir kurtarma işlemi gerçekleştirildi. (dpkg --configure -a).\n" +"\n" +"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine " +"/var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -360,11 +391,11 @@ msgstr "" "Yükseltme şimdi iptal edilecek. Lütfen internet bağlantınızı veya kurulum " "ortamınızı kontrol edin ve yeniden deneyin. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Bazı uygulamalar için destek sona erdi" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -373,65 +404,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "Kullanılmayan paketler kaldırılsın mı?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "Bu Adımı _Atla" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Kaldır" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "" +msgstr "İşlem sırasında hata oluştu" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" +"Temizleme sırasında bazı sorunlar oluştu. Bilgi için lütfen aşağıdaki mesaja " +"bakın. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "" +msgstr "Orijinal sistem durumuna geri dönülüyor" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "" +msgstr "Paket yöneticisi denetleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "Depo bilgileri güncelleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -440,28 +471,32 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"Paket bilgileriniz güncellendikten sonra temel bir paket olan '%s' artık " +"bulunamıyor.\n" +"Bu drum önemli bir hata olabilir, lütfen 'update-manager' paketi için bu " +"hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki " +"dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "" +msgstr "Onay isteniyor" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Yükseltiliyor" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "Kullanılmayan yazılımlar aranıyor" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "Lütfen '%2s' sürücüsüne '%1s' takın" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 #, fuzzy @@ -471,25 +506,24 @@ msgstr "İndirme tamamlandı" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "Dosyalar indiriliyor. İnen: %li Toplam: %li Hız: %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" -msgstr "" +msgstr "Yaklaşık %s kaldı" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "Dosyalar inidiriliyor. İnen: %li Toplam: %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "" +msgstr "Değişiklikler uygulanıyor" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format @@ -501,98 +535,112 @@ 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 bugreport." msgstr "" +"Yükseltme iptal ediliyor. Lütfen 'update-manager' paketi için bu hatayı " +"bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki dosyaları da " +"ekleyin." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" +"Özelleştirilmiş yapılandırma dosyası\n" +"'%s' değiştirilsin mi?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "'diff' komutu bulunamadı" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" -msgstr "" +msgstr "Giderilemez bir hata oluştu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" +"Lütfen bu hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ " +"konumundaki dosyaları da ekleyin. Yükseltme şimdi iptal ediliyor.\n" +"Orijinal sources.list dosyanız /etc/apt/sources.list.distUpgrade olarak " +"kaydedildi." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "" +msgstr[0] "%d paket kaldırılacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "" +msgstr[0] "%d yeni paket kurulacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "" +msgstr[0] "%d paket yükseltilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" +"\n" +"\n" +"Toplam %s indirmeniz gerekmektedir. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" +"Yükseltmeyi indirmek ve kurmak saatlerce sürebilir ve daha sonra iptal " +"edilemez." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" +"Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" -msgstr "" +msgstr "Sisteminiz güncel" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Sisteminiz için olası herhangi bir yükseltme yok. Yükseltme işlemi şimdi " +"iptal edilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" -msgstr "" +msgstr "Şunu kaldır: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "%s'i kur" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "%s'i yükselt" @@ -600,30 +648,29 @@ msgstr "%s'i yükselt" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li gün %li saat %li dakika" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li saat %li dakika" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li dakika" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li saniye" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -640,7 +687,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -653,10 +699,15 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" +"Yükseltme iptal edilsin mi?\n" +"\n" +"Yükseltmeyi iptal ederseniz, sistem, kullanılamaz bir konumda kalabilir. " +"Yükseltmeyi devam ettirmeniz şiddetle önerilir." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Yükseltmeyi tamamlamak için sistemi yeniden başlatın" +msgstr "" +"Yükseltmeyi tamamlamak için sistemi yeniden başlatın" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -664,40 +715,39 @@ msgstr "Yükseltme başlatılsın mı?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Ubuntu 6.10 sürümüne yükseltiliyor" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "" +msgstr "Temizliyor" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" -msgstr "" +msgstr "Ayrıntılar" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "Dosyalar arasındaki farklılık" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Yükseltmeler kurulamadı" +msgstr "Yükseltmeler indiriliyor ve kuruluyor" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "" +msgstr "Yazılım kanalları değiştiriliyor" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "" +msgstr "Yükseltme hazırlanıyor" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "Sistem tekrar başlatılıyor" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" -msgstr "" +msgstr "Uçbirim" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" @@ -709,23 +759,23 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "_Koru" #: ../DistUpgrade/DistUpgrade.glade.h:19 msgid "_Replace" -msgstr "" +msgstr "_Değiştir" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "_Hatayı Bildir" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "" +msgstr "Şimdi _Tekrar Başlat" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "" +msgstr "Yükseltmeye _Devam Et" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -734,82 +784,87 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" +"Suggestions: \t\t \n" +"Yayın notları bulunamadı" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "Sunucu aşırı yüklenmiş olabilir. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "Yayın notları indirilemedi" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "İnternet bağlantınızı kontrol ediniz." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "Yükseltme aracı çalıştırılamadı." #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" +"Bu muhtemelen yükseltme aracındaki bir hata. Lütfen bu hatayı bildirin." #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "" +msgstr "Yükseltme aracı indiriliyor" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "Yükseltme aracı size yükseltme işlemi boyunca rehberlik edecek." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "Yükseltme aracı imzası" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "" +msgstr "Yükseltme aracı" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "Getirme başarısız" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" +msgstr "Yükseltmeyi indirme başarısız. Ağ sorunu olabilir " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "Çıkarılamadı" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "Doğrulama başarısız oldu" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" +msgstr "Yükseltmeyi onaylamada hata. Ağ ya da sunucuda bir sorun olabilir. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" -msgstr "" +msgstr "Kimlik denetimi başarısız oldu" #: ../UpdateManager/DistUpgradeFetcher.py:229 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" +"Yükseltme için kimlik denetimi başarısız oldu. Ağ veya sunucu ile ilgili bir " +"sorun olabilir. " #: ../UpdateManager/GtkProgress.py:108 #, python-format @@ -821,157 +876,152 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "" +msgstr "Değişiklikler listesi erişilebilir değil" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Önemli güvenlik güncelleştirmeleri" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Önerilen güncellemeler" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "" +msgstr "Teklif edilmiş güncellemeler" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backport edilmiş yazılımlar" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "" +msgstr "Diğer güncellemeler" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" -msgstr "" +msgstr "Sürüm %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "Hiç_birini Seçme" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "" +msgstr "_Hepsini Seç" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "" +msgstr "İndirme boyutu: %s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "" +msgstr[0] "%s güncelleme kurabilirsiniz" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "Lütfen bekleyin, bu işlem biraz zaman alabilir." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "" +msgstr "Güncelleme tamamlandı" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "" +msgstr "Güncellemeler denetleniyor" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" -msgstr "" +msgstr "Sürüm %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(Büyüklük:%s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" -msgstr "" +msgstr "Kullandığınız dağıtım artık desteklenmiyor" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" +"Bundan sonra güvenlik düzeltmelerini ya da kritik güncellemeleri " +"alamayacaksınız. İşletim sisteminizi Ubuntu Linux'un son sürümüne yükseltin. " +"Daha fazla bilgi ve yükseltme için http://www.ubuntu.com adresini ziyaret " +"edin." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Yeni dağıtım yayını '%s' ulaşılabilir" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" -msgstr "" +msgstr "Yazılım dizini bozulmuş" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" +"Herhangi bir yazılımı yüklemek ya da kaldırmak mümkün değil. Lütfen bu " +"durumu düzeltmek için öncelikle \"Synaptic\" paket yöneticisini kullanın ya " +"da uçbirim penceresine \"sudo apt-get install -f\" komutunu yazıp çalıştırın." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Hiçbiri" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 msgid "" @@ -983,44 +1033,43 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "" +msgstr "Sisteminizi güncel tutun" #: ../data/glade/UpdateManager.glade.h:5 #, fuzzy msgid "Not all updates can be installed" msgstr "" -"CD taramada hata\n" -"\n" +"CD taramada hata \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Yükseltme başlatılsın mı?" +msgstr "Güncelleştirme yöneticisi başlatılıyor" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" -msgstr "" +msgstr "Değişiklikler" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Değişiklikler ve güncelleme açıklaması" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "" +msgstr "_Denetle" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "" +msgstr "Yeni güncellemeler için yazılım kanallarını denetle" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" -msgstr "" +msgstr "Tanım" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "" +msgstr "Yayın Notları" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1029,68 +1078,74 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Olası bütün güncellemeleri kurmak için dağıtım yükseltmesi gerçekleştirin. \n" +"\n" +"Bu, tamamlanmamış yükseltme, resmi olmayan yazılım paketleri ya da " +"geliştirme sürümü kullanılmasından kaynaklanmış olabilir." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "" +msgstr "Tekil dosyaların ilerleyişini göster" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "" +msgstr "Yazılım Güncellemeleri" #: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" +"Yazılım güncellemeleri hataları düzeltir, güvenlik açıklarını giderir ve " +"yeni özellikler katar." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "_Yükselt" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "" +msgstr "Ubuntu'nun son sürümüne yükselt" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "_Denetle" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" -msgstr "" +msgstr "_Dağıtım Yükseltimi" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_Bu bilgiyi gelecekte sakla" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" -msgstr "" +msgstr "Güncelemeleri _Yükle" #: ../data/glade/UpdateManager.glade.h:25 msgid "changes" -msgstr "" +msgstr "değişiklikler" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "güncellemeler" #: ../data/glade/SoftwareProperties.glade.h:2 msgid "Automatic updates" -msgstr "" +msgstr "Otomatik güncelleme" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" -msgstr "" +msgstr "İnternet güncellemeleri" #: ../data/glade/SoftwareProperties.glade.h:5 msgid "Internet" -msgstr "" +msgstr "Internet" msgstr "" +"Kullanıcıların Ubuntu deneyimini iyileştirmek için lütfen popülerlik " +"yarışmasına katılın. Eğer katılırsanız, herhangi kişisel bir bilgi " +"içermeyecek şekilde kurulu olan yazılımlar ve bunların kullanım sıklığı " +"haftalık olarak Ubuntu projesine bildirilecektir.\n" +"\n" +"Sonuçlar popüler olan uygulamalara verilen desteğin geliştirilmesinde ve " +"arama sonuçlarındaki sıralamanın belirlenmesinde kullanılacaktır." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1109,77 +1171,76 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" -msgstr "" +msgstr "Kimlik Sınaması" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "" +msgstr "İndirilmiş yazılım dosyalarını _sil:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "İndirme tamamlandı" +msgstr "İndirme adresi:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" -msgstr "" +msgstr "Güvenilen bir yazılm sağlayıcısından açık anahtarı içe aktar" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" -msgstr "" +msgstr "İnternet Güncellemeleri" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" +"Güvenlik güncellemeleri sadece resmi Ubuntu sunucularından otomatik olarak " +"kurulacaktır" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" -msgstr "" +msgstr "_Öntanımlılara Dön" #: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" -msgstr "" +msgstr "Dağıtımınızın öntanımlı anahtarlarını geriye döndür" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Yazılım Özellikleri" +msgstr "Yazılım Kaynakları" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Kaynak kodu" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "İstatistikler" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "İstatistiki Bilgileri Bildir" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Üçüncü Taraf" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" -msgstr "" +msgstr "Güncellemeleri _otomatik olarak denetle" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" -msgstr "" +msgstr "Güncellemeleri _otomatik olarak indir ancak kurma" #: ../data/glade/SoftwareProperties.glade.h:25 -#, fuzzy msgid "_Import Key File" -msgstr "Anahtar aktar" +msgstr "İçe Anahtar Dosyası _Aktar" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "" +msgstr "_Onaylatmadan güvenlik güncellemelerini kur" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" @@ -1190,26 +1251,32 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" +"Mevcut yazılım bilgileri güncel değil\n" +"\n" +"Yeni eklenmiş ya da değişmiş kaynaklardan yazılım ve güncellemeler kurmak " +"için mevcut yazılım bilgilerini tekrar yüklemeniz gerekmektedir.\n" +"\n" +"Devam etmek için çalışır durumda bir internet bağlantısı gerekmektedir." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" -msgstr "" +msgstr "Yorum:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" -msgstr "" +msgstr "Bileşenler:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" -msgstr "" +msgstr "Dağıtım:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 msgid "Type:" -msgstr "" +msgstr "Tür:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 msgid "URI:" -msgstr "" +msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 msgid "" @@ -1222,17 +1289,19 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" -msgstr "" +msgstr "APT satırı" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 msgid "" "Binary\n" "Source" msgstr "" +"İkili\n" +"Kaynak" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Kaynak Düzenleme" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1240,7 +1309,7 @@ msgstr "CD-ROM taranıyor" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "Kaynak _Ekle" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1275,7 +1344,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "" +msgstr "Kanal listesini tekrar yüklemeyi hatırlat." #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1283,7 +1352,7 @@ msgstr "Bir güncelleştirmenin detaylarını göster" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" +msgstr "Güncelleme yöneticisi penceresinin boyutunu saklar" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1297,261 +1366,201 @@ msgstr "Pencere boyutu" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" +msgstr "Kurulabilir yazılım ve güncellemeler için kaynakları yapılandır" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" -msgstr "" +msgstr "Topluluk tarafından bakılan" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Aygıtlar için kapalı kaynak sürücüler" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Sınırlı telif hakkı" +msgstr "Kısıtlı yazılımlar" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Ubuntu 6.10 'Edgy Eft' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" -msgstr "" +msgstr "Topluluk tarafından bakılan (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" -msgstr "" +msgstr "Topluluk tarafından bakılan Açık Kaynak Kodlu yazılımlar" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" -msgstr "" +msgstr "Özgür olmayan sürücüler" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Aygıtlar için lisanslı sürücüler " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" -msgstr "" +msgstr "Kısıtlı yazılımlar (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Geritaşınmış (backported) güncellemeler" -#. Description #: ../data/channels/Ubuntu.info.in:110 -#, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "" +msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 5.10 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:145 -#, fuzzy msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 5.10 Geritaşınmış Yazılımlar (Backports)" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Ubuntu 5.04 'Hoary Hedgehog" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Ubuntu 5.04 'Hoary Hedgehog' Cdrom'u" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi olarak desteklenenler" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 5.04 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 5.04 Geritaşınmış Yazılımlar (Backports)" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "" +msgstr "Topluluk tarafından bakılan (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "" +msgstr "Özgür olmayan (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Ubuntu 4.10 'Warty Warthog' Cdrom'u" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Resmi olarak desteklenenler" +msgstr "Artık resmi olarak desteklenmiyor" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Sınırlı telif hakkı" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 4.10 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 4.10 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" +msgstr "Ubuntu 4.10 Geritaşınmış Yazılımlar (Backports)" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" -msgstr "" +msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "" +msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "" +msgstr "Debian \"Etch\" (test)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "" +msgstr "Debian \"Sid\" (kararsız)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "Özgür Olmayan Bağımlılığı Bulunan DFSG Uyumlu Yazılım" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "DFSG Uyumlu Olmayan Yazılım" #~ msgid "Your system has already been upgraded." #~ msgstr "Sisteminiz zaten yükseltilmiş." -#, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Ubuntu 6.06 LTS'ya yükseltiliyor" +#~ "Ubuntu 6.10'a yükseltiliyor" -#, fuzzy #~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +#~ msgstr "Ubuntu için önemli güvenlik güncellemeleri" #, fuzzy #~ msgid "Oficially supported" @@ -1564,7 +1573,8 @@ msgstr "" #~ msgstr " " #~ msgid "_Add Channel" -#~ msgstr "Kanal _ekle" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "Kanal _ekle" #~ msgid "_Custom" #~ msgstr "_Özel" @@ -1574,4 +1584,4 @@ msgstr "" #~ msgstr "Ubuntu 6.06 Güvenlik Güncelleştirmeleri" #~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" +#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" \ No newline at end of file diff --git a/po/uk.po b/po/uk.po index c49963d0..9b91ef6d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,37 +1,38 @@ +# translation of uk(5).po to Ukrainian +# Maxim Dziumanenko , 2005. +# Vadim Abramchuck , 2006. # Ukrainian translation of update-manager. -# Copyright (C) 2005 Free Software Foundation, Inc. -# Maxim Dziumanenko , 2005 +# Copyright (C) 2005, 2006 Free Software Foundation, Inc. msgid "" msgstr "" -"Project-Id-Version: update-manager\n" +"Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:45+0000\n" -"Last-Translator: Serhey Kusyumoff \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-08-20 22:36+0000\n" +"Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: KBabel 1.11.2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 -#, fuzzy msgid "Daily" -msgstr "Подробиці" +msgstr "Щодня" #: ../SoftwareProperties/SoftwareProperties.py:137 -#, fuzzy msgid "Every two days" -msgstr "Кожні %s днів" +msgstr "Кожні два дня" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "" +msgstr "Щотижня" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "" +msgstr "Кожні два тижня" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format @@ -40,30 +41,28 @@ msgstr "Кожні %s днів" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "" +msgstr "Через тиждень" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "" +msgstr "Через два тижні" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "" +msgstr "Через місяць" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" msgstr "Через %s днів" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Встановлення оновлень..." +msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -90,9 +88,8 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Оновлення програм" +msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 @@ -100,14 +97,12 @@ msgid "Active" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "Текст програми" +msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "Текст програми" +msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -126,7 +121,8 @@ msgid "Error removing the key" msgstr "Помилка видалення ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,24 +158,22 @@ msgid "Can't upgrade required meta-packages" msgstr "Не можливо поновити необхідні meta-пакунки" #: ../DistUpgrade/DistUpgradeCache.py:217 +#, fuzzy msgid "A essential package would have to be removed" -msgstr "Це призведе довидалення базового пакунку системи" +msgstr "Це призведе до видалення !essential! пакунку системи" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " +msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" @@ -190,6 +184,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"Не вдалося перевірити деякі пакунки. Це може бути викликано проблемами в " +"мережі. Можливо, Вам захочеться спробувати пізніше. Список не перевірених " +"пакунків нижче." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -197,19 +194,17 @@ msgid "Can't install '%s'" msgstr "Не можливо встановити '%s'" #: ../DistUpgrade/DistUpgradeCache.py:313 -#, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " +msgstr "" +"Неможливо встановити необхідний пакунок. Сповістіть про це як про помилку. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -217,8 +212,6 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " -"цією програмою. Скористайтесь перш програмами synaptic чи apt-get." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -251,9 +244,8 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:248 -#, fuzzy msgid "No valid mirror found" -msgstr "Не знайдено" +msgstr "Не знайдено правильного зеркала" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -267,10 +259,9 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "" +msgstr "Створити джерела за замовчуванням?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -290,6 +281,8 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" +"Поновлення файлу сховищ призвело до пошкодження. Будь ласка, сповістіть про " +"це як про помилку." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -325,17 +318,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "Бажаєте почати апгрейд системи?" +msgstr "Бажаєте почати оновлення системи?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "Неможливо провести апргрейд системи" +msgstr "Неможливо провести оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -343,27 +334,24 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Апргрейд системи щойно зупинено. Система тепер може працювати нестабільно. " -"Виконайте команду 'sudo apt-get install -f', або скористайдесь програмою " -"Synaptic для налаштування системи." -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" -msgstr "Неможливо завантажити пакунки для апргрейду системи" +msgstr "Неможливо завантажити пакунки для оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"Апргрейд системи щойно перервано. Будь ласка, перевірте зєднання з " -"інтернетом чи носії та спробуйте знов. " +"Оновлення системи щойно перервано. Будь ласка, перевірте з'єднання з " +"Інтернетом або зовнішній носії та спробуйте знов. " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -372,24 +360,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 #, fuzzy msgid "Remove obsolete packages?" msgstr "Видалити непотрібні пакунки?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "Пропустити цей крок" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "" +msgstr "Видалити" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -397,46 +385,41 @@ msgstr "" "При очищенні системи виникли проблеми. Прочитайте детальнішу інформацію " "нижче. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "Перезавантаження системи" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "Підготовка до апгрейду системи" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." -msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. " +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Отримання інформації про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "Невірна інформація про пакунок" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -446,53 +429,49 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Запит підтвердження" -#: ../DistUpgrade/DistUpgradeControler.py:725 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "Оновлення завершено" +msgstr "Процес оновлення" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "Пошук програм, що не використовуються" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "Апргрейд системи завершено." +msgstr "Оновлення системи завершено." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "Вставте '%s' в пристрій '%s'" +msgstr "Вставте '%s' в привід '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Завантадення пакунків завершено" +msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "Завантажується файл %li of %li at %s/s" +msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "Завантажується файл %li of %li at %s/s" +msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -509,7 +488,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -519,103 +497,96 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "Команда 'diff' не знайдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "Виникла невиправна помилка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Будь ласка, повідмте це я помилку, включивши в повідомлення файли ~/dist-" -"upgrade.log and ~/dist-upgrade-apt.log . Апргрейд щойно перервано." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s пакунків буде видалено." +msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s пакунків буде встановлено." +msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "буде проведено апргрейд %s пакунків." +msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "Потрібно завантажити всього %s пакунків." +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"Апрейд може продовжуватись декілька годин, і не може бути перервано протягом " -"всього часу." -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" +"Для запобігання втраті інформації закрийте усі програми та документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#, fuzzy msgid "Remove %s" msgstr "Видалити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#, fuzzy msgid "Install %s" msgstr "Встановити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#, python-format msgid "Upgrade %s" -msgstr "Апргрейд %s" +msgstr "Оновити %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format @@ -638,12 +609,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -654,13 +624,12 @@ msgstr "Необхідно перезавантажити систему" msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"Виконання апгрейду звершено. Необхідно перезавантажити систему. " +"Виконання оновлення завершено. Необхідно перезавантажити систему. " "Перезавантажити зара?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -673,16 +642,18 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" -"Відмінити апгрейд системи?↵\n" -"↵" +"Відмінити оновлення системи?\n" +"\n" +"Зауважте, що якщо Ви скасуєте оновлення, це може призвести до нестабільного " +"стану системи. Дуже рекомендується продовжити оновлення." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Перезавантажте систему для завершення апгрейду" +msgstr "Перезавантажте систему для завершення оновлення" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Почати апгрейд системи?" +msgstr "Почати оновлення?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" @@ -694,16 +665,15 @@ msgstr "Очищення" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" -msgstr "Подробиці" +msgstr "Деталі" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "Різниця між файлами" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Завантаження та встановлення пакунків для апгрейду" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -722,9 +692,8 @@ msgid "Terminal" msgstr "Термінал" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "П_родовжити апгрейд системи" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -732,7 +701,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "Затримати" #: ../DistUpgrade/DistUpgrade.glade.h:19 #, fuzzy @@ -741,40 +710,36 @@ msgstr "Перезавантажити" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "П_овідомити про помилку" +msgstr "Повідомити про помилку" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "_Перезавантажити" +msgstr "Перезапустити зараз" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "П_родовжити апгрейд системи" +msgstr "Продовжити оновлення" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "П_родовжити апгрейд системи" +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 -#, fuzzy msgid "Could not find the release notes" -msgstr "Не знайдено пакунків для апгрейду" +msgstr "Не вдалося знайти примітки випуску." #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "Сервер може бути перенавантажений. " #: ../UpdateManager/DistUpgradeFetcher.py:79 -#, fuzzy msgid "Could not download the release notes" -msgstr "Неможливо завантажити пакунки для апргрейду системи" +msgstr "Не вдалося завантажити примітки випуску." #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "Будь ласка, перевірте ваше з'єднання з Інтернетом." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 #, fuzzy msgid "Could not run the upgrade tool" @@ -793,20 +758,19 @@ msgstr "Завантаження та встановлення пакунків #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "Інструмент оновлення проведе Вас через процес оновлення." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "" +msgstr "Підпис інструменту оновлення" #: ../UpdateManager/DistUpgradeFetcher.py:183 -#, fuzzy msgid "Upgrade tool" -msgstr "Апргрейд %s" +msgstr "Інструмент оновлення" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "Не вдалося отримати" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " @@ -824,7 +788,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "Перевірка зазнала краху" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" @@ -844,175 +808,155 @@ msgid "" msgstr "" #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Завантажується файл %li of %li at %s/s" +msgstr "" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Завантажується файл %li of %li at %s/s" +msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Доступний новий випуск Ubuntu!" +msgstr "" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Доступний новий випуск Ubuntu!" +msgstr "" -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Оновлення безпеки Ubuntu 5.10" +msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Встановлення оновлень..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "П_родовжити апгрейд системи" +msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "Встановлення оновлень..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Версія %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "Завантаження змін" +msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "" +msgstr "Розмір завантаження: %s" -#: ../UpdateManager/UpdateManager.py:615 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:617 +#, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "Неможливо провести апргрейд системи" -msgstr[1] "Неможливо провести апргрейд системи" -msgstr[2] "Неможливо провести апргрейд системи" +msgstr[0] "Ви можете встановити %s оновлення" +msgstr[1] "Ви можете встановити %s оновлення" +msgstr[2] "Ви можете встановити %s оновлень" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." -msgstr "" +msgstr "Будь ласка, зачекайте, це може зайняти деякий час." -#: ../UpdateManager/UpdateManager.py:650 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "Завантадення пакунків завершено" +msgstr "Оновлення завершено" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "Встановлення оновлень..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "Версія %s: \n" +msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" -msgstr "Ваш дистрибутив вже не підтримується" +msgstr "Ваш дистрибутив більше не підтримується" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" +"Ви більше не будете отримувати оновлень критичних оновлень та оновлень " +"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на " +"http://www.ubuntu.com для подальшої інформації про оновлення." -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1035,9 +979,8 @@ msgid "Not all updates can be installed" msgstr "" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Почати апгрейд системи?" +msgstr "" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1084,10 +1027,12 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" +"Оновлення програм виправляють помилки, проблеми безпеки та додають нові " +"можливості." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "Оновити" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" @@ -1098,9 +1043,8 @@ msgid "_Check" msgstr "" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "П_родовжити апгрейд системи" +msgstr "" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1112,32 +1056,28 @@ msgid "_Install Updates" msgstr "Встановлення оновлень..." #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "Зміни" +msgstr "" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Оновлення через Інтернет" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:4 -#, fuzzy msgid "Internet updates" msgstr "Оновлення через Інтернет" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Оновлення через Інтернет" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1163,9 +1103,8 @@ msgid "D_elete downloaded software files:" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Завантадення пакунків завершено" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:13 #, fuzzy @@ -1195,14 +1134,12 @@ msgstr "Відновити початкові ключі" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Властивості програм" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "Текст програми" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" @@ -1226,13 +1163,12 @@ msgid "_Download updates automatically, but do not install them" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:25 -#, fuzzy msgid "_Import Key File" -msgstr "Імпортувати ключ" +msgstr "Імпортувати файл ключа" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" -msgstr "" +msgstr "Встановлювати оновлення безпеки без підтвердження" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 msgid "" @@ -1249,9 +1185,8 @@ msgid "Comment:" msgstr "Коментар:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 -#, fuzzy msgid "Components:" -msgstr "Компоненти" +msgstr "Компоненти:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" @@ -1266,7 +1201,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1274,16 +1208,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Введіть повний рядок APT репозиторію, який ви бажаєте додати\n" -"\n" -"Рядок APT містить тип, адресу та вміст репозиторію, наприклад \"deb " -"http://ftp.debian.org sarge main\". Докладні приклади можна знайти у " -"документації." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" -msgstr "Рядок APT" +msgstr "Рядок APT:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 msgid "" @@ -1291,21 +1219,19 @@ msgid "" "Source" msgstr "" "Двійкові\n" -"вихідні" +"Вихідні коди" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "Текст програми" +msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "Сканування компакт-диску" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Текст програми" +msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 #, fuzzy @@ -1314,7 +1240,7 @@ msgstr "Перезавантажити" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "Показати та встановити наявні оновлення" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" @@ -1339,7 +1265,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "" +msgstr "Нагадувати про поновлення списку каналів" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1357,599 +1283,422 @@ msgstr "" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "Розмір вікна" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Оновлення Ubuntu 5.10" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Підтримується спільнотою (Universe)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Супутнє програмне забезпечення" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 -#, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "CD диск з Ubuntu 4.10 \"Warty Warthog\"" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Оновлення Ubuntu 5.04" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Підтримується спільнотою (Universe)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Підтримується спільнотою (Universe)" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Не-вільний (Multiverse)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Не-вільний (Multiverse)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "ПЗ під експортними обмеженнями США" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Оновлення Ubuntu 5.04" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 -#, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "CD диск з Ubuntu 5.10 \"Breezy Badger\"" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "CD диск з Ubuntu 5.10 \"Breezy Badger\"" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Оновлення безпеки Ubuntu 5.10" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Оновлення Ubuntu 5.10" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 -#, fuzzy msgid "Ubuntu 5.10 Backports" -msgstr "Оновлення Ubuntu 5.10" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "CD диск з Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "CD диск з Ubuntu 5.04 \"Hoary Hedgehog\"" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 -#, fuzzy msgid "Officially supported" -msgstr "Офіціально підтримуються" +msgstr "Офіційно підтримуються" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Оновлення безпеки Ubuntu 5.10" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Оновлення Ubuntu 5.10" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Оновлення Ubuntu 5.10" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "CD диск з Ubuntu 4.10 \"Warty Warthog\"" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Підтримується спільнотою (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Не-вільний (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "CD диск з Ubuntu 4.10 \"Warty Warthog\"" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Офіціально підтримуються" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Обмежені авторські права" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Оновлення безпеки Ubuntu 4.10" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Оновлення Ubuntu 4.10" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Оновлення Ubuntu 5.10" +msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 -#, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Оновлення безпеки стабільного Debian" +msgstr "Оновлення безпеки Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 -#, fuzzy msgid "Debian \"Etch\" (testing)" -msgstr "Тестовий Debian" +msgstr "Debian \"Etch\" (тестовий)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 -#, fuzzy msgid "Debian \"Sid\" (unstable)" -msgstr "Debian поза США (Нестабільний)" +msgstr "Debian \"Sid\" (нестабільний)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" -#, fuzzy -#~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "Завантажується файл %li of %li на невизначенії швидкості" - -#, fuzzy -#~ msgid "Normal updates" -#~ msgstr "Встановлення оновлень..." - -#~ msgid "Cancel _Download" -#~ msgstr "Скасувати _Завантаження" +#, python-format +#~ msgid "" +#~ "Error scaning the CD\n" +#~ "\n" +#~ "%s" +#~ msgstr "" +#~ "Помилка сканування КД\n" +#~ "\n" +#~ "%s" -#~ msgid "Could not find any upgrades" -#~ msgstr "Не знайдено пакунків для апгрейду" +#~ msgid "" +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " +#~ msgstr "" +#~ "Під час розрахунку оновлення виникла невиправна помилка. Будь ласка, " +#~ "повідомте про це як про помилку програми. " -#~ msgid "Your system has already been upgraded." -#~ msgstr "Апгрейд вашої системи вже проведено." +#~ msgid "" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." +#~ msgstr "" +#~ "Ваша система не містить пакунків ubuntu-desktop, kubuntu-desktop або " +#~ "edubuntu-desktop, через що не вдалося встановити, яку версію ubuntu Ви " +#~ "використовуєте.\n" +#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи synaptic " +#~ "або apt-get." -#, fuzzy -#~ msgid "Important security updates of Ubuntu" -#~ msgstr "Оновлення безпеки Ubuntu 5.10" +#~ msgid "" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "" +#~ "Оновлення системи щойно зупинено. Внаслідок цього система може працювати " +#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або скористайтесь " +#~ "програмою Synaptic для налаштування системи." -#, fuzzy -#~ msgid "Updates of Ubuntu" -#~ msgstr "Апгрейд системи Ubuntu" +#~ msgid "Some software no longer officially supported" +#~ msgstr "Деяке програмне забезпечення більше офіційно не підтримується" #, fuzzy -#~ msgid "Cannot install all available updates" -#~ msgstr "Пошук пакунків для апгрейду" +#~ msgid "Restoring originale system state" +#~ msgstr "Перезавантаження системи" -#, fuzzy -#~ msgid "Oficially supported" -#~ msgstr "Офіціально підтримуються" +#, python-format +#~ msgid "About %li minutes remaining" +#~ msgstr "Залишилось близько %li хвилин" #~ msgid "Download is complete" #~ msgstr "Завантадення пакунків завершено" +#, python-format +#~ msgid "Downloading file %li of %li at %s/s" +#~ msgstr "Завантажується файл %li of %li at %s/s" + #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." -#, fuzzy -#~ msgid "Hide details" -#~ msgstr "Подробиці" - -#, fuzzy -#~ msgid "Channels" -#~ msgstr "Клавіші" - -#~ msgid "Keys" -#~ msgstr "Клавіші" - -#~ msgid "Installation Media" -#~ msgstr "Носій встановлення" - -#~ msgid "Software Preferences" -#~ msgstr "Параметри програм" - -#~ msgid " " -#~ msgstr " " - -#, fuzzy -#~ msgid "Channel" -#~ msgstr "Клавіші" - -#, fuzzy -#~ msgid "Components" -#~ msgstr "Компоненти" - -#~ msgid "_Custom" -#~ msgstr "В_ласний" - -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Оновлення Ubuntu 5.10" - -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Оновлення безпеки Ubuntu 5.04" - -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Updates" -#~ msgstr "Оновлення Ubuntu 5.10" - -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Оновлення Ubuntu 5.10" - -#, fuzzy -#~ msgid "Sections" -#~ msgstr "Розділи:" - -#~ msgid "Sections:" -#~ msgstr "Розділи:" - -#, fuzzy -#~ msgid "Reload the latest information about updates" -#~ msgstr "Перезавантажити з сервера інформацію про пакет" - +#, python-format #~ msgid "" -#~ "Downloading changes\n" -#~ "\n" -#~ "Need to get the changes from the central server" +#~ "Replace configuration file\n" +#~ "'%s'?" #~ msgstr "" -#~ "Завантаження змін\n" -#~ "\n" -#~ "Потрібно отримати зміни з центрального сервера" - -#~ msgid "Show available updates and choose which to install" -#~ msgstr "Показати доступні оновлення та зміни до встановлених пакетів" +#~ "Замінити файл налаштування\n" +#~ "'%s'?" #, fuzzy -#~ msgid "Error fetching the packages" -#~ msgstr "Помилка видалення ключа" - -#~ msgid "Edit software sources and settings" -#~ msgstr "Редагування джерел програм та параметрів" - -#~ msgid "Sources" -#~ msgstr "Джерела" - -#~ msgid "day(s)" -#~ msgstr "діб" - -#~ msgid "Repository" -#~ msgstr "Репозиторій" - -#~ msgid "Temporary files" -#~ msgstr "Тимчасові файли" - -#~ msgid "User Interface" -#~ msgstr "Інтерфейс користувача" - -#~ msgid "" -#~ "Authentication keys\n" -#~ "\n" -#~ "You can add and remove authentication keys in this dialog. A key makes it " -#~ "possible to verify the integrity of the software you download." -#~ msgstr "" -#~ "Ключі автентифікації\n" -#~ "\n" -#~ "У цьому діалозі ви можете додавати та видаляти ключі автентифікації. Ключ " -#~ "дає змогу перевірити цілісність завантаженого програмного забезпечення." - #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Додайте новий ключ до в'язки довірених ключів. Перевірте, що ви отримали " -#~ "ключ безпечним каналом та ви довіряєте власнику. " +#~ "Будь ласка, повідмте це я помилку, включивши в повідомлення файли ~/dist-" +#~ "upgrade.log and ~/dist-upgrade-apt.log . Апргрейд щойно перервано." -#~ msgid "Add repository..." -#~ msgstr "Додати репозиторій..." - -#~ msgid "Automatically check for software _updates." -#~ msgstr "Автоматично перевіряти _оновлення програм." - -#~ msgid "Automatically clean _temporary packages files" -#~ msgstr "Автоматично очищати _тимчасові файли пакетів" - -#~ msgid "Clean interval in days: " -#~ msgstr "Інтервал очистки (днів): " - -#~ msgid "Delete _old packages in the package cache" -#~ msgstr "Видаляти _старі пакети з кешу пакетів" +#, python-format +#~ msgid "%s package is going to be removed." +#~ msgid_plural "%s packages are going to be removed." +#~ msgstr[0] "%s пакунків буде видалено." +#~ msgstr[1] "" +#~ msgstr[2] "" -#~ msgid "Edit Repository..." -#~ msgstr "Правка репозиторію..." +#, python-format +#~ msgid "%s new package is going to be installed." +#~ msgid_plural "%s new packages are going to be installed." +#~ msgstr[0] "%s пакунків буде встановлено." +#~ msgstr[1] "" +#~ msgstr[2] "" -#~ msgid "Maximum age in days:" -#~ msgstr "Максимальний вік (днів):" +#, python-format +#~ msgid "%s package is going to be upgraded." +#~ msgid_plural "%s packages are going to be upgraded." +#~ msgstr[0] "буде проведено оновлення %s пакунка." +#~ msgstr[1] "буде проведено оновлення %s пакунків." +#~ msgstr[2] "буде проведено оновлення %s пакунків." -#~ msgid "Maximum size in MB:" -#~ msgstr "Максимальний розмір (Мб):" +#, python-format +#~ msgid "You have to download a total of %s." +#~ msgstr "Потрібно завантажити всього %s пакунків." #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" -#~ "Відновити початкові ключі, що постачались з дистрибутивом. Встановлені " -#~ "користувачем ключі не будуть змінені." - -#~ msgid "Set _maximum size for the package cache" -#~ msgstr "Встановити _максимальний розмір кеша пакетів" - -#~ msgid "Settings" -#~ msgstr "Параметри" - -#~ msgid "Show detailed package versions" -#~ msgstr "Показувати детальні версії пакетів" +#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може бути " +#~ "перервано протягом усього часу." -#~ msgid "Show disabled software sources" -#~ msgstr "Показувати вимкнені джерела програм" - -#~ msgid "Update interval in days: " -#~ msgstr "Інтервал оновлення (днів): " - -#~ msgid "_Add Repository" -#~ msgstr "_Додати репозиторій" - -#~ msgid "_Download upgradable packages" -#~ msgstr "_Завантажити оновлювані пакети" +#~ msgid "Could not find any upgrades" +#~ msgstr "Не знайдено пакунків для оновлення" -#~ msgid "Status:" -#~ msgstr "Стан:" +#~ msgid "Your system has already been upgraded." +#~ msgstr "Оновлення вашої системи вже проведено." #~ msgid "" -#~ "Available Updates\n" -#~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Доступні оновлення\n" -#~ "\n" -#~ "Знайдено наступні пакети для оновлення. Їх можна оновити натиснувши " -#~ "кнопку Встановити." +#~ "Оновлення до Ubuntu 6.06 LTS" -#~ msgid "Cancel downloading the changelog" -#~ msgstr "Скасувати завантаження записів changelog" +#~ msgid "Downloading and installing the upgrades" +#~ msgstr "Завантаження та встановлення пакунків для апгрейду" -#, fuzzy -#~ msgid "Debian sarge" -#~ msgstr "Debian 3.1 \"Sarge\"" +#~ msgid "Upgrading Ubuntu" +#~ msgstr "Оновлення системи Ubuntu" #, fuzzy -#~ msgid "Debian etch" -#~ msgstr "Тестовий Debian" +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "Завантажується файл %li of %li at %s/s" #, fuzzy -#~ msgid "Debian sid" -#~ msgstr "Тестовий Debian" +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "Завантажується файл %li of %li на невизначенії швидкості" #, fuzzy -#~ msgid "Oficial Distribution" -#~ msgstr "Дистрибутив:" - -#~ msgid "You need to be root to run this program" -#~ msgstr "Щоб запустити програму потрібні повноваження root." - -#~ msgid "Binary" -#~ msgstr "Двійковий" - -#~ msgid "Non-free software" -#~ msgstr "Не вільне програмне забезпечення" +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "" +#~ "не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет." -#~ msgid "Debian 3.0 \"Woody\"" -#~ msgstr "Debian 3.0 \"Woody\"" +#, fuzzy +#~ msgid "Cannot install all available updates" +#~ msgstr "Пошук пакунків для апгрейду" -#~ msgid "Debian Stable" -#~ msgstr "Стабільний Debian" +#, fuzzy +#~ msgid "Downloading the list of changes..." +#~ msgstr "Завантаження змін" -#~ msgid "Debian Unstable \"Sid\"" -#~ msgstr "Нестабільний Debian \"Sid\"" +#~ msgid "Hide details" +#~ msgstr "Сховати деталі" -#~ msgid "Debian Non-US (Stable)" -#~ msgstr "Debian поза США (Стабільний)" +#~ msgid "Show details" +#~ msgstr "Показати деталі" -#~ msgid "Debian Non-US (Testing)" -#~ msgstr "Debian поза США (Тестовий)" +#, python-format +#~ msgid "New version: %s (Size: %s)" +#~ msgstr "Нова версія: %s (Розмір: %s)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Автоматичний ключ підпису архіву Ubuntu " +#~ msgid "Cancel _Download" +#~ msgstr "Скасувати Завантаження" -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Автоматичний ключ підпису компакт-диску Ubuntu " +#~ msgid "Channels" +#~ msgstr "Канали" -#~ msgid "Choose a key-file" -#~ msgstr "Виберіть ключовий файл" +#~ msgid "Keys" +#~ msgstr "Ключі" -#~ msgid "There is one package available for updating." -#~ msgstr "Немає доступних для оновлення пакетів." +#~ msgid "Add _Cdrom" +#~ msgstr "Додати компакт-диск" -#~ msgid "There are %s packages available for updating." -#~ msgstr "Для оновлення доступно %s пакетів." +#~ msgid "Installation Media" +#~ msgstr "Носій встановлення" -#~ msgid "There are no updated packages" -#~ msgstr "Немає оновлених пакетів" +#~ msgid "Software Preferences" +#~ msgstr "Параметри програм" -#~ msgid "You did not select any of the %s updated package" -#~ msgid_plural "You did not select any of the %s updated packages" -#~ msgstr[0] "Ви не виділили жодного з %s пакету оновлення" -#~ msgstr[1] "Ви не виділили жодного з %s пакетів оновлення" -#~ msgstr[2] "Ви не виділили жодного з %s пакетів оновлення" +#~ msgid "_Download updates in the background, but do not install them" +#~ msgstr "Завантажувати оновлення у фоні, але не встановлювати їх" -#~ msgid "You have selected %s updated package, size %s" -#~ msgid_plural "You have selected all %s updated packages, total size %s" -#~ msgstr[0] "Ви виділили %s пакет оновлення, розмір %s" -#~ msgstr[1] "Ви виділили %s пакети оновлення, розмір %s" -#~ msgstr[2] "Ви виділили %s пакетів оновлення, розмір %s" +#~ msgid " " +#~ msgstr " " -#~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" -#~ msgstr[0] "Ви виділили %s з %s пакетів оновлення, загальний розмір %s" -#~ msgstr[1] "Ви виділили %s з %s пакетів оновлення, загальний розмір %s" -#~ msgstr[2] "Ви виділили %s з %s пакетів оновлення, загальний розмір %s" +#~ msgid "Channel" +#~ msgstr "Канал" -#~ msgid "The updates are being applied." -#~ msgstr "Застосовуються оновлення." +#~ msgid "Components" +#~ msgstr "Компоненти" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a channel, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Одночасно можна запускати лише один менеджер пакетів. Спочатку закрийте " -#~ "іншу програму.close this other application first." +#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" +#~ "\n" +#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb " +#~ "http://ftp.debian.org sarge main\". Докладні приклади можна знайти у " +#~ "документації." -#~ msgid "Updating package list..." -#~ msgstr "Оновлення списку пакетів..." +#~ msgid "Add Channel" +#~ msgstr "Додати канал" -#~ msgid "There are no updates available." -#~ msgstr "Немає доступних оновлень." +#~ msgid "Edit Channel" +#~ msgstr "Редагувати канал" -#~ msgid "New version:" -#~ msgstr "Нова версія:" +#~ msgid "_Add Channel" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "Додати канал" +#~ msgstr[1] "Додати канали" +#~ msgstr[2] "Додати канали" -#~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." -#~ msgstr "" -#~ "Поновіть систему на більш нову версію Ubuntu Linux. Для встановленої " -#~ "версії не випускаються виправлення безпеки та інші критичні оновлення. " -#~ "Дивіться інформацію про оновлення на http://www.ubuntulinux.org" +#~ msgid "_Custom" +#~ msgstr "Власний" -#~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." -#~ msgstr "" -#~ "Доступний новий випуск з кодовою назвою '%s'. Інструкції оновлення " -#~ "дивіться на http://www.ubuntulinux.org/" +#~ msgid "Software Properties" +#~ msgstr "Властивості програм" -#~ msgid "Never show this message again" -#~ msgstr "Не показуйте це повідомлення знову" +#~ msgid "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" -#~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Зміне не знайдено, можливо сервер досі не оновлено." +#~ msgid "Ubuntu 6.06 LTS Security Updates" +#~ msgstr "Оновлення безпеки Ubuntu 6.06 LTS" + +#~ msgid "Ubuntu 6.06 LTS Updates" +#~ msgstr "Оновлення Ubuntu 6.06 LTS" + +#~ msgid "Ubuntu 6.06 LTS Backports" +#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/update-manager.pot b/po/update-manager.pot index cab1f2e7..6845de02 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" +"POT-Creation-Date: 2006-10-06 23:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" @@ -454,7 +454,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -492,19 +492,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -605,8 +605,8 @@ msgstr "" #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -801,130 +801,130 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" #. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" #. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" #. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1307,7 +1307,7 @@ msgstr "" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" #. CompDescription @@ -1337,7 +1337,7 @@ msgstr "" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" #. Description diff --git a/po/ur.po b/po/ur.po index 1f7e0712..d031acf9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -55,7 +55,6 @@ msgstr "ایک ماھ باد" msgid "After %s days" msgstr "بعد %s دن" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,7 +159,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +171,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +193,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +252,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,16 +308,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +325,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +348,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,23 +414,22 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +445,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +457,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,7 +472,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -493,50 +481,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -544,39 +531,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -602,12 +588,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -622,7 +607,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -728,7 +712,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -802,153 +785,142 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1271,232 +1243,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/urd.po b/po/urd.po index 7e1aa49d..b8c3c023 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" +"POT-Creation-Date: 2006-10-06 23:04+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" @@ -455,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -493,19 +493,19 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -606,8 +606,8 @@ msgstr "" #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -802,130 +802,130 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" #. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" #. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" #. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "" #. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" #. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" #. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1309,7 +1309,7 @@ msgstr "" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" #. CompDescription @@ -1339,7 +1339,7 @@ msgstr "" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" #. Description diff --git a/po/vi.po b/po/vi.po index 76827897..8fba050d 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager Gnome HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:45+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Sau một tháng" msgid "After %s days" msgstr "Sau %s ngày" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Đang cài đặt bản cập nhật..." +msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -110,7 +107,7 @@ msgstr "Nguồn" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "Nhập mã khóa" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" @@ -118,14 +115,16 @@ msgstr "Gặp lỗi khi nhập tâp tin đã chọn" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." +msgstr "" +"Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -138,34 +137,35 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "" +msgstr "Nhập tên của đĩa" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "" +msgstr "Hãy đút đĩa vào trong ổ:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "" +msgstr "Gói bị lỗi" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" +"Hệ thống của bạn chứa các gói tin bị lỗi và không thể sửa được bằng phần mềm " +"này. Hãy sửa chúng dùng các gói synaptic hoặc apt-get trước khi tiếp tục." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" -msgstr "" +msgstr "Không thể nâng cấp các gói gốc được yêu cầu" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "" +msgstr "Một gói quan trọng cần phải bị gỡ bỏ" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "Không thể tính được dung lượng cần nâng cấp" #: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy @@ -174,12 +174,11 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " +msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "" +msgstr "Gặp lỗi khi đang xác thực một số gói" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -187,23 +186,25 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" +"Không thể xác thực một số gói, có thể do lỗi tạm thời của hệ thống mạng. Bạn " +"vui lòng thử lại sau. Bên dưới là danh sách các gói chưa được xác thực đầy " +"đủ." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "" +msgstr "Không thể cài đặt '%s'" #: ../DistUpgrade/DistUpgradeCache.py:313 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " +msgstr "Không thể cài đặt được gói yêu cầu. Vui lòng thông báo lỗi này. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "" +msgstr "Không thể đoán được gói gốc" #: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" @@ -230,7 +231,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "" +msgstr "Đang đọc bộ nhớ đệm" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" @@ -260,7 +261,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -318,16 +318,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -336,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -359,68 +358,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy msgid "Checking package manager" msgstr "Một bộ quản lý gói khác đang chạy" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Đang tải các thay đổi" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy 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/dist-" "upgrade/ in the bugreport." -msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này. " +msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,24 +427,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 #, fuzzy msgid "Upgrading" msgstr "Nâng cấp xong" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -463,7 +459,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -475,7 +471,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -492,7 +487,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -502,47 +496,46 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -550,40 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,12 +601,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -629,7 +620,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -737,7 +727,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -814,19 +803,19 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Có một bản phát hành Ubuntu mới công bố." -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Có một bản phát hành Ubuntu mới công bố." -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" @@ -835,143 +824,133 @@ msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 +#, fuzzy msgid "Backports" -msgstr "" +msgstr "Bản cập nhật Ubuntu 5.10" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "Đang cài đặt bản cập nhật..." -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "Phiên bản %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "Đang tải các thay đổi" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, fuzzy msgid "Version %s" -msgstr "Phiên bản %s: \n" +msgstr "Phiên bản %s:" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Không còn hỗ trợ lại bản phát hành của bạn." -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1317,260 +1296,219 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Bản cập nhật Ubuntu 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Phần mềm đã đóng góp" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Không tự do (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Không tự do (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "Phần mềm bị giới hạn xuất Mỹ" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Được hỗ trợ một cách chính thức" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Không tự do (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Được hỗ trợ một cách chính thức" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Bản quyền bị giới hạn" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Bản cập nhật Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 « Sarge »" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Bản cập nhật bảo mặt ổn định Debian" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Thử ra Debian" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Không Mỹ Debian (Bất định)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "Phần mềm bị giới hạn xuất Mỹ" + #, fuzzy #~ msgid "Normal updates" #~ msgstr "Đang cài đặt bản cập nhật..." @@ -1691,12 +1629,12 @@ msgstr "" #~ msgstr "" #~ "Khóa xác thực\n" #~ "\n" -#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép " -#~ "bạn thẩm tra toàn vẹn của phần mềm đã tải về." +#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép bạn " +#~ "thẩm tra toàn vẹn của phần mềm đã tải về." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Thêm tập tin khóa mới vào vòng khóa tin cây. Hãy đảm bảo bạn đã nhận khóa " #~ "này qua kênh bảo mật, và bạn tin cây người sở hữu khóa này. " @@ -1726,11 +1664,11 @@ msgstr "" #~ msgstr "Cỡ tối đa, theo MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành " -#~ "động này sẽ không sửa đổi khóa nào tự cài đặt." +#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành động " +#~ "này sẽ không sửa đổi khóa nào tự cài đặt." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Đặt cỡ tối _đa cho bộ nhớ tạm gói" @@ -1759,13 +1697,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Bản nâng cấp công bố\n" #~ "\n" -#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn " -#~ "giản hãy sử dụng nút « Cài đặt »." +#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn giản " +#~ "hãy sử dụng nút « Cài đặt »." #~ msgid "Cancel downloading the changelog" #~ msgstr "Thôi tải về Bản ghi đổi..." @@ -1821,19 +1759,18 @@ msgstr "" #~ msgstr[0] "Bạn đã chọn tất cả %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Bạn đã chọn %s trong %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "The updates are being applied." #~ msgstr "Đang áp dụng những bản cập nhật." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. " -#~ "Vui lòng đóng ứng dụng khác trước khi tiếp tục." +#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. Vui " +#~ "lòng đóng ứng dụng khác trước khi tiếp tục." #~ msgid "Updating package list..." #~ msgstr "Đạng cập nhật danh sách gói..." @@ -1846,22 +1783,22 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản " -#~ "hiện thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " +#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản hiện " +#~ "thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " #~ " để tìm thông tin nâng cấp." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "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 để 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 " +#~ " để 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." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." +#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." \ No newline at end of file diff --git a/po/xh.po b/po/xh.po index f49116ef..beb100c7 100644 --- a/po/xh.po +++ b/po/xh.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-notifier\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-04-20 19:15+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" "MIME-Version: 1.0\n" @@ -55,15 +55,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Bonisa izihlaziyo" +msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,7 +159,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +171,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +193,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +252,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,16 +308,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +325,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +348,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,23 +414,22 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +445,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +457,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,7 +472,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -493,50 +481,49 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -544,39 +531,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -602,12 +588,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -622,7 +607,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -728,7 +712,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -802,160 +785,149 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 +#: ../UpdateManager/UpdateManager.py:206 #, fuzzy msgid "The list of changes is not available" msgstr "Kukho i-%i yohlaziyo ekhoyo" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "Kukho i-%i yohlaziyo ekhoyo" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bonisa izihlaziyo" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "Bonisa izihlaziyo" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:701 +#: ../UpdateManager/UpdateManager.py:703 #, fuzzy msgid "Checking for updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 +#: ../UpdateManager/UpdateManager.py:814 #, python-format msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1285,229 +1257,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1575,8 +1502,8 @@ msgstr "" #~ msgstr "" #~ "Ulwazi oluhlaziyiweyo\n" #~ "\n" -#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda " -#~ "funda olu lwazi lulandelayo ngocoselelo." +#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda funda " +#~ "olu lwazi lulandelayo ngocoselelo." #~ msgid "Run now" -#~ msgstr "Phumeza inkqubo ngoku" +#~ msgstr "Phumeza inkqubo ngoku" \ No newline at end of file diff --git a/po/zh_CN.po b/po/zh_CN.po index a8f7a3f5..29018664 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-30 14:16+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-10-05 20:36+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" "MIME-Version: 1.0\n" @@ -54,63 +54,53 @@ msgstr "一月后" msgid "After %s days" msgstr "%s天后" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "安装更新" +msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "主服务器" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "%s 的服务器" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "最近服务器" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "自定义服务器" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "软件更新" +msgstr "软件频道" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "启用" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "" -"二进制\n" -"源代码" +msgstr "(源代码)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "" -"二进制\n" -"源代码" +msgstr "源代码" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -129,17 +119,18 @@ msgid "Error removing the key" msgstr "删除密钥时候出错" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"读取光盘时出错\n" +"扫描光盘时出错\n" "\n" "%s" @@ -159,9 +150,7 @@ msgstr "破损的软件包" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" -"你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" -"apt-get修复它们。" +msgstr "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者apt-get修复它们。" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -171,21 +160,21 @@ msgstr "不能升级要求的元包" msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "无法计算升级" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。 " +msgstr "" +"在计算升级时遇到一个无法解决的问题。\n" +"\n" +"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文件包含在错误报告中。" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" @@ -195,9 +184,7 @@ 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 a list of " "unauthenticated packages." -msgstr "" -"无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" -"件包的列表。" +msgstr "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软件包的列表。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -210,13 +197,11 @@ msgid "" "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "无法猜出元包" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -224,14 +209,13 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-desktop软件包所以无法" -"确定你运行的ubuntu的版本。 请在继续前先用新立得或apt-get安装以上所举软件包中" -"的一个。" +"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-" +"desktop软件包所以无法确定你运行的ubuntu的版本。\n" +" 请先用新立得或apt-get安装以上所举软件包中的一个。" #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "下载失败" +msgstr "添加CD失败" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -242,6 +226,10 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"添加CD时出错,升级中止。请报告本bug。\n" +"\n" +"错误消息是:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -249,7 +237,7 @@ msgstr "正在读取缓存" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "要从网络获取升级数据吗?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -258,6 +246,8 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"可以从网络检查最新升级,并获取当前CD中没有的软件包。\n" +"如果网络带宽足够,请选择'是'。否则选'否'。" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -274,12 +264,10 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像" -"或镜像信息过时了.\n" +"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像或镜像信息过时了.\n" "一定要重写您的'sources.list'吗?如果选'Yes'将会更新所有'%s'到'%s'条目.\n" "如果选'no'更新将被取消." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "生成默认的源?" @@ -311,14 +299,11 @@ msgid "Third party sources disabled" msgstr "第三方源被禁用" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." -msgstr "" -"源列表中一些第三方源被禁用.你可以在升级后用\"软件属性\"工具或新立得包管理器来" -"重新启用它们." +msgstr "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得包管理器来重新启用它们." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -341,20 +326,17 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-" -"get clean'命令来删除之前安装的临时软件包。" +"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-get clean'命令来删除之前安装的临时软件包。" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "无法安装升级" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -362,24 +344,25 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" -"a)。" +"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -a)。\n" +"\n" +"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文件。" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "无法下载升级包" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "一些应用程序支持终止" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -390,70 +373,68 @@ msgid "" msgstr "" "这些安装的包已不在被官方支持,仅为社区维护('universe').\n" "\n" -"如果你没有启用'社区维护'源,下一步这些包将被建议移除. " +"如果你没有启用'社区维护'源,下一步这些包将被建议移除." -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "跳过这个步骤(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "删除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "确认时出错" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "正在检查软件包管理器" -#: ../DistUpgrade/DistUpgradeControler.py:659 +#: ../DistUpgrade/DistUpgradeControler.py:671 #, fuzzy msgid "Preparing the upgrade failed" msgstr "正在准备升级" -#: ../DistUpgrade/DistUpgradeControler.py:660 +#: ../DistUpgrade/DistUpgradeControler.py:672 #, fuzzy 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/dist-" "upgrade/ in the bugreport." -msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。 " +msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "更新源的信息" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "无效的包信息" -#: ../DistUpgrade/DistUpgradeControler.py:709 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -461,55 +442,53 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"包信息被更新后核心包'%s'没有找到.\n" -"这标志着一个严重的错误,请报告bug." +"包信息被更新后核心包'%s'没有找到。\n" +"\n" +"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/dist-upgrade/中的文件。" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "请求确认" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "正在更新" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "寻找陈旧的软件包" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "系统更新完毕" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "请将'%s'插入光驱'%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "更新完成" +msgstr "下载完成" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "正在下载文件%li/%li速度是%s/s" +msgstr "下载文件 %li/%li 速度是%s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#, python-format msgid "About %s remaining" -msgstr "大约还要%li分钟" +msgstr "大约还要 %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "正在下载第 %li 个文件(共 %li 个文件)" +msgstr "下载第 %li 个文件(共 %li 个文件)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在应用更新" @@ -523,137 +502,134 @@ msgstr "无法安装'%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 bugreport." -msgstr "" +msgstr "升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-upgrade/中的文件。" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"替换配置文件\n" +"替换定制配置文件\n" "“%s”吗?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "外部命令“diff”没有找到" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "出现致命错误" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt." -"log。升级现在取消。\n" +"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt.log。升级现在取消。\n" "你原始的sources.list已保存在/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s软件包将被删除。" +msgstr[0] "%d 个软件包将被删除。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s新的软件包将被安装。" +msgstr[0] "%d 个新的软件包将被安装。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s软件包将被升级" +msgstr[0] "%d 个软件包将被升级" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "你下载了总体的%s。" +msgstr "" +"\n" +"\n" +"你需要下载了总共 %s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "升级会持续几个小时且不能在稍后的任何时候被终止" +msgstr "下载及升级会持续几个小时,且不可取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "您的系统已为最新" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "你的系统没有可用升级。升级被取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "删除%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "安装%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "升级%s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "大约还要%li天%li小时%li分钟" +msgstr "%li 天 %li 小时 %li 分钟" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "大约还要%li天%li小时" +msgstr "%li 天 %li 小时" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li 分钟" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li 秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -668,7 +644,6 @@ msgstr "升级已经完成并需要重启。你要现在重启么?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -694,7 +669,7 @@ msgstr "开始升级?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "升级Ubuntu到 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -779,7 +754,6 @@ msgstr "无法下载发行说明" msgid "Please check your internet connection." msgstr "请检查你的互联网连接。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "不能运行升级工具" @@ -845,180 +819,161 @@ msgid "" msgstr "认证升级信息失败。可能是网络或服务器的问题。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下载文件 %li/%li 速度是 %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "正在下载文件 %li/%li 速度是 %s/s" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "变动列表尚不可用。请稍后再试。" +msgstr "变动列表尚不可用。" -#: ../UpdateManager/UpdateManager.py:210 +#: ../UpdateManager/UpdateManager.py:212 #, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "变动列表尚不可用。请稍后再试。" -#: ../UpdateManager/UpdateManager.py:215 +#: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "无法下载更新列表。请检查您的网络连接。" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 安全更新" +msgstr "重要安全更新" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "建议更新" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "安装更新" +msgstr "建议更新" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Backports" -#: ../UpdateManager/UpdateManager.py:240 +#: ../UpdateManager/UpdateManager.py:242 #, fuzzy msgid "Distribution updates" msgstr "继续升级(_R)" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "安装更新" +msgstr "其它更新" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:521 +#: ../UpdateManager/UpdateManager.py:523 #, fuzzy msgid "Downloading list of changes..." msgstr "正在下载更新列表..." -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" -msgstr "" +msgstr "取消全部(_U)" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "检查(_C)" +msgstr "选中全部(_C)" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "下载文件大小:%s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "你可以安装 %s 个更新" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "请稍等,这需要花一些时间。" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "检查有效的更新" +msgstr "检查更新" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "新版本:%s(大小:%s)" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "版本 %s: \n" +msgstr "版本 %s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(大小:%s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "您的发行版不再被支持" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见" -"\r\n" +"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见 \n" "http://www.ubuntu.com 来获取更多有关升级的信息。" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "软件索引已被破坏" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-" -"get install -f\"来修正这个问题。" +"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-get install -f\"来修正这个问题。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "无" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 #, fuzzy @@ -1030,25 +985,19 @@ msgid "" msgstr "" "你必须手动检测升级\n" "\n" -"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改" -"变." +"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改变." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "保持你的系统更新" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"读取光盘时出错\n" -"\n" -"%s" +msgstr "没有更新可供安装" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "开始升级?" +msgstr "运行升级管理器" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1056,7 +1005,7 @@ msgstr "变更" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "更新的变化及描述" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1081,6 +1030,9 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"运行发行升级,会安装尽可能多的更新。\n" +"\n" +"这是由不完全升级、非官方软件包或者运行开发版本引起的。" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1109,9 +1061,8 @@ msgid "_Check" msgstr "检查(_C)" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "继续升级(_R)" +msgstr "发行升级(_U)" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1122,31 +1073,28 @@ msgid "_Install Updates" msgstr "安装更新(_I)" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "变更" +msgstr "变化" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "更新" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internet 更新" +msgstr "自动更新" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Internet 更新" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internet 更新" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1158,6 +1106,9 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度每周会被匿名发送给Unbuntu。\n" +"\n" +"其结果用于流行软件支持及应用软件搜索排名。" #: ../data/glade/SoftwareProperties.glade.h:9 #, fuzzy @@ -1173,9 +1124,8 @@ msgid "D_elete downloaded software files:" msgstr "删除下载的软件文件(_e)" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "下载完成" +msgstr "下载自:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1201,37 +1151,32 @@ msgstr "还原为发行版本预设的密钥" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "软件属性" +msgstr "软件源" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "" -"二进制\n" -"源代码" +msgstr "源代码" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "统计" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "提交统计信息" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "第三方" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "自动检查更新(_C)" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "在后台下载更新,但是不安装(_D)" +msgstr "自动下载更新,但不安装(_D)" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1242,7 +1187,6 @@ msgid "_Install security updates without confirmation" msgstr "不确认就安装安全更新(_I)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1251,9 +1195,9 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"频道信息已过时\n" +"可用软件信息已过时\n" "\n" -"你必须从新增加的或更新的频道重载频道信息以安装软件和更新。\n" +"你必须重载可用软件信息,以安装软件和从新增或者改变的源更新。\n" "\n" "你需要一个有效的互联网连接才能继续。" @@ -1287,8 +1231,7 @@ msgid "" "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "输入你想增加的完整的频道 APT 命令行\n" -"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org " -"sarge main\"。" +"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org sarge main\"。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1303,22 +1246,16 @@ msgstr "" "源代码" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "" -"二进制\n" -"源代码" +msgstr "编辑源" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "正在扫描CD-ROM" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "" -"二进制\n" -"源代码" +msgstr "添加源(_A)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1348,9 +1285,7 @@ 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 this " "case." -msgstr "" -"如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下" -"要出现的提醒语。" +msgstr "如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下要出现的提醒语。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1376,263 +1311,204 @@ msgid "The window size" msgstr "窗口大小" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "设定软件频道和互联网升级" +msgstr "设定可安装和升级的源" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 更新" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "社区维护(Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "设备的专有驱动" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "贡献的软件" +msgstr "受限软件" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Ubuntu 6.10 'Edgy Eft' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6-06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" -msgstr "" +#, fuzzy +msgid "Canonical supported Open Source software" +msgstr "社区维护(Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "社区维护(Universe)" +msgstr "社区维护(universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "社区维护(Universe)" +msgstr "社区维护开源软件" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "非自由(Multiverse)" +msgstr "非自由驱动" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "设备的属性驱动 " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "非自由(Multiverse)" +msgstr "受限软件(Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "美国限制出口的软件" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6-06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Backported 更新" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.10 'Breezy Badger' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 移植" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 安全更新" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 安全更新" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'光盘" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支持" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 安全更新" +msgstr "Ubuntu 5.04 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 移植" +msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "社区维护(Universe)" +msgstr "社区维护" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "非自由(Multiverse)" +msgstr "非自由" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Ubuntu 4.10 'Warty Warthog'光盘" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "一些软件已经不在被官方支持." +msgstr "官方不再支持" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版权限制" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 更新" +msgstr "Ubuntu 4.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 移植" +msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" 安全更新" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (测试)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (非稳定)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "带有非自由依赖关系的DFSG兼容软件" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" +#~ msgid "By copyright or legal issues restricted software" +#~ msgstr "受到版权或法律问题限制的软件" + +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下载文件 %li/%li 速度未知" -#, fuzzy #~ msgid "Normal updates" -#~ msgstr "安装更新" +#~ msgstr "正常更新" #~ msgid "Cancel _Download" #~ msgstr "取消下载(_D)" @@ -1649,8 +1525,7 @@ msgstr "非DFSG兼容软件" #, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" -#~ msgstr "" -#~ "正在升级到 Ubuntu 6.06 LTS" +#~ msgstr "正在升级到 Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1678,15 +1553,16 @@ msgstr "非DFSG兼容软件" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并" -#~ "运行 “sudo apt-get dist-upgrade”来彻底更你新的系统。" +#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并运行 “sudo apt-get dist-" +#~ "upgrade”来彻底更你新的系统。" #~ msgid "The following updates will be skipped:" #~ msgstr "将跳过以下的升级包" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大约还要%li秒" @@ -1740,7 +1616,8 @@ msgstr "非DFSG兼容软件" #~ msgstr "编辑路径" #~ msgid "_Add Channel" -#~ msgstr "添加路径(_A)" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "添加路径(_A)" #~ msgid "_Custom" #~ msgstr "自定义(_C)" @@ -1758,8 +1635,8 @@ msgstr "非DFSG兼容软件" #~ msgstr "Ubuntu 6.06 LTS 后备支持" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "在检查你的源的信息时未能找到有效的升级记录\n" #~ msgid "Repositories changed" @@ -1871,4 +1748,4 @@ msgstr "非DFSG兼容软件" #~ msgstr "CD" #~ msgid "Non-free software" -#~ msgstr "非自由软件" +#~ msgstr "非自由软件" \ No newline at end of file diff --git a/po/zh_HK.po b/po/zh_HK.po index cd767a16..cbf7101e 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -1,68 +1,65 @@ -# traditional Chinese translation of update-manager. -# Copyright (C) 2005 Free Software Foundation, Inc. -# Abel Cheung , 2005. +# Chinese (Hong Kong) translation of update-manager. +# Copyright (C) 2005, 2006 Free Software Foundation, Inc. +# Abel Cheung , 2005, 2006. # msgid "" msgstr "" -"Project-Id-Version: update-manager 0.41.1\n" +"Project-Id-Version: update-manager 0.42.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-23 19:45+0000\n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-06-16 01:18+0000\n" "Last-Translator: Abel Cheung \n" -"Language-Team: Chinese (traditional) \n" +"Language-Team: Chinese (Hong Kong) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ../SoftwareProperties/SoftwareProperties.py:136 -#, fuzzy msgid "Daily" -msgstr "細節" +msgstr "每天" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "" +msgstr "每兩天" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "" +msgstr "每週" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "" +msgstr "每兩週" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" -msgstr "" +msgstr "每 %s 天" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "" +msgstr "一週後" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "" +msgstr "兩週後" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" -msgstr "" +msgstr "一個月後" #: ../SoftwareProperties/SoftwareProperties.py:174 #, python-format msgid "After %s days" -msgstr "" +msgstr "%s 日後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "正在安裝軟件更新..." +msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +69,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -89,9 +85,8 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "軟件更新" +msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 @@ -99,18 +94,16 @@ msgid "Active" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "源程式碼" +msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "源程式碼" +msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "" +msgstr "匯入密碼匙" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" @@ -125,7 +118,8 @@ msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -138,21 +132,21 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" -msgstr "" +msgstr "請輸入光碟的名稱" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "" +msgstr "請將光碟放入光碟機:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "" +msgstr "不完整套件" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" +msgstr "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復套件。" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -162,21 +156,18 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "" +msgstr "無法計算升級過程" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "你選定的密碼匙無法移除,請匯報問題。 " +msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -186,21 +177,19 @@ 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 a list of " "unauthenticated packages." -msgstr "" +msgstr "有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" -msgstr "" +msgstr "無法安裝「%s」" #: ../DistUpgrade/DistUpgradeCache.py:313 -#, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "你選定的密碼匙無法移除,請匯報問題。 " +msgstr "有必須的套件無法安裝,請匯報問題。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -230,7 +219,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "" +msgstr "正在讀取快取資料" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" @@ -246,7 +235,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "" +msgstr "找不到有效的 mirror 網站" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -260,7 +249,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -276,7 +264,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "" +msgstr "套件庫資料無效" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" @@ -286,7 +274,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "" +msgstr "停用外來的軟件來源" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" @@ -296,9 +284,8 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:358 -#, fuzzy msgid "Error during update" -msgstr "移除密碼匙時發生錯誤" +msgstr "更新時發生錯誤" #: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" @@ -308,7 +295,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" -msgstr "" +msgstr "磁碟空間不足" #: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format @@ -318,16 +305,15 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "" +msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "" +msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:449 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -336,21 +322,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" -msgstr "" +msgstr "無法下載升級所需的套件" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" +msgstr "升級現正中止。請檢查網路連線是否正常,然後再試一次。 " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -359,68 +345,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "" +msgstr "是否移除過時的套件?" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "" +msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" -msgstr "" +msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "另一個套件管理員正在執行中" +msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "正在下載更改紀錄" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." -msgstr "你選定的密碼匙無法移除,請匯報問題。 " +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "" +msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "" +msgstr "套件資料無效" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,28 +411,26 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "完成升級" +msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "" +msgstr "正在搜尋過時的軟件" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "" +msgstr "已完成系統升級。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "請將「%s」放入光碟機「%s」中" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -463,7 +442,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" @@ -475,7 +454,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -484,7 +462,7 @@ msgstr "正在下載更改紀錄..." #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "" +msgstr "無法安裝「%s」" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -492,7 +470,6 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -502,50 +479,46 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" -msgstr "" +msgstr "找不到「diff」指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 #, python-format msgid "" "\n" @@ -553,40 +526,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" -msgstr "系統已經在最新狀態!" +msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "" @@ -612,12 +583,11 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -632,7 +602,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -660,16 +629,15 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "" +msgstr "清理" #: ../DistUpgrade/DistUpgrade.glade.h:9 -#, fuzzy msgid "Details" -msgstr "細節" +msgstr "詳細資料" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" -msgstr "" +msgstr "檔案間的差別" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" @@ -677,19 +645,19 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "" +msgstr "更改軟件來源" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "" +msgstr "正準備升級" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "重新啟動系統" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" -msgstr "" +msgstr "終端機" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" @@ -701,24 +669,23 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "" +msgstr "保留(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 -#, fuzzy msgid "_Replace" -msgstr "重新載入" +msgstr "取代(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "報告錯誤(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "" +msgstr "現在重新啟動(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "" +msgstr "繼續升級(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -726,39 +693,36 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "" +msgstr "找不到發行通告" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "" +msgstr "伺服器可能負荷過重。 " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "" +msgstr "無法下載發行通告" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "" +msgstr "請檢查網絡連線是否正常。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "" +msgstr "無法執行升級工具" #: ../UpdateManager/DistUpgradeFetcher.py:150 -#, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "你選定的密碼匙無法移除,請匯報問題。" +msgstr "這可能是升級工具的錯誤,請匯報問題" #: ../UpdateManager/DistUpgradeFetcher.py:171 -#, fuzzy msgid "Downloading the upgrade tool" -msgstr "正在下載更改紀錄" +msgstr "正在下載升級工具" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "升級工具會引導你進行整個升級的過程。" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -766,29 +730,29 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "" +msgstr "升級工具" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "" +msgstr "下載失敗" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" +msgstr "下載升級工具失敗,可能是網絡上的問題。 " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "解壓失敗" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" +msgstr "升級套件解壓失敗。可能是因為網路或伺服器出現問題。 " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "" +msgstr "檢驗失敗" #: ../UpdateManager/DistUpgradeFetcher.py:222 msgid "" @@ -797,15 +761,14 @@ msgid "" msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 -#, fuzzy msgid "Authentication failed" -msgstr "認證" +msgstr "認證失敗" #: ../UpdateManager/DistUpgradeFetcher.py:229 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" +msgstr "認證升級套件失敗。可能是因為網路或伺服器出現問題。 " #: ../UpdateManager/GtkProgress.py:108 #, python-format @@ -817,163 +780,142 @@ msgstr "" msgid "Downloading file %(current)li of %(total)li" msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Ubuntu 已推出新版本!" +msgstr "" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Ubuntu 已推出新版本!" +msgstr "" -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。" +msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 安全性更新" +msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "正在安裝軟件更新..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "正在安裝軟件更新..." +msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "正在安裝軟件更新..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "正在下載更改紀錄" +msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" -msgstr "" +msgstr "下載大小:%s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "你可以安裝 %s 個更新套件" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" -msgstr "" +msgstr "完成更新" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "正在安裝軟件更新..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:808 +#: ../UpdateManager/UpdateManager.py:810 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "版本 %s: \n" +msgstr "" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "已經不再支援你用的發行版本" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1009,7 +951,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "" +msgstr "檢查(_K)" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" @@ -1021,7 +963,7 @@ msgstr "詳細說明" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "" +msgstr "發行通告" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1047,15 +989,15 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "升級(_P)" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "" +msgstr "升級至最新版本的 Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "" +msgstr "檢查(_C)" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" @@ -1066,37 +1008,32 @@ msgid "_Hide this information in the future" msgstr "" #: ../data/glade/UpdateManager.glade.h:24 -#, fuzzy msgid "_Install Updates" -msgstr "正在安裝軟件更新..." +msgstr "安裝軟件更新(_I)" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "更改紀錄" +msgstr "" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "線上更新" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:4 -#, fuzzy msgid "Internet updates" -msgstr "線上更新" +msgstr "網絡更新" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "線上更新" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1131,9 +1068,8 @@ msgid "Import the public key from a trusted software provider" msgstr "由你信任的密碼匙圈中移除指定的密碼匙。" #: ../data/glade/SoftwareProperties.glade.h:14 -#, fuzzy msgid "Internet Updates" -msgstr "線上更新" +msgstr "網絡更新" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" @@ -1142,9 +1078,8 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:16 -#, fuzzy msgid "Restore _Defaults" -msgstr "還原為預設值" +msgstr "還原為預設值(_D)" #: ../data/glade/SoftwareProperties.glade.h:17 #, fuzzy @@ -1153,14 +1088,12 @@ msgstr "還原為預設密碼匙" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "軟件屬性" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:19 -#, fuzzy msgid "Source code" -msgstr "源程式碼" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" @@ -1175,9 +1108,8 @@ msgid "Third Party" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:23 -#, fuzzy msgid "_Check for updates automatically:" -msgstr "檢查軟件更新間隔:" +msgstr "檢查軟件更新間隔(_C):" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" @@ -1220,10 +1152,9 @@ msgstr "類型:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 msgid "URI:" -msgstr "URI:" +msgstr "網址:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1231,10 +1162,6 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"請輸入整行你想加入的 APT 軟件庫位置\n" -"\n" -"該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp." -"debian.org sarge main\"。你可以在文件中尋找有關該行的格式的詳細描述。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1249,27 +1176,24 @@ msgstr "" "源程式碼" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 -#, fuzzy msgid "Edit Source" -msgstr "源程式碼" +msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "" +msgstr "正在掃描光碟" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "源程式碼" +msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 -#, fuzzy msgid "_Reload" -msgstr "重新載入" +msgstr "重新載入(_R)" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "" +msgstr "顯示及安裝現有的更新套件" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" @@ -1283,7 +1207,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "" +msgstr "檢查有沒有新的發行版本" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1298,11 +1222,11 @@ msgstr "" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" -msgstr "" +msgstr "顯示更新套件的詳細資料" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" +msgstr "儲存 update-manager 對話窗的大小" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1312,556 +1236,404 @@ msgstr "" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "" +msgstr "視窗大小" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 更新" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "協力維護軟件 (Universe)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "協力維護軟件" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 -#, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 5.04 更新" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "協力維護軟件 (Universe)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "協力維護軟件 (Universe)" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "非自由軟件 (Multiverse)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "非自由軟件 (Multiverse)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -#, fuzzy -msgid "By copyright or legal issues restricted software" -msgstr "美國禁止出口軟件" +msgid "Software restricted by copyright or legal issues" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 5.04 更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 -#, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 光碟 “Breezy Badger”" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 光碟 “Breezy Badger”" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Ubuntu 5.10 安全性更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 5.10 更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 -#, fuzzy msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 光碟 “Hoary Hedgehog”" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.04 光碟 “Hoary Hedgehog”" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 -#, fuzzy msgid "Officially supported" -msgstr "官方支援" +msgstr "正式支援" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 安全性更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟件 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟件 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 4.10 光碟 “Warty Warthog”" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "官方支援" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 4.10 安全性更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 4.10 更新" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 更新" +msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" -msgstr "Debian 3.1 “Sarge”" +msgstr "Debian 3.1「Sarge」" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 -#, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Debian 穩定版安全性更新" +msgstr "Debian 3.1「Sarge」安全性更新" -#. Description #: ../data/channels/Debian.info.in:34 -#, fuzzy msgid "Debian \"Etch\" (testing)" -msgstr "Debian 測試版" +msgstr "Debian 「Etch」(測試版)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "ftp://ftp.hk.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 -#, fuzzy msgid "Debian \"Sid\" (unstable)" -msgstr "Debian Non-US (不穩定版)" +msgstr "Debian 「Sid」(不穩定版)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "符合 DFSG 的軟件,但依賴於非自由軟件" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" - -#, fuzzy -#~ msgid "Normal updates" -#~ msgstr "正在安裝軟件更新..." - -#, fuzzy -#~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 安全性更新" - -#, fuzzy -#~ msgid "Cannot install all available updates" -#~ msgstr "正在檢查更新套件..." - -#, fuzzy -#~ msgid "Oficially supported" -#~ msgstr "官方支援" - -#, fuzzy -#~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "你選定的密碼匙無法移除,請匯報問題。" - -#, fuzzy -#~ msgid "Hide details" -#~ msgstr "細節" - -#, fuzzy -#~ msgid "Channels" -#~ msgstr "密碼匙" - -#~ msgid "Keys" -#~ msgstr "密碼匙" - -#~ msgid "Installation Media" -#~ msgstr "安裝媒體" - -#~ msgid "Software Preferences" -#~ msgstr "軟件偏好設定" - -#~ msgid " " -#~ msgstr " " - -#, fuzzy -#~ msgid "Channel" -#~ msgstr "密碼匙" - -#, fuzzy -#~ msgid "Components" -#~ msgstr "元件" - -#~ msgid "_Custom" -#~ msgstr "自選(_C)" - -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 5.10 更新" - -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 5.04 安全性更新" - -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Updates" -#~ msgstr "Ubuntu 5.10 更新" - -#, fuzzy -#~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 5.10 更新" - -#, fuzzy -#~ msgid "Sections" -#~ msgstr "分類:" - -#~ msgid "Sections:" -#~ msgstr "分類:" - -#, fuzzy -#~ msgid "Reload the latest information about updates" -#~ msgstr "由伺服器重新載入套件資料。" +msgstr "和 DFSG 不相容的軟件" +#, python-format #~ msgid "" -#~ "Downloading changes\n" +#~ "Error scaning the CD\n" #~ "\n" -#~ "Need to get the changes from the central server" +#~ "%s" #~ msgstr "" -#~ "下載更改紀錄\n" +#~ "掃描光碟時發生錯誤\n" #~ "\n" -#~ "現在由伺服器下載更改紀錄" - -#~ msgid "Show available updates and choose which to install" -#~ msgstr "顯示所有可更新的套件,並選擇要安裝的套件" - -#, fuzzy -#~ msgid "Error fetching the packages" -#~ msgstr "移除密碼匙時發生錯誤" - -#~ msgid "Edit software sources and settings" -#~ msgstr "修改軟件來源和設定" +#~ "%s" -#~ msgid "Sources" -#~ msgstr "來源" - -#~ msgid "day(s)" -#~ msgstr "日" - -#~ msgid "Repository" -#~ msgstr "軟件庫" - -#~ msgid "Temporary files" -#~ msgstr "暫存檔" - -#~ msgid "User Interface" -#~ msgstr "介面" +#~ msgid "" +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " +#~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #~ msgid "" -#~ "Authentication keys\n" -#~ "\n" -#~ "You can add and remove authentication keys in this dialog. A key makes it " -#~ "possible to verify the integrity of the software you download." +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." #~ msgstr "" -#~ "認證用密碼匙\n" -#~ "\n" -#~ "你可以在本對話窗內加減認證用的密碼匙。這些密碼匙可以用來檢查下載的軟件是否" -#~ "完整。" +#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因此無法偵測正在執行哪一個版本的 " +#~ "ubuntu。\n" +#~ "請先使用 synaptic 或 apt-get 安裝上述其中一個套件。" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Some third party entries in your souces.list where disabled. You can re-" +#~ "enable them after the upgrade with the 'software-properties' tool or with " +#~ "synaptic." #~ msgstr "" -#~ "將新的密碼匙檔加入你信任的密碼匙圈之內。請確保該密碼匙是經安全的途徑獲得" -#~ "的,而且屬於你信任的擁有者。 " - -#~ msgid "Add repository..." -#~ msgstr "加入軟件庫..." +#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用「software-properties」工具或 synaptic " +#~ "重新啟用這些來源。" -#~ msgid "Automatically check for software _updates." -#~ msgstr "自動檢查軟件更新(_U)" +#~ msgid "" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --configure -a)。" -#~ msgid "Automatically clean _temporary packages files" -#~ msgstr "自動清理暫存檔案(_T)" +#~ msgid "Some software no longer officially supported" +#~ msgstr "某些軟件不會再有正式支援" -#~ msgid "Clean interval in days: " -#~ msgstr "每隔多少天自動清理: " +#~ msgid "Restoring originale system state" +#~ msgstr "恢復原來的系統狀態" -#~ msgid "Delete _old packages in the package cache" -#~ msgstr "刪除套件快取中的舊套件(_O)" +#, python-format +#~ msgid "About %li days %li hours %li minutes remaining" +#~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" -#~ msgid "Edit Repository..." -#~ msgstr "編輯軟件庫..." +#, python-format +#~ msgid "About %li hours %li minutes remaining" +#~ msgstr "大約還剩下 %li 小時 %li 分鐘" -#~ msgid "Maximum age in days:" -#~ msgstr "時間上限 (日):" +#, python-format +#~ msgid "About %li minutes remaining" +#~ msgstr "大約還剩下 %li 分鐘" -#~ msgid "Maximum size in MB:" -#~ msgstr "大小上限 (MB):" +#, python-format +#~ msgid "About %li seconds remaining" +#~ msgstr "大約還剩下 %li 秒鐘" -#~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." -#~ msgstr "" -#~ "將發行版本提供的預設密碼匙還原。這個程序不會更改用戶自行安裝的密碼匙。" +#~ msgid "Download is complete" +#~ msgstr "下載完成" -#~ msgid "Set _maximum size for the package cache" -#~ msgstr "指定套件快取的大小上限(_M)" +#, python-format +#~ msgid "Downloading file %li of %li" +#~ msgstr "正在下載檔案 %li/%li" -#~ msgid "Settings" -#~ msgstr "設定" +#~ msgid "The upgrade aborts now. Please report this bug." +#~ msgstr "升級現正中止,請匯報問題。" -#~ msgid "Show detailed package versions" -#~ msgstr "顯示詳細套件版本資料" +#, python-format +#~ msgid "" +#~ "Replace configuration file\n" +#~ "'%s'?" +#~ msgstr "" +#~ "取代設定檔\n" +#~ "「%s」?" -#~ msgid "Show disabled software sources" -#~ msgstr "顯示被停用的軟件來源" +#, python-format +#~ msgid "%s package is going to be removed." +#~ msgid_plural "%s packages are going to be removed." +#~ msgstr[0] "準備移除 %s 個套件。" -#~ msgid "Update interval in days: " -#~ msgstr "每隔多少天自動更新: " +#, python-format +#~ msgid "%s new package is going to be installed." +#~ msgid_plural "%s new packages are going to be installed." +#~ msgstr[0] "準備安裝 %s 個新套件。" -#~ msgid "_Add Repository" -#~ msgstr "加入軟件庫(_A)" +#, python-format +#~ msgid "%s package is going to be upgraded." +#~ msgid_plural "%s packages are going to be upgraded." +#~ msgstr[0] "準備升級 %s 個套件。" -#~ msgid "_Download upgradable packages" -#~ msgstr "下載所有可以更新的套件(_D)" +#~ msgid "Downloading and installing the upgrades" +#~ msgstr "正在下載及安裝升級套件" -#~ msgid "Status:" -#~ msgstr "狀態:" +#~ msgid "Upgrading Ubuntu" +#~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Available Updates\n" -#~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." -#~ msgstr "" -#~ "Available Updates\n" -#~ "\n" -#~ "以下的軟件是可以更新的。你可以按「安裝」按鈕開始更新。" - -#~ msgid "Cancel downloading the changelog" -#~ msgstr "取消下載更改紀錄" +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " +#~ msgstr "檢驗升級套件失敗。可能是因為網路或伺服器出現問題。 " -#~ msgid "You need to be root to run this program" -#~ msgstr "你需要 root 的身分方可使用本程式" +#, python-format +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" -#~ msgid "Binary" -#~ msgstr "可執行檔" +#, python-format +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "正在下載檔案 %li/%li,下載速度不明" -#~ msgid "Non-free software" -#~ msgstr "非自由軟件" +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "修改紀錄不存在,請稍後再試。" -#~ msgid "Debian 3.0 \"Woody\"" -#~ msgstr "Debian 3.0 “Woody”" +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。" -#~ msgid "Debian Stable" -#~ msgstr "Debian 穩定版" +#~ msgid "Cannot install all available updates" +#~ msgstr "無法安裝所有更新套件" -#~ msgid "Debian Unstable \"Sid\"" -#~ msgstr "Debian 不穩定版 “Sid”" +#~ 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 "" +#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」的「標記所有升級」功能或在終端機中執行「sudo apt-get " +#~ "dist-upgrade」來更新整個系統。" -#~ msgid "Debian Non-US (Stable)" -#~ msgstr "Debian Non-US (穩定版)" +#~ msgid "The following updates will be skipped:" +#~ msgstr "會略過更新以下套件:" -#~ msgid "Debian Non-US (Testing)" -#~ msgstr "Debian Non-US (測試版)" +#~ msgid "Downloading the list of changes..." +#~ msgstr "正在下載更改紀錄…" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu 套件自動簽署用密碼匙 " +#, fuzzy +#~ msgid "Hide details" +#~ msgstr "細節" -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu 光碟自動簽署用密碼匙 " +#~ msgid "Cancel _Download" +#~ msgstr "取消下載(_D)" -#~ msgid "Choose a key-file" -#~ msgstr "選擇密碼匙檔" +#~ msgid "Channels" +#~ msgstr "套件來源" -#~ msgid "There is one package available for updating." -#~ msgstr "有 1 個套件可以更新。" +#~ msgid "Keys" +#~ msgstr "密碼匙" -#~ msgid "There are %s packages available for updating." -#~ msgstr "有 %s 個套件可以更新。" +#~ msgid "Add _Cdrom" +#~ msgstr "加入光碟機(_C)" -#~ msgid "There are no updated packages" -#~ msgstr "沒有任何套件需要更新" +#~ msgid "Installation Media" +#~ msgstr "安裝媒體" -#~ msgid "You did not select any of the %s updated package" -#~ msgid_plural "You did not select any of the %s updated packages" -#~ msgstr[0] "你沒有選取 %s 個更新套件中的任何一個" -#~ msgstr[1] "你沒有選取 %s 個更新套件中的任何一個" +#~ msgid "Software Preferences" +#~ msgstr "軟件偏好設定" -#~ msgid "You have selected %s updated package, size %s" -#~ msgid_plural "You have selected all %s updated packages, total size %s" -#~ msgstr[0] "你選取了 %s 個更新套件,大小為 %s" -#~ msgstr[1] "你選取了 %s 個更新套件,大小為 %s" +#~ msgid " " +#~ msgstr " " #, fuzzy -#~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" -#~ msgstr[0] "你選取了 %2$s 個更新套件中的 %1$s 個,大小為 %3$s" -#~ msgstr[1] "你選取了 %2$s 個更新套件中的 %1$s 個,大小總共為 %3$s" +#~ msgid "Channel" +#~ msgstr "密碼匙" -#~ msgid "The updates are being applied." -#~ msgstr "現在安裝更新套件。" +#, fuzzy +#~ msgid "Components" +#~ msgstr "元件" +#, fuzzy #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." -#~ msgstr "你在任何時候只可以執行一個套件管理員程式。請關閉其它程式。" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a channel, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." +#~ msgstr "" +#~ "請輸入整行你想加入的 APT 軟件庫位置\n" +#~ "\n" +#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp.debian.org sarge " +#~ "main\"。你可以在文件中尋找有關該行的格式的詳細描述。" + +#~ msgid "Edit Channel" +#~ msgstr "修改套件來源" + +#~ msgid "_Add Channel" +#~ msgid_plural "_Add Channels" +#~ msgstr[0] "加入套件來源(_A)" -#~ msgid "Updating package list..." -#~ msgstr "正在更新套件清單..." +#~ msgid "_Custom" +#~ msgstr "自選(_C)" -#~ msgid "There are no updates available." -#~ msgstr "沒有任何軟件可以更新。" +#~ msgid "Configure software channels and internet updates" +#~ msgstr "設定套件來源及網絡更新" -#~ msgid "New version:" -#~ msgstr "新版本:" +#~ msgid "Software Properties" +#~ msgstr "軟件屬性" -#~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." -#~ msgstr "" -#~ "請升級至新版本的 Ubuntu Linux。你現在用的版本不會再有任何安全性更新或重要" -#~ "的更新。有關升級的資料,請瀏覽 http://www.ubuntulinux.org 。" +#~ msgid "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" -#~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." -#~ msgstr "" -#~ "名稱為 “%s” 的新版本已經推出。請瀏覽 http://www.ubuntulinux.org/ 獲取有關" -#~ "升級的指引。" +#~ msgid "Ubuntu 6.06 LTS Security Updates" +#~ msgstr "Ubuntu 6.06 LTS 安全性更新" -#~ msgid "Never show this message again" -#~ msgstr "以後不再顯示此訊息" +#~ msgid "Ubuntu 6.06 LTS Updates" +#~ msgstr "Ubuntu 6.06 LTS 更新" -#~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "沒有更改紀錄,可能伺服器資料未更新。" +#, fuzzy +#~ msgid "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 5.10 更新" \ No newline at end of file diff --git a/po/zh_TW.po b/po/zh_TW.po index fdfa2fc9..b1e583d0 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,19 +1,15 @@ -# Chinese (Taiwan)translation of update-manager. -# Copyright (C) 2005 Free Software Foundation, Inc. -# Abel Cheung , 2005. -# msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-02 18:41+0200\n" -"PO-Revision-Date: 2006-05-31 12:00+0000\n" -"Last-Translator: PCMan \n" +"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"PO-Revision-Date: 2006-09-14 07:29+0000\n" +"Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=1; plural=0\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -53,57 +49,53 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 天過後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "安裝更新套件(_I)" +msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, python-format +#, fuzzy msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "主要伺服器" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "位於%s的伺服器" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "最近的伺服器" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "個人伺服器" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "軟體更新" +msgstr "軟體頻道" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "動作中" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(原始碼)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "原始碼" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -122,19 +114,17 @@ msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"掃描光碟時發生錯誤\n" -"\n" -"%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 msgid "Please enter a name for the disc" @@ -152,9 +142,7 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" -"您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " -"synaptic 或 apt-get 來修恢它們。" +msgstr "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 synaptic 或 apt-get 來修恢它們。" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -164,21 +152,18 @@ msgstr "無法升級須要的元套件 (meta-package)" msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "計算升級時發生無法解決的問題,請匯報問題。 " +msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" @@ -188,9 +173,7 @@ 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 a list of " "unauthenticated packages." -msgstr "" -"一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" -"的套件。" +msgstr "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -203,13 +186,11 @@ msgid "" "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -217,14 +198,10 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop 套件,因" -"此無法偵測正在執行那個版本的 ubuntu。\n" -" 請進行操作前使用 synaptic 或 apt-get安裝上述其中一個套件" #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "下載失敗" +msgstr "無法加入光碟" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -235,6 +212,10 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉報為臭蟲。\n" +"\n" +"錯誤訊息為:\n" +"「%s」" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -267,14 +248,11 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror " -"資訊已經過時的時候發生。\n" +"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror 資訊已經過時的時候發生。\n" "\n" -"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' " -"到 '%s'。\n" +"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' 到 '%s'。\n" "如果選擇「否」,則更新會被取消。" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "產生預設的來源?" @@ -306,14 +284,11 @@ msgid "Third party sources disabled" msgstr "停用第三方來源" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" -"properties' 工具或 synaptic升級後,你可以重新啟用它。" #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -336,20 +311,17 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get " -"clean'來移除先前安裝套件時的暫存檔。" +"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get clean'來移除先前安裝套件時的暫存檔。" -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:428 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:448 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:449 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -357,24 +329,22 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" -"configure -a)。" -#: ../DistUpgrade/DistUpgradeControler.py:467 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "無法下載升級套件" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常及再試 " -#: ../DistUpgrade/DistUpgradeControler.py:504 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:505 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -383,67 +353,63 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:540 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" msgstr "移除不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:541 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:551 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" msgstr "提交時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "恢復原先的系統狀態" +msgstr "回覆原有系統狀態" -#: ../DistUpgrade/DistUpgradeControler.py:620 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:655 -#: ../DistUpgrade/DistUpgradeControler.py:697 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:659 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "正準備升級" +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:660 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:672 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/dist-" "upgrade/ in the bugreport." -msgstr "計算升級時發生無法解決的問題,請匯報問題。 " +msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:683 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:708 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "無效的套件資訊" -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -453,52 +419,49 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "詢問以確認" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:732 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" msgstr "尋搜不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "系統升級完成。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "請將‘%s’放入光碟機‘%s’中" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "更新完成" +msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "正在下載檔案 %li/%li,速度在 %s/秒" +msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:248 +#: ../DistUpgrade/DistUpgradeViewGtk.py:249 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" -msgstr "正在下載檔案 %li/%li" +msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在套用變更" @@ -514,107 +477,97 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"取代設定檔\n" -"‘%s‘?" #: ../DistUpgrade/DistUpgradeViewGtk.py:203 msgid "" -"You will lose any local changes to this file if you replace this file with " -"the latest version." +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:215 +#: ../DistUpgrade/DistUpgradeViewGtk.py:216 msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:354 +#: ../DistUpgrade/DistUpgradeViewGtk.py:355 msgid "A fatal error occured" msgstr "發生嚴重錯誤" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/log/" -"dist-upgrade-apt.log 這兩個檔案。 現在取消更新。\n" -"您的原始 sources.list 已被存到 /etc/apt/sources.list.distUpgrade。" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:486 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s 個套件將會移除。" -msgstr[1] "" +msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:491 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s 個新套件將會安裝。" -msgstr[1] "" +msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:497 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s 個套件將會升級。" -msgstr[1] "" +msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:502 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#, python-format msgid "" "\n" "\n" "You have to download a total of %s. " -msgstr "您總共需要下載 %s。" +msgstr "" +"\n" +"\n" +"你必須下載全部的%s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:508 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "升級可能需要數小時及無法在稍後任何時間取消。" +msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:511 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#: ../UpdateManager/UpdateManager.py:604 +#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../UpdateManager/UpdateManager.py:606 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:519 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:534 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #, python-format msgid "Remove %s" msgstr "移除 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:537 #, python-format msgid "Install %s" msgstr "安裝 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:538 +#: ../DistUpgrade/DistUpgradeViewGtk.py:539 #, python-format msgid "Upgrade %s" msgstr "升級 %s" @@ -622,30 +575,29 @@ msgstr "升級 %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li日%li小時%li分鐘" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li小時%li分鐘" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li分鐘" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" -"This download will take about %s with a 56k modem and about %s with a 1Mbit " -"DSL connection" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:109 @@ -660,7 +612,6 @@ msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -702,9 +653,8 @@ msgid "Difference between the files" msgstr "檔案間的差別" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "正在下載及安裝升級" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -723,9 +673,8 @@ msgid "Terminal" msgstr "終端" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "繼續升級(_R)" +msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -752,9 +701,8 @@ msgid "_Resume Upgrade" msgstr "繼續升級(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "繼續升級(_R)" +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -772,7 +720,6 @@ msgstr "無法下載發行說明" msgid "Please check your internet connection." msgstr "請檢查您的網路連線。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -821,11 +768,10 @@ msgid "Verfication failed" msgstr "檢驗失敗" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "檢驗升級套件失敗。可能是因為跟伺服器的網路連接出現問題。 " +msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -838,209 +784,177 @@ msgid "" msgstr "認證升級套件失敗。可能是因為跟伺服器的網路連線出現問題。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" +msgstr "" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" +msgstr "" -#: ../UpdateManager/UpdateManager.py:204 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "修改紀錄不存在,請稍後再試。" +msgstr "" -#: ../UpdateManager/UpdateManager.py:210 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "修改紀錄不存在,請稍後再試。" +msgstr "" -#: ../UpdateManager/UpdateManager.py:215 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "無法下載更動列表。請檢查網路連線是否正常。" +msgstr "" -#. Description -#: ../UpdateManager/UpdateManager.py:235 ../data/channels/Ubuntu.info.in:88 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "Ubuntu 5.10 安全性更新" +msgstr "重要的安全更新" -#. Description -#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:93 +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "建議的安全更新" -#. Description -#: ../UpdateManager/UpdateManager.py:238 ../data/channels/Ubuntu.info.in:98 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "安裝更新套件(_I)" +msgstr "" -#: ../UpdateManager/UpdateManager.py:239 +#: ../UpdateManager/UpdateManager.py:241 msgid "Backports" msgstr "" -#: ../UpdateManager/UpdateManager.py:240 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "繼續升級(_R)" +msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin -#: ../UpdateManager/UpdateManager.py:247 ../UpdateManager/UpdateManager.py:264 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" -msgstr "安裝更新套件(_I)" +msgstr "其他更新" -#: ../UpdateManager/UpdateManager.py:460 +#: ../UpdateManager/UpdateManager.py:462 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:521 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:523 msgid "Downloading list of changes..." -msgstr "正在下載修改紀錄..." +msgstr "" -#: ../UpdateManager/UpdateManager.py:548 +#: ../UpdateManager/UpdateManager.py:550 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:554 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:556 msgid "_Check All" -msgstr "檢查(_C)" +msgstr "" -#. TRANSLATORS: b stands for Bytes -#: ../UpdateManager/UpdateManager.py:595 ../UpdateManager/UpdateManager.py:619 +#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 #, python-format msgid "Download size: %s" msgstr "下載大小:%s" -#: ../UpdateManager/UpdateManager.py:615 +#: ../UpdateManager/UpdateManager.py:617 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "您可以安裝 %s 個更新" -msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:648 +#: ../UpdateManager/UpdateManager.py:650 msgid "Please wait, this can take some time." msgstr "請稍候,這可能需要一點時間。" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:652 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:701 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:703 msgid "Checking for updates" -msgstr "安裝更新套件(_I)" +msgstr "" -#: ../UpdateManager/UpdateManager.py:808 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:810 +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "新版本:%s (大小:%s)" +msgstr "" -#: ../UpdateManager/UpdateManager.py:812 -#, fuzzy, python-format +#: ../UpdateManager/UpdateManager.py:814 +#, python-format msgid "Version %s" -msgstr "版本 %s: \n" +msgstr "版本%s" -#. TRANSLATORS: the b stands for Bytes -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:816 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(大小: %s)" -#: ../UpdateManager/UpdateManager.py:825 +#: ../UpdateManager/UpdateManager.py:827 msgid "Your distribution is not supported anymore" msgstr "您正使用的發行版本已不再支援" -#: ../UpdateManager/UpdateManager.py:826 +#: ../UpdateManager/UpdateManager.py:828 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 " "information on upgrading." msgstr "" -"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " -"http://www.ubuntu.com以取得更多升級資訊。" +"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 http://www.ubuntu.com以取得更多升級資訊。" -#: ../UpdateManager/UpdateManager.py:845 +#: ../UpdateManager/UpdateManager.py:847 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" -#. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:880 +#: ../UpdateManager/UpdateManager.py:882 msgid "Software index is broken" msgstr "軟體索引損壞" -#: ../UpdateManager/UpdateManager.py:881 +#: ../UpdateManager/UpdateManager.py:883 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 terminal to fix " "this issue at first." msgstr "" -"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo " -"apt-get install -f”來修正問題。" +"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo apt-get install -f”來修正問題。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 +#, fuzzy msgid "None" -msgstr "" +msgstr "無下載" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"您必須自行檢查更新\n" -"\n" -"您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "將您的系統維持在最新狀態" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"掃描光碟時發生錯誤\n" -"\n" -"%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "開始升級?" +msgstr "" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1048,7 +962,7 @@ msgstr "修改紀錄" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "在更新中的更動及其敘述" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1086,7 +1000,7 @@ msgstr "軟體更新" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "軟體更新會更正錯誤, 排除安全弱點, 並提功新功能." +msgstr "軟體更新會更正錯誤, 排除安全弱點, 並提供新功能." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1101,9 +1015,8 @@ msgid "_Check" msgstr "檢查(_C)" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "繼續升級(_R)" +msgstr "" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1114,31 +1027,28 @@ msgid "_Install Updates" msgstr "安裝更新套件(_I)" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "changes" -msgstr "修改紀錄" +msgstr "更動" #: ../data/glade/UpdateManager.glade.h:26 msgid "updates" -msgstr "" +msgstr "更新" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "線上更新" +msgstr "自動更新" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "光碟/DVD光碟" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "線上更新" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "線上更新" +msgstr "網際網路" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1152,9 +1062,8 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "加入光碟(_C)" +msgstr "" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1165,9 +1074,8 @@ msgid "D_elete downloaded software files:" msgstr "刪除已下載的軟體檔案(_E):" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "下載完成" +msgstr "下載於:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1193,9 +1101,8 @@ msgstr "還原為發行版本預設的金鑰" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "軟體屬性" +msgstr "軟體原始碼" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" @@ -1211,16 +1118,15 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "第三方" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "自動檢查更新(_C):" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "在背景下載更新套件,但無須安裝(_D)" +msgstr "自動下載更新部份但不進行安裝(_D)" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1231,7 +1137,6 @@ msgid "_Install security updates without confirmation" msgstr "無須確認便安裝安全性更新(_I)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1240,12 +1145,6 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"套件來源的資料已經過期\n" -"\n" -"您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套" -"件。\n" -"\n" -"您須要連線到網際網路繼續。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1268,7 +1167,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1276,11 +1174,6 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"請輸入您想加入的完整的 APT 來源列\n" -"\n" -"\n" -"APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp." -"debian.org sarge main\"。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1296,7 +1189,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "編輯來源" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" @@ -1304,7 +1197,7 @@ msgstr "正在掃描光碟" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "增加來源(_A)" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1329,14 +1222,11 @@ msgid "Check for new distribution releases" msgstr "檢查有沒有新的發行版本" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許關" -"閉更新提示" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1351,302 +1241,278 @@ msgid "Stores the size of the update-manager dialog" msgstr "儲存 update-manager 對話視窗的大小" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" -msgstr "儲存包含修改紀錄及描述的 expander 的狀態" +msgstr "" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" msgstr "視窗大小" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "設定套件來源及網路更新" +msgstr "設置可安裝的軟體及更新部份之來源。" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 更新" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "協力維護軟體 (Universe)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "非自由軟體 (Multiverse)" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Ubuntu 6.10 'Edgy Eft'的光碟" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 ‘Dapper Drake‘" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -msgid "By Canonical supported Open Source software" +msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "協力維護軟體 (Universe)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "協力維護軟體 (Universe)" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "非自由軟體 (Multiverse)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "非自由軟體 (Multiverse)" +msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 -msgid "By copyright or legal issues restricted software" +msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 ‘Dapper Drake‘" +msgstr "含Ubuntu 6.06 LTS 'Dapper Drake'之光碟" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 ‘Breezy Badger’" +msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 ‘Breezy Badger’" +msgstr "Ubuntu 5.10 'Breezy Badger'的光碟" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Ubuntu 5.10 安全性更新" +msgstr "Ubuntu 5.10安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 5.10 更新" +msgstr "Ubuntu 5.10更新" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 回移套件" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 ‘Breezy Badger’" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'的光碟" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支援" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 安全性更新" +msgstr "Ubuntu 5.04安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 更新" +msgstr "Ubuntu 5.04更新" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 回移套件" +msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 ‘Breezy Badger’" +msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟體 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟體 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "含Ubuntu 4.10 'Warty Warthog'之光碟" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "有些軟體不再有官方支援" +msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限制" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 安全性更新" +msgstr "Ubuntu 4.10安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 更新" +msgstr "Ubuntu 4.10更新" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 回移套件" +msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 “Sarge”" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 “Sarge” 安全性更新" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian “Etch”(測試版)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian “Sid”(不穩定版)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" -#~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "正在下載檔案 %li/%li,下載速度不明" - -#, fuzzy -#~ msgid "Normal updates" -#~ msgstr "安裝更新套件(_I)" +#~ msgid " " +#~ msgstr " " -#~ msgid "Cancel _Download" -#~ msgstr "取消下載(_D)" +#, python-format +#~ msgid "%s new package is going to be installed." +#~ msgid_plural "%s new packages are going to be installed." +#~ msgstr[0] "%s 個新套件將會安裝。" -#~ msgid "Some software no longer officially supported" -#~ msgstr "有些軟體不再有官方支援" +#, python-format +#~ msgid "%s package is going to be removed." +#~ msgid_plural "%s packages are going to be removed." +#~ msgstr[0] "%s 個套件將會移除。" -#~ msgid "Could not find any upgrades" -#~ msgstr "無法找到任何升級" +#, python-format +#~ msgid "%s package is going to be upgraded." +#~ msgid_plural "%s packages are going to be upgraded." +#~ msgstr[0] "%s 個套件將會升級。" -#~ msgid "Your system has already been upgraded." -#~ msgstr "系統升級已經完成。" +#~ msgid "" +#~ "The channel information is out-of-date\n" +#~ "\n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" +#~ "\n" +#~ "You need a working internet connection to continue." +#~ msgstr "" +#~ "套件來源的資料已經過期\n" +#~ "\n" +#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套件。\n" +#~ "\n" +#~ "您須要連線到網際網路繼續。" -#, fuzzy #~ msgid "" -#~ "Upgrading to Ubuntu 6.10" +#~ "You must check for updates manually\n" +#~ "\n" +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "升級至 Ubuntu 6.06 LTS" +#~ "您必須自行檢查更新\n" +#~ "\n" +#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。" -#, fuzzy -#~ msgid "Important security updates of Ubuntu" -#~ msgstr "Ubuntu 5.10 安全性更新" +#~ msgid "Channel" +#~ msgstr "套件來源" -#, fuzzy -#~ msgid "Updates of Ubuntu" -#~ msgstr "升級到最新版本的 Ubuntu" +#~ msgid "Channels" +#~ msgstr "套件來源" -#~ msgid "Cannot install all available updates" -#~ msgstr "無法安裝所有更新套件" +#~ msgid "Components" +#~ msgstr "元件" + +#~ msgid "Keys" +#~ msgstr "金鑰" + +#~ msgid "" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" +#~ "\n" +#~ "The APT line includes the type, location and components of a channel, for " +#~ "example \"deb http://ftp.debian.org sarge main\"." +#~ msgstr "" +#~ "請輸入您想加入的完整的 APT 來源列\n" +#~ "\n" +#~ "\n" +#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp.debian.org sarge " +#~ "main\"。" + +#, python-format +#~ msgid "" +#~ "Error scaning the CD\n" +#~ "\n" +#~ "%s" +#~ msgstr "" +#~ "掃描光碟時發生錯誤\n" +#~ "\n" +#~ "%s" #~ msgid "" #~ "Examining your system\n" @@ -1656,160 +1522,238 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "" #~ "正在檢測您的系統\n" #~ "\n" -#~ "軟體更新會更正錯誤,排除安全弱點,並提功新功能." - -#, fuzzy -#~ msgid "Oficially supported" -#~ msgstr "官方支援" +#~ "軟體更新會更正錯誤,排除安全弱點,並提供新功能." #~ 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 "" -#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」" -#~ "功能或在終端機中執行“sudo apt-get dist-upgrade”來完整地更新您的系統。" +#~ "Upgrading to Ubuntu 6.06 LTS" +#~ msgstr "升級至 Ubuntu 6.06 LTS" -#~ msgid "The following updates will be skipped:" -#~ msgstr "會略過更新以下套件:" +#~ msgid "" +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " +#~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " -#~ msgid "Download is complete" -#~ msgstr "下載完成" +#, python-format +#~ msgid "About %li days %li hours %li minutes remaining" +#~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" -#~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "升級現正中止,請匯報問題。" +#, python-format +#~ msgid "About %li hours %li minutes remaining" +#~ msgstr "大約還剩下 %li 小時 %li 分鐘" -#~ msgid "Upgrading Ubuntu" -#~ msgstr "正在升級 Ubuntu" +#, python-format +#~ msgid "About %li minutes remaining" +#~ msgstr "大約還剩下 %li 分鐘" -#~ msgid "Hide details" -#~ msgstr "隱藏詳細資料" +#, python-format +#~ msgid "About %li seconds remaining" +#~ msgstr "大約還剩下 %li 秒鐘" -#~ msgid "Show details" -#~ msgstr "顯示詳細資料" +#~ msgid "Add Channel" +#~ msgstr "加入套件來源" -#~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "同時間只允許執行一個套件管理程式" +#~ msgid "Add _Cdrom" +#~ msgstr "加入光碟(_C)" +#, python-format #~ msgid "" -#~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "請先關閉其它程式,如‘aptitude’ 或‘Synaptic’。" +#~ "After your package information was updated the essential package '%s' can " +#~ "not be found anymore.\n" +#~ "This indicates a serious error, please report this as a bug." +#~ msgstr "" +#~ "在更新套件資訊之後,無法找到必要的套件 '%s'。\n" +#~ "這表示有嚴重的錯誤,請回報這個 bug。" -#~ msgid "Channels" -#~ msgstr "套件來源" +#~ msgid "Cancel _Download" +#~ msgstr "取消下載(_D)" -#~ msgid "Keys" -#~ msgstr "金鑰" +#~ msgid "Cannot install all available updates" +#~ msgstr "無法安裝所有更新套件" -#~ msgid "Installation Media" -#~ msgstr "安裝媒體" +#~ msgid "Configure software channels and internet updates" +#~ msgstr "設定套件來源及網路更新" -#~ msgid "Software Preferences" -#~ msgstr "軟體偏好設定" +#~ msgid "Could not find any upgrades" +#~ msgstr "無法找到任何升級" -#~ msgid " " -#~ msgstr " " +#~ msgid "Download is complete" +#~ msgstr "下載完成" -#~ msgid "Channel" -#~ msgstr "套件來源" +#~ msgid "Downloading and installing the upgrades" +#~ msgstr "正在下載及安裝升級" -#~ msgid "Components" -#~ msgstr "元件" +#, python-format +#~ msgid "Downloading file %li of %li" +#~ msgstr "正在下載檔案 %li/%li" -#~ msgid "Add Channel" -#~ msgstr "加入套件來源" +#, python-format +#~ msgid "Downloading file %li of %li at %s/s" +#~ msgstr "正在下載檔案 %li/%li,速度在 %s/秒" + +#, python-format +#~ msgid "Downloading file %li of %li with %s/s" +#~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" + +#, python-format +#~ msgid "Downloading file %li of %li with unknown speed" +#~ msgstr "正在下載檔案 %li/%li,下載速度不明" + +#~ msgid "Downloading the list of changes..." +#~ msgstr "正在下載修改紀錄..." #~ msgid "Edit Channel" #~ msgstr "編輯套件來源" -#, fuzzy -#~ msgid "_Add Channel" -#~ msgstr "加入套件來源(_A)" - -#~ msgid "_Custom" -#~ msgstr "自訂(_C)" +#~ msgid "" +#~ "Failed to download the list of changes. Please check your Internet " +#~ "connection." +#~ msgstr "無法下載更動列表。請檢查網路連線是否正常。" -#~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 更新" +#~ msgid "Hide details" +#~ msgstr "隱藏詳細資料" -#~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 6.06 LTS 安全性更新" +#~ msgid "" +#~ "If automatic checking for updates is disabeld, you have to reload the " +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." +#~ msgstr "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許關閉更新提示" -#~ msgid "Ubuntu 6.06 LTS Updates" -#~ msgstr "Ubuntu 6.06 LTS 更新" +#~ msgid "Installation Media" +#~ msgstr "安裝媒體" -#~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS 回移套件" +#, python-format +#~ msgid "New version: %s (Size: %s)" +#~ msgstr "新版本:%s (大小:%s)" -#~ msgid "No valid entry found" -#~ msgstr "找不到有效的項目" +#~ msgid "Only one software management tool is allowed to run at the same time" +#~ msgstr "同時間只允許執行一個套件管理程式" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" -#~ msgstr "掃描套件庫資料作升級時找不到有效的項目。\n" +#~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." +#~ msgstr "請先關閉其它程式,如‘aptitude’ 或‘Synaptic’。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "升級現正中止。您的系統可以會處於不穩定的狀態。執行 (dpkg --configure -a) " -#~ "來恢復。" +#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/log/dist-upgrade-" +#~ "apt.log 這兩個檔案。 現在取消更新。\n" +#~ "您的原始 sources.list 已被存到 /etc/apt/sources.list.distUpgrade。" +#, python-format #~ msgid "" -#~ "Please report this as a bug and include the files ~/dist-upgrade.log and " -#~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " +#~ "Replace configuration file\n" +#~ "'%s'?" #~ msgstr "" -#~ "請匯報問題及在報告中請包括檔案 ~/dist-upgrade.log 和 ~/dist-upgrade-apt." -#~ "log。升級現正中止。 " +#~ "取代設定檔\n" +#~ "‘%s‘?" -#~ msgid "You can install one update" -#~ msgid_plural "You can install %s updates" -#~ msgstr[0] "您可以安裝 1 個更新套件" -#~ msgstr[1] "您可以安裝 %s 個更新套件" +#~ msgid "Restoring originale system state" +#~ msgstr "恢復原先的系統狀態" -#~ msgid "Repositories changed" -#~ msgstr "套件庫已變更" +#~ msgid "Show details" +#~ msgstr "顯示詳細資料" + +#~ msgid "Software Preferences" +#~ msgstr "軟體偏好設定" + +#~ msgid "Software Properties" +#~ msgstr "軟體屬性" + +#~ msgid "Some software no longer officially supported" +#~ msgstr "有些軟體不再有官方支援" #~ 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 "您需要重新載入在伺服器中的套件清單使變更生效。現在要這樣做?" +#~ "Some third party entries in your souces.list where disabled. You can re-" +#~ "enable them after the upgrade with the 'software-properties' tool or with " +#~ "synaptic." +#~ msgstr "" +#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-properties' 工具或 " +#~ "synaptic升級後,你可以重新啟用它。" #~ msgid "" -#~ "Analysing your system\n" -#~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "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 "" -#~ "正在分析您的系統\n" -#~ "\n" -#~ "軟體更新能夠修正錯誤、防止安全漏洞及增加新的功能。" +#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」功能或在終端機中執行“sudo apt-get dist-" +#~ "upgrade”來完整地更新您的系統。" #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." -#~ msgstr "軟體更新能夠修正錯誤、防止安全漏洞及增加新的功能。" +#~ "Stores the state of the expander that contains the list of changs and the " +#~ "description" +#~ msgstr "儲存包含修改紀錄及描述的 expander 的狀態" + +#~ msgid "The following updates will be skipped:" +#~ msgstr "會略過更新以下套件:" + +#~ msgid "The list of changes is not available yet. Please try again later." +#~ msgstr "修改紀錄不存在,請稍後再試。" + +#~ msgid "The upgrade aborts now. Please report this bug." +#~ msgstr "升級現正中止,請匯報問題。" #~ msgid "" -#~ "Only security updates from the official Ubuntu servers will be installed " -#~ "automatically. The software package \"unattended-upgrades\" needs to be " -#~ "installed therefor" -#~ msgstr "" -#~ "只有來自 ubuntu 官方伺服器的安全性更新會自動安裝。需要安裝軟體套" -#~ "件“unattended-upgrades”" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --configure -a)。" -#~ msgid "Sections" -#~ msgstr "組別:" +#~ msgid "" +#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ msgstr "升級可能需要數小時及無法在稍後任何時間取消。" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "These installed packages are no longer officially supported, and are now " +#~ "only community-supported ('universe').\n" #~ "\n" -#~ "The APT line contains the type, location and sections of a channel, for " -#~ "example \"deb http://ftp.debian.org sarge main\"." +#~ "If you don't have 'universe' enabled these packages will be suggested for " +#~ "removal in the next step. " #~ msgstr "" -#~ "請輸入要加入的套件來源的 APT 套件庫位置\n" +#~ "這些已安裝的套件官方不再支援,現在將只會由社群維護 ('universe')\n" #~ "\n" -#~ "APT 套件庫位置 (APT line) 包括套件來源的類型、位置和組別,例如: “deb " -#~ "http://ftp.debian.org sarge main”。" +#~ "如果你沒有啟用 'universe',這些套件將會在下一步驟被移除。 " + +#~ msgid "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 更新" + +#~ msgid "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS 回移套件" + +#~ msgid "Ubuntu 6.06 LTS Security Updates" +#~ msgstr "Ubuntu 6.06 LTS 安全性更新" + +#~ msgid "Ubuntu 6.06 LTS Updates" +#~ msgstr "Ubuntu 6.06 LTS 更新" + +#~ msgid "Upgrading Ubuntu" +#~ msgstr "正在升級 Ubuntu" + +#~ msgid "" +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " +#~ msgstr "檢驗升級套件失敗。可能是因為跟伺服器的網路連接出現問題。 " + +#, python-format +#~ msgid "You have to download a total of %s." +#~ msgstr "您總共需要下載 %s。" + +#~ msgid "" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" +#~ " Please install one of the packages above first using synaptic or apt-get " +#~ "before proceeding." +#~ msgstr "" +#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop " +#~ "套件,因此無法偵測正在執行那個版本的 ubuntu。\n" +#~ " 請進行操作前使用 synaptic 或 apt-get安裝上述其中一個套件" + +#~ msgid "Your system has already been upgraded." +#~ msgstr "系統升級已經完成。" + +#~ msgid "_Custom" +#~ msgstr "自訂(_C)" + +#~ msgid "_Download updates in the background, but do not install them" +#~ msgstr "在背景下載更新套件,但無須安裝(_D)" \ No newline at end of file -- cgit v1.2.3 From ff9de68c6430ff296e0781a8cee1122e89785db5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 9 Oct 2006 12:09:34 +0200 Subject: * UpdateManager/UpdateManager.py: - do not create a new "MyCache()" on each initCache() but use cache.open() instead. This fixes a memory leak (lp: 43096) --- UpdateManager/UpdateManager.py | 6 +- debian/changelog | 6 + po/am.po | 125 +++++++--- po/ar.po | 132 ++++++++--- po/be.po | 133 ++++++++--- po/bg.po | 238 ++++++++++++------- po/bn.po | 201 ++++++++++------ po/br.po | 123 ++++++++-- po/ca.po | 228 +++++++++++------- po/cs.po | 188 ++++++++++----- po/da.po | 163 +++++++++---- po/de.po | 285 ++++++++++++++--------- po/el.po | 190 ++++++++++----- po/en_AU.po | 245 ++++++++++++-------- po/en_CA.po | 205 +++++++++++------ po/en_GB.po | 191 +++++++++++----- po/eo.po | 125 +++++++--- po/es.po | 263 +++++++++++++-------- po/et.po | 129 ++++++++--- po/eu.po | 128 ++++++++--- po/fa.po | 129 ++++++++--- po/fi.po | 264 +++++++++++++-------- po/fr.po | 246 +++++++++++++------- po/fur.po | 123 ++++++++-- po/gl.po | 287 ++++++++++++++--------- po/he.po | 200 ++++++++++------ po/hi.po | 123 ++++++++-- po/hr.po | 187 ++++++++++----- po/hu.po | 179 ++++++++++----- po/id.po | 189 ++++++++++----- po/it.po | 294 +++++++++++++++--------- po/ja.po | 469 +++++++++++++++++++++++++------------- po/ka.po | 144 +++++++++--- po/ko.po | 308 +++++++++++++++++-------- po/ku.po | 152 ++++++++---- po/lt.po | 207 +++++++++++------ po/lv.po | 125 +++++++--- po/mk.po | 193 +++++++++++----- po/ms.po | 140 +++++++++--- po/nb.po | 252 ++++++++++++-------- po/ne.po | 245 ++++++++++++-------- po/nl.po | 205 +++++++++++------ po/nn.po | 129 ++++++++--- po/no.po | 2 +- po/oc.po | 136 ++++++++--- po/pa.po | 127 ++++++++--- po/pl.po | 361 +++++++++++++++++------------ po/pt.po | 192 +++++++++++----- po/pt_BR.po | 325 +++++++++++++++----------- po/qu.po | 125 +++++++--- po/ro.po | 184 ++++++++++----- po/ru.po | 161 +++++++++---- po/rw.po | 170 ++++++++++---- po/sk.po | 280 ++++++++++++++--------- po/sl.po | 133 ++++++++--- po/sq.po | 125 +++++++--- po/sr.po | 133 ++++++++--- po/sv.po | 507 +++++++++++++++++++++++------------------ po/ta.po | 125 +++++++--- po/th.po | 282 +++++++++++++---------- po/tr.po | 153 +++++++++---- po/uk.po | 195 ++++++++++------ po/update-manager.pot | 2 +- po/ur.po | 123 ++++++++-- po/urd.po | 2 +- po/vi.po | 179 ++++++++++----- po/xh.po | 127 ++++++++--- po/zh_CN.po | 209 ++++++++++++----- po/zh_HK.po | 193 +++++++++++----- po/zh_TW.po | 254 +++++++++++++-------- 70 files changed, 8824 insertions(+), 4075 deletions(-) diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index e659843a..af1a1b8e 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -891,7 +891,11 @@ class UpdateManager(SimpleGladeApp): self.progressbar_cache, self.label_cache, self.window_main) - self.cache = MyCache(progress) + if hasattr(self, "cache"): + self.cache.open(progress) + self.cache._initDepCache() + else: + self.cache = MyCache(progress) except AssertionError: # we assert a clean cache msg=("%s\n\n%s"% \ diff --git a/debian/changelog b/debian/changelog index 1beb54ae..721ed39b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +update-manager (0.44.17) edgy; urgency=low + + * memory leak fixed (lp: #43096) + + -- + update-manager (0.44.16) edgy; urgency=low * fix proxy usage when runing in non-root mode (lp: #40626) diff --git a/po/am.po b/po/am.po index 9f034eba..7bb6aaf2 100644 --- a/po/am.po +++ b/po/am.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-06-11 10:15+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" @@ -55,6 +55,7 @@ msgstr "ከአንድ ወር በሓላ" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgstr "ቁለፉን የማጥፋት ሰህተት" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "የመረጡትን ቁለፍ ማጥፋት አይቻልም፣ እባክዎን ይህንን ሰህተት ያመለከቱ" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,6 +164,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -255,6 +260,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -311,6 +317,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -373,6 +380,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -383,6 +391,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -433,6 +442,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -498,13 +510,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -544,8 +557,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -591,6 +605,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -610,6 +625,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -715,6 +731,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -804,14 +821,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -824,106 +844,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1245,184 +1273,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/ar.po b/po/ar.po index a932a7d5..c38adbbd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-08-05 12:39+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" @@ -55,6 +55,7 @@ msgstr "بعد شهر" msgid "After %s days" msgstr "بعد %s يوم" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,10 +124,8 @@ msgstr "خطاء في ازالة المفتاح" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -164,6 +165,7 @@ msgstr "لا يمكن تحديث الرزم العليا المطلوبة" msgid "A essential package would have to be removed" msgstr "سيكون من الضروري إزالة رزم مهمة" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -177,6 +179,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -202,6 +205,7 @@ msgid "" msgstr "" "لم يكن بالإمكان تثبيت إحدى الرزم المطلوبة. الرجاء التبليغ عن هذا كخطأ برمجي. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -262,6 +266,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -321,6 +326,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" @@ -390,6 +396,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -400,6 +407,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -451,8 +459,9 @@ msgstr "جاري عملية البحث عن البرامج الملغية" msgid "System upgrade is complete." msgstr "إنتهت عملية تحديث النظام." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 -#, fuzzy +#, fuzzy, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "الرجاء ادراج '%s' في السوّاقة '%s'" @@ -478,6 +487,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "جاري تطبيق التغييرات" @@ -493,6 +503,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -517,13 +528,14 @@ msgstr "وقع خطأ شديد" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -566,8 +578,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "إن نظامك الآن محدث" @@ -579,7 +592,7 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:535 -#, fuzzy +#, fuzzy, python-format msgid "Remove %s" msgstr "إزالة %s " @@ -614,6 +627,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -635,6 +649,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -743,6 +758,7 @@ msgstr "لم يمكن تنزيل ملاحظات الإصدار" msgid "Please check your internet connection." msgstr "الرجاء التأكد من إتصالك بالإنترنت" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "لم يكن ممكنا تشغيل أداة التحديث" @@ -834,14 +850,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -854,33 +873,35 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "الإصدار %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 -#, fuzzy +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, fuzzy, python-format msgid "Download size: %s" msgstr "حجم التنزيل: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -888,73 +909,79 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "الرجاء الإنتظار, قد يستغرق هذا وقتا" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "لقد انتهت عملية التحديث" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "فهرس البرامج تالف" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1284,187 +1311,232 @@ msgstr "مساحة النافذة" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "مدعوم بشكل رسمي" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "حقوق نقل محدودة" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/be.po b/po/be.po index ba7dd450..d53002d6 100644 --- a/po/be.po +++ b/po/be.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-07-06 06:10+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Пасьля аднаго месяца" msgid "After %s days" msgstr "Пасьля %s дзён" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Памылка выдаленьня ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбраны ключ ня можа быць выдалены. Калі ласка, дашліце баг-рэпорт аб гэтым." @@ -163,6 +165,7 @@ msgstr "Немагчыма абнавіць неабходныя мэтапак msgid "A essential package would have to be removed" msgstr "Трэба было-б выдаліць абавязковы пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Немагчыма падлічыць абнаўленьне" @@ -175,6 +178,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" @@ -202,6 +206,7 @@ msgstr "" "Немагчыма ўсталяваць патрэбны пакет. Калі ласка, паведаміце аб гэтай " "памылцы. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Немагчыма вызначыць мэта-пакет" @@ -261,6 +266,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Стварыць прадвызначаны сьпіс крыніц?" @@ -273,8 +279,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для " -"\"%s\".\n" +"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для \"%s" +"\".\n" "\n" "Ці мусяць быць дададзены прадвызначаныя запісы для \"%s\"? Калі вы вылучыце " "\"Не\", абнаўленьне будзе скасавана." @@ -329,6 +335,7 @@ msgstr "" "на %s. Спусташыце Сьметніцу й выдаліце часовыя пакеты былых усталёвак з " "дапамогай загаду \"sudo apt-get clean\"." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Ці жадаеце пачаць абнаўленьне?" @@ -395,6 +402,7 @@ msgstr "" "Узьніклі нейкія памылкі ў час ачысткі. Калі ласка, паглядзіце зьмешчанае " "ніжэй паведамленьне. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -405,6 +413,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -455,6 +464,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -482,6 +492,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Зьдзяйсьненьне зьменаў" @@ -497,6 +508,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -520,13 +532,14 @@ msgstr "Узьнікла невыправімая памылка" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -569,8 +582,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -616,6 +630,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -637,6 +652,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -746,6 +762,7 @@ msgstr "Немагчыма зпампаваць нататкі рэдакцыі" msgid "Please check your internet connection." msgstr "Калі ласка, праверце вашае далучэньне да інтэрнэту." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Немагчыма запусьціць сродак абнаўленьня" @@ -837,14 +854,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -857,33 +877,35 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Вэрсія %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -891,73 +913,79 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Абнаўленьне завершана" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Ваш дыстрыбутыў больш не падтрымліваецца" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Пашкоджаны індэкс праграм" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1279,184 +1307,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/bg.po b/po/bg.po index 2cc30edc..d630f54b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -55,6 +55,7 @@ msgstr "След един месец" msgid "After %s days" msgstr "След %s дни" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,14 +126,13 @@ msgid "Error removing the key" msgstr "Грешка при премахване на ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ключът, който избрахте не може да бъде премахнат. Докладвайте това като " "грешка." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -169,6 +171,7 @@ msgstr "Не може да бъдат надградени изисквани м msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" @@ -184,6 +187,7 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" @@ -211,6 +215,7 @@ msgstr "" "Не можеше да бъде инсталиран нужен пакет. Моля, докладвайте това като " "грешка! " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" @@ -283,6 +288,7 @@ msgstr "" "изберете \"Да\", всички записи \"%s \" ще бъдат актуализирани на \"%s\".\n" "Ако изберете \"Не\", актуализирането ще бъде отменено." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" @@ -295,8 +301,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за " -"\"%s\".\n" +"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за \"%s" +"\".\n" "\n" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." @@ -352,6 +358,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" @@ -421,6 +428,7 @@ msgstr "" "Имаше проблем при почистването. Моля, вижте съобщението по-долу за повече " "информация! " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Рестартиране на системата" @@ -431,6 +439,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -461,7 +470,7 @@ msgid "Invalid package information" msgstr "Невалидна информация за пакет" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -489,6 +498,7 @@ msgstr "Търсене на остарял софтуер" msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -500,7 +510,7 @@ msgid "Fetching is complete" msgstr "Актуализацията е завършена" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Сваляне на файл %li от %li при %s/сек" @@ -511,12 +521,13 @@ msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Изтегляне на файл %li от общо %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Прилагане на промените" @@ -532,8 +543,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -558,41 +570,42 @@ msgstr "Възникна фатална грешка" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-" -"upgrade.log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. " -"Надграждането сега ще бъде прекратено.\n" -"Оригиналният \"sources.list\" was saved inбе съхранен в " -"\"/etc/apt/sources.list.distUpgrade\"." +"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-upgrade." +"log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. Надграждането " +"сега ще бъде прекратено.\n" +"Оригиналният \"sources.list\" was saved inбе съхранен в \"/etc/apt/sources." +"list.distUpgrade\"." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -617,8 +630,9 @@ msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" @@ -664,6 +678,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -683,6 +698,7 @@ msgstr "Надграждането е завършено и има нужда о #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -796,6 +812,7 @@ msgstr "Не можеше да бъдат свалени бележките къ msgid "Please check your internet connection." msgstr "Моля, проверете Интернет връзката си!" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не може да бъде стартирана помощната програма за надграждане." @@ -872,12 +889,12 @@ msgstr "" "мрежата или сървъра. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Сваляне на файл %li от %li при %s/сек" @@ -902,15 +919,18 @@ msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -926,75 +946,78 @@ msgstr "Ubuntu 5.10 Състарени версии" msgid "Distribution updates" msgstr "_Поднови надграждането" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Версия %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Сваляне на списъка с промени..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Проверка" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Размер за изтегляне: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Можете да инсталирате %s актуализация" msgstr[1] "Можете да инсталирате %s актуализации" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Моля, изчакайте! Това може да отнеме известно време." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Актуализацията е завършена" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "_Инсталиране на актуализациите" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Нова версия: %s (Размер: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Версия %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуция вече не се поддържа" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1004,16 +1027,17 @@ msgstr "" "Надградете до по-късна версия на Ubuntu Linux. Вижте http://www.ubuntu.com " "за повече информация за надграждането!" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1023,19 +1047,23 @@ msgstr "" "ползвайте диспечера на пакети \"Synaptic\" или първо задействайте \"sudo apt-" "get install -f\" в терминален прозорец, за да поправите този проблем!" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1311,8 +1339,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Добавете пълния APT ред за канала, който искате да " -"добавите\n" +"Добавете пълния APT ред за канала, който искате да добавите\n" "\n" "APT редът съдържа вида, местонахождението и компонентите за даден канал. " "Например „deb http://ftp.debian.org sarge main“." @@ -1408,206 +1436,250 @@ msgstr "Размерът на прозореца" msgid "Configure the sources for installable software and updates" msgstr "Настройка на софтуерните канали и актуализациите по Интернет" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 актуализации" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Поддържани от обществото (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Допринесен софтуер" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Поддържани от обществото (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Несвободни (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Несвободни (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 актуализации" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официално поддържани" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 актуализации" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободни (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официално поддържан" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограничени авторски права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 обновления по сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 обновления" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" актуализации на сигурността" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестване)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабилен)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-съвместим софтуер с несвободни зависимости" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" @@ -1616,7 +1688,6 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Ограничен за изнасяне от САЩ софтуер" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Сваляне на файл %li от %li при неизвестна скорост" @@ -1637,7 +1708,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Надграждане до Ubuntu 6.06 LTS" +#~ "Надграждане до Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1667,13 +1739,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Някои актуализации изискват премахването на допълнителен софтуер. " #~ "Използвайте функцията „Маркиране на всички актуализации” на Диспечера на " -#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в терминален " -#~ "прозорец, за да актуализирате напълно системата си." +#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в " +#~ "терминален прозорец, за да актуализирате напълно системата си." #~ msgid "The following updates will be skipped:" #~ msgstr "Следните актуализации ще бъдат пропуснати:" @@ -1694,7 +1766,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Покажи детайлите" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "Позволено е да оперира само един диспечер на софтуера в даден момент" +#~ msgstr "" +#~ "Позволено е да оперира само един диспечер на софтуера в даден момент" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1802,16 +1875,16 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "" #~ "Ключове за идентификация\n" #~ "\n" -#~ "Може да добавяте и премахвате ключове за идентификация през този прозорец. " -#~ "Ключът прави възможна проверката на цялостта на софтуера, който сваляте от " -#~ "интернет." +#~ "Може да добавяте и премахвате ключове за идентификация през този " +#~ "прозорец. Ключът прави възможна проверката на цялостта на софтуера, който " +#~ "сваляте от интернет." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, че " -#~ "сте получили ключа по сигурен канал и че можете да се доверите на " +#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, " +#~ "че сте получили ключа по сигурен канал и че можете да се доверите на " #~ "собственика. " #~ msgid "Add repository..." @@ -1839,8 +1912,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Максимален размер в Мб:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Възвръщане на стандартните ключове идващи с дистрибуцията. Това няма да " #~ "промени потребителските инсталирани ключове." @@ -1872,13 +1945,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Налични обновления\n" #~ "\n" -#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като натиснете " -#~ "бутона „Инсталиране“." +#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като " +#~ "натиснете бутона „Инсталиране“." #~ msgid "Cancel downloading the changelog" #~ msgstr "Отказ на свалянето на дневника на промените" @@ -1954,7 +2027,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr[1] "Избрахте всички %s пакета за обновяване, с общ размер %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избрахте %s от %s пакет за обновяване, с размер %s" #~ msgstr[1] "Избрахте %s от %s пакета за обновяване, с общ размер %s" @@ -1962,11 +2036,11 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Обновленията се прилагат." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Може да стартирате само една програма за управление на пакетите. Затворете " -#~ "другата програма първо." +#~ "Може да стартирате само една програма за управление на пакетите. " +#~ "Затворете другата програма първо." #~ msgid "Updating package list..." #~ msgstr "Обновяване на списъка с пакетите..." @@ -1979,25 +2053,25 @@ msgstr "Софтуер несъвместим с DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще бъдат " -#~ "спрени поправките по сигурността и други критични обновления. Вижте " +#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще " +#~ "бъдат спрени поправките по сигурността и други критични обновления. Вижте " #~ "http://www.ubuntulinux.org за повече информация." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Има нова версия на Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Излезнала е нова версия с кодовото име „%s“. Вижте " -#~ "http://www.ubuntulinux.org за информация по обновяването." +#~ "Излезнала е нова версия с кодовото име „%s“. Вижте http://www.ubuntulinux." +#~ "org за информация по обновяването." #~ msgid "Never show this message again" #~ msgstr "Без да се показва това съобщение отново" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Няма открити промени. Сървърът може би не е обновен." \ No newline at end of file +#~ msgstr "Няма открити промени. Сървърът може би не е обновен." diff --git a/po/bn.po b/po/bn.po index d9b5c84e..e2eec2cf 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -55,6 +55,7 @@ msgstr "এক মাস পর" msgid "After %s days" msgstr "%s দিন পর" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,12 +124,11 @@ msgid "Error removing the key" msgstr "কী সরাতে সমস্যা হয়েছে" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -162,6 +164,7 @@ msgstr "দরকারী meta-packages আপগ্রেড করতে প msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -195,9 +199,10 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ " -"হিসাবে রিপোর্ট করুন। " +"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ হিসাবে " +"রিপোর্ট করুন। " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" @@ -258,6 +263,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" @@ -270,11 +276,11 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে " -"পাওয়া যায় নি।\n" +"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে পাওয়া যায় " +"নি।\n" "\n" -"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট " -"বাতিল হবে।" +"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " +"হবে।" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -285,8 +291,8 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে " -"বাগ হিসাবে রিপোর্ট করুন।" +"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " +"হিসাবে রিপোর্ট করুন।" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -308,8 +314,8 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ " -"করে আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" +"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " +"আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -323,6 +329,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" @@ -349,8 +356,8 @@ msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া " -"পরীক্ষা করুন এবং আবার চেষ্টা করুন। " +"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " +"করুন এবং আবার চেষ্টা করুন। " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -387,6 +394,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" @@ -397,6 +405,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -448,6 +457,7 @@ msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,23 +469,24 @@ msgid "Fetching is complete" msgstr "আপডেট সম্পন্ন" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "%li of %li ফাইল ডাউনলোড করছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "%li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "%li of %li ফাইল ডাউনলোড করছে" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "পরিবর্তনগুলো প্রয়োগ করছি" @@ -491,8 +502,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -516,36 +528,37 @@ msgstr "একটি মারাত্মক সমস্যা সংঘটি #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -560,15 +573,15 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" +msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" @@ -594,12 +607,12 @@ msgid "Upgrade %s" msgstr "%s আপগ্রেড" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "%li দিন %li ঘন্টা %li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "%li ঘন্টা %li মিিনিট বাকি আছে" @@ -614,6 +627,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,12 +642,12 @@ msgstr "রিবুট করা প্রয়োজন" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" +msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -742,6 +756,7 @@ msgstr "রিলিজ নোট ডাউনলোড করা যায় ন msgid "Please check your internet connection." msgstr "অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "আপগ্রেড টুলটি চালানো যায় নি" @@ -783,9 +798,7 @@ msgstr "এক্সট্রাক্ট করতে ব্যর্থ" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে " -"পারে। " +msgstr "আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -797,8 +810,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে " -"সমস্যা থাকতে পারে। " +"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা " +"থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -838,18 +851,20 @@ msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ " -"পরীক্ষা করুন।" +"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -865,110 +880,118 @@ msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" msgid "Distribution updates" msgstr "পুনরায় আপগ্রেড শুরু (_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "ভার্সন %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "পরিবর্তনের তালিকা ডাউনলোড করা হচ্ছ..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "পরীক্ষা করো (_C)" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "ডাউনলোড এর আকার: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "আপনি %s আপডেট ইনস্টল করতে পারেন" msgstr[1] "আপনি %s আপডেট ইনস্টল করতে পারেন" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "অনুগ্রহ করে অপেক্ষা করুন, এটি কিছুটা সময় নিতে পারে।" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "আপডেট সম্পন্ন" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "আপডেট ইন্সটল করো (_I)" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "নতুন ভার্সন: %s (আকার: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "ভার্সন %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "আপনার ডিস্ট্রিবিউশনটি আর সমর্থিত নয়" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1306,201 +1329,245 @@ msgstr "উইনডোর আকার" msgid "Configure the sources for installable software and updates" msgstr "সফ্টওয়্যার চ্যানেল এবং ইন্টারনেট আপডেট কনফিগার" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "উবুন্টু ৫.১০ আপডেট" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "ডেবিয়ান ৩.১ \"সার্জ\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "ডেবিয়ান ৩.১ \"Sarge\" নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "ডেবিয়ান \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "ডেবিয়ান \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1546,7 +1613,6 @@ msgstr "" #~ msgid "The following updates will be skipped:" #~ msgstr "নিম্নের আপডেটগুলো বাদ দেয়া হবে:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "%li সেকেন্ড বাকি আছে" @@ -1554,8 +1620,7 @@ msgstr "" #~ msgstr "ডাউনলোড সম্পন্ন" #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "" -#~ "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" +#~ msgstr "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" #~ msgid "Upgrading Ubuntu" #~ msgstr "উবুন্টু আপগ্রেড করছি" @@ -1572,8 +1637,8 @@ msgstr "" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে " -#~ "বন্ধ করুন।" +#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে বন্ধ " +#~ "করুন।" #~ msgid "Channels" #~ msgstr "চ্যানেল" @@ -1620,4 +1685,4 @@ msgstr "" #~ msgstr "উবুন্টু ৬.০৬ আপডেট" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" \ No newline at end of file +#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" diff --git a/po/br.po b/po/br.po index 2bb246dc..cda3200d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "War-lerc'h %s devezh" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Fazi en ur zilemel an alc'hwezh" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "N'eus ket tu da zilemel an alc'whezh ho peus dibabet. Kelaouit eo ur bug " "marplij." @@ -162,6 +164,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -255,6 +260,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -311,6 +317,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -373,6 +380,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -383,6 +391,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -433,6 +442,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -498,13 +510,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -544,8 +557,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -591,6 +605,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -610,6 +625,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -715,6 +731,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -804,14 +821,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -824,106 +844,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1246,187 +1274,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/ca.po b/po/ca.po index d79e8ab3..0ce2d339 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -54,6 +54,7 @@ msgstr "Després d'un mes" msgid "After %s days" msgstr "Després de %s dies" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,14 +127,13 @@ msgid "Error removing the key" msgstr "S'ha produït un error en esborrar la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La clau que heu seleccionat no es pot esborrar. Notifiqueu-ho com a error de " "programació." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -170,6 +172,7 @@ msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" @@ -185,6 +188,7 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" @@ -212,6 +216,7 @@ msgstr "" "No s'ha pogut instal·lar un dels paquets sol·licitats. Envieu un informe amb " "els error. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -278,6 +283,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Voleu generar les fonts per defecte?" @@ -341,11 +347,12 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a " -"%s. \n" +"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a %s." +"\r\n" "Buideu la vostra paperera i esborreu els paquets temporals utilitzant 'sudo " "apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" @@ -418,6 +425,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" @@ -428,6 +436,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -482,6 +491,7 @@ msgstr "S'està cercant programari obsolet" msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -493,23 +503,24 @@ msgid "Fetching is complete" msgstr "S'ha completat l'actualització" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "S'està descarregant el fitxer %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Queden uns %li minuts" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "S'està descarregant el fitxer %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "S'estan aplicant els canvis" @@ -525,8 +536,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -550,36 +562,37 @@ msgstr "S'ha produït un error greu" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -604,8 +617,9 @@ msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" @@ -631,12 +645,12 @@ msgid "Upgrade %s" msgstr "Actualitza %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Queden uns %li dies %li hores %li minuts" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Queden unes %li hores %li minuts" @@ -651,6 +665,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -672,6 +687,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -691,8 +707,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicieu el sistema per a completar l'actualització" +msgstr "Reinicieu el sistema per a completar l'actualització" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -785,6 +800,7 @@ msgstr "No s'han pogut descarregar les notes de la versió" msgid "Please check your internet connection." msgstr "Comproveu la vostra connexió a Internet" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No es pot executar l'eina d'actualització" @@ -850,12 +866,12 @@ msgid "" msgstr "" #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" @@ -880,15 +896,18 @@ msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Debian Stable Security Updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -904,75 +923,78 @@ msgstr "Actualitzacions d'Ubuntu 6.06 LTS" msgid "Distribution updates" msgstr "_Reprén l'actualització" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "_Instal·la les actualitzacions" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versió %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "S'està descarregant la llista de canvis..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Comprova" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Mida de la descàrrega: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podeu instal·lar %s actualització" msgstr[1] "Podeu instal·lar %s actualitzacions" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Espereu, això pot tardar una estona." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "S'ha completat l'actualització" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "S'estan comprovant les actualitzacions..." -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versió nova: %s (Mida: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Versió %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "La vostra distribució ja no es mantindrà més" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -982,16 +1004,17 @@ msgstr "" "sistema a la darrera versió d'Ubuntu. Vegeu http://www.ubuntu.com per a més " "informació." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1001,19 +1024,23 @@ msgstr "" "utilitzeu el gestor de paquets \"Synaptic\" o executeu \"sudo apt-get " "install -f\" en un terminal." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1377,207 +1404,251 @@ msgstr "La mida de la finestra" msgid "Configure the sources for installable software and updates" msgstr "Configura els canals de programari i les actualitzacions d'Internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualitzacions d'Ubuntu 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Programari de la comunitat" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Paquets sense llicència lliure (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualitzacions d'Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Paquets mantinguts oficialment (Main)" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualitzacions d'Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Algun programari ja no es mantindrà oficialment" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Paquets amb restriccions per copyright (Restricted)" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualitzacions d'Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualitzacions de seguretat de Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programari compatible DFSG amb dependències no lliures" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" @@ -1586,9 +1657,9 @@ msgstr "Programari no compatible DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Programari amb restriccions d'exportació als EUA" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" +#~ msgstr "" +#~ "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" #, fuzzy #~ msgid "Normal updates" @@ -1641,8 +1712,8 @@ msgstr "Programari no compatible DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algunes actualitzacions requereixen la desinstal·lació de programari " #~ "adicional. Per actualitzar completament el vostre sistema utilitzeu la " @@ -1652,7 +1723,6 @@ msgstr "Programari no compatible DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Les següents actualitzacions s'ometran:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Queden uns %li segons" @@ -1763,8 +1833,9 @@ msgstr "Programari no compatible DFSG" #~ msgstr "" #~ "Claus d'autenticació\n" #~ "\n" -#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus d'autenticació. " -#~ "Les claus permeten comprovar la integritat del programari que descarregueu." +#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus " +#~ "d'autenticació. Les claus permeten comprovar la integritat del programari " +#~ "que descarregueu." #~ msgid "" #~ "Enter the complete APT line of the repository that you want to " @@ -1777,15 +1848,15 @@ msgstr "Programari no compatible DFSG" #~ "Introduïu la línia APT del dipòsit que voleu afegir\n" #~ "\n" #~ "La línia APT conté el tipus, la ubicació i el contingut del dipòsit; per " -#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar una " -#~ "descripció més detallada de la sintaxi en la documentació." +#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar " +#~ "una descripció més detallada de la sintaxi en la documentació." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner." +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner." #~ msgstr "" -#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut la " -#~ "clau per un canal segur i que confieu en el propietari." +#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut " +#~ "la clau per un canal segur i que confieu en el propietari." #~ msgid "Add repository..." #~ msgstr "Afegeix un dipòsit..." @@ -1818,11 +1889,11 @@ msgstr "Programari no compatible DFSG" #~ msgstr "Restaura les claus per defecte" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restaura les claus per defecte de la distribució. Això no afecta les claus " -#~ "instal·lades per l'usuari." +#~ "Restaura les claus per defecte de la distribució. Això no afecta les " +#~ "claus instal·lades per l'usuari." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Fixa la mida _màxima de memòria cau per als paquets descarregats" @@ -1854,8 +1925,8 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualitzacions disponibles\n" #~ "\n" @@ -1867,8 +1938,8 @@ msgstr "Programari no compatible DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "S'estan descarregant els " -#~ "canvis\n" +#~ "S'estan descarregant els canvis\n" #~ "\n" #~ "Es necessita obtenir els canvis des del servidor central" @@ -1957,7 +2028,8 @@ msgstr "Programari no compatible DFSG" #~ "Heu seleccionat els %s paquets actualitzats, la mida total és de %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Heu seleccionat %s paquet actualitzat de %s, la mida és de $s" #~ msgstr[1] "" #~ "Heu seleccionat %s paquets actualitzats de %s, la mida total és de %s" @@ -1972,8 +2044,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "S'està executant un altre gestor de paquets" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Només podeu executar un gestor de paquets a la vegada. Tanqueu l'altra " #~ "aplicació." @@ -1995,24 +2067,24 @@ msgstr "Programari no compatible DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Actualitzeu el sistema amb una versió més nova d'Ubuntu Linux. La vostra " #~ "versió ja no disposarà de més actualitzacions de seguretat ni d'altres " -#~ "actualitzacions crítiques. Si voleu més informació, visiteu " -#~ "http://www.ubuntulinux.org/." +#~ "actualitzacions crítiques. Si voleu més informació, visiteu http://www." +#~ "ubuntulinux.org/." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ja disposeu del nou llançament d'Ubuntu" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Ja disposeu del nou llançament d'Ubuntu amb el nom en clau '%s'. Si " -#~ "necessiteu instruccions per a actualitzar el sistema, visiteu " -#~ "http://www.ubuntulinux.org/." +#~ "necessiteu instruccions per a actualitzar el sistema, visiteu http://www." +#~ "ubuntulinux.org/." #~ msgid "Never show this message again" #~ msgstr "No tornis a mostrar aquest missatge" @@ -2020,4 +2092,4 @@ msgstr "Programari no compatible DFSG" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" #~ "No s'han trobat els canvis. Pot ser que el servidor encara no s'hagi " -#~ "actualitzat." \ No newline at end of file +#~ "actualitzat." diff --git a/po/cs.po b/po/cs.po index a794a893..43bb25e7 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Po měsíci" msgid "After %s days" msgstr "Po %s dnech" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s aktualizace" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hlavní server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,12 +125,11 @@ msgid "Error removing the key" msgstr "Chyba při odstraňování klíče" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Nemohu aktualizovat požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Základní balík by musel být odstraněn" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" @@ -184,6 +187,7 @@ msgstr "" "Prosím oznamte tuto chybu jako problém balíčku 'update-manager' a přiložte " "soubory v adresáři /var/log/dist-upgrade/ k vašemu chybovému hlášení." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba při ověření některých balíků" @@ -210,6 +214,7 @@ msgid "" msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" @@ -292,6 +297,7 @@ msgstr "" "všechny položky '%s' aktualizovány na '%s'.\n" "Zvolíte-li 'Ne', aktualizace bude zrušena." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vytvořit standardní zdroje?" @@ -363,6 +369,7 @@ msgstr "" "Vyprázdněte váš koš a odstraňte dočasné balíčky z dřívějších instalací " "pomocí 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" @@ -441,6 +448,7 @@ msgstr "" "Během čištění nastal nějaký problém. Pro více informací si prosím " "prohléhněte níže uvedenou zprávu. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" @@ -451,6 +459,7 @@ msgid "Fetching backport of '%s'" msgstr "Stahuji backport '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -491,8 +500,8 @@ msgstr "" "Poté co byly aktualizovány informaco o balíčcích, nebyl nalezen nezbytný " "balík '%s'.\n" "Toto ukazuje na závažný problém, prosím nahlašte toto jako chybu balíku " -"'update-manager' a přiložte k hlášení o chybě soubory v adresáři " -"/var/log/dist-upgrade/." +"'update-manager' a přiložte k hlášení o chybě soubory v adresáři /var/log/" +"dist-upgrade/." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -510,6 +519,7 @@ msgstr "Vyhledáván zastaralý software" msgid "System upgrade is complete." msgstr "Upgrade systému je dokončen." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -521,23 +531,24 @@ msgid "Fetching is complete" msgstr "Aktualizace je dokončena" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Zhruba %li minut zbývá" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Stahuji soubor %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Provádím změny" @@ -553,11 +564,12 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Aktualizace se přerušila. Nahlašte prosím tuto chybu jako chybu balíku " -"'update-manager' a přiložte k chybovému hlášení soubory z adresáře " -"/var/log/dist-upgrade/." +"'update-manager' a přiložte k chybovému hlášení soubory z adresáře /var/log/" +"dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -582,19 +594,20 @@ msgstr "Nastala fatální chyba" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosím oznamte toto jako chybu a do zprávy připojte soubory /var/log/dist-" "upgrade.log a /var/log/dist-upgrade-apt.log. Přechod na novou verzi bbude " -"nyní předčasně ukončen. Váš původní sources.list byl uložen do " -"/etc/apt/sources.list.distUpgrade." +"nyní předčasně ukončen. Váš původní sources.list byl uložen do /etc/apt/" +"sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s balík bude odstraněn." @@ -602,7 +615,7 @@ msgstr[1] "%s balíky budou odstraněny." msgstr[2] "%s balíků bude odstraněno." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s nový balík bude nainstalován." @@ -610,7 +623,7 @@ msgstr[1] "%s nové balíky budou nainstalovány." msgstr[2] "%s nových balíků bude nainstalováno." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s balík bude nahrazen vyšší verzí." @@ -618,7 +631,7 @@ msgstr[1] "%s balíky budou nahrazeny vyšší verzí." msgstr[2] "%s balíky bude nahrazeno vyšší verzí." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -639,8 +652,9 @@ msgstr "Upgrade může trvat několik hodin a nesmí být později přerušen." msgid "To prevent data loss close all open applications and documents." msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" @@ -668,12 +682,12 @@ msgid "Upgrade %s" msgstr "Aktualizovat %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Zhruba %li hodin %li minut zbývá" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Zbývá zhruba %li hodin %li minut" @@ -688,6 +702,7 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -709,6 +724,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -821,6 +837,7 @@ msgstr "Nelze stáhnout poznámky k vydání." msgid "Please check your internet connection." msgstr "Prosím zkontrolujte své internetové připojení." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nemohu spustit aktualizační nástroj" @@ -896,12 +913,12 @@ msgstr "" "Autentizace aktualizace selhala. Může být problém se sítí nebo serverem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Stahuji %li. soubor z %li rychlostí %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Stahuji %li. soubor z %li rychlostí %s/s" @@ -924,14 +941,17 @@ msgid "" msgstr "" "Selhalo stažení seznamu změn. Prosím zkontrolujte své internetové připojení." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Důležité bezpečnostní aktualizace" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Doporučené aktualizace" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -947,35 +967,37 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Pokračovat v upgradu" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Ostatní aktualizace" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Verze %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Stahuji seznam změn ..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Zkontrolovat" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Stahovaná velikost: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -983,39 +1005,40 @@ msgstr[0] "Můžete instalovat %s aktualizaci" msgstr[1] "Můžete instalovat %s aktualizace" msgstr[2] "Můžete instalovat %s aktualizací" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Prosím čekejte, může to nějakou dobu trvat." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Aktualizace je dokončena" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Zkontrolovat dostupné aktualizace" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verze: %s (Velikost: %s)" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Verze %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Velikost: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Vaše distribude už není podporovaná" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1025,16 +1048,17 @@ msgstr "" "Přejděte na další verzi Ubuntu Linuxu. Pro více informací o přechodu na " "vyšší verzi se podívejte na http://www.ubuntu.com." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Nové vydání distribuce '%s' je k dispozici" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Seznam softwaru je poškozen" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1044,19 +1068,23 @@ msgstr "" "správce balíčků \"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get " "install -f\" pro opravu tohoto problému." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1331,8 +1359,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadejte úplný řádek pro cestu APT kanálu, který chcete " -"přidat\n" +"Zadejte úplný řádek pro cestu APT kanálu, který chcete přidat\n" "\n" "Řádek pro APT obsahuje typ, umístění a součásti kanálu, např. \"deb " "http://ftp.debian.org sarge main\"." @@ -1422,197 +1450,240 @@ msgstr "Velikost okna" msgid "Configure the sources for installable software and updates" msgstr "Konfigurovat zdroje pro instalovatelný software a aktualizace" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Udržováno komunitou (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Nesvobodný (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom s Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržováno komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Udržováno komunitou (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Udržováno komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nesvobodné ovladače" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Omezený software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom s Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualizace" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom s Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálně podporováno" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Bezpečnostní aktualizace" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Aktualizace" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržováno komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nesvobodný (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom s Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Oficiálně podporované" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Omezeno copyrightem" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Bezpečnostní aktualizace" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Aktualizace" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Bezpoečnostní Aktualizace" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilní software s Non-free závislostmi" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Žádný DFSG kompatibilní Software" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Stahuji %li. soubor z %li neznámou rychlostí" @@ -1651,8 +1722,8 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "" #~ "Prozkoumává se systém\n" #~ "\n" -#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti a " -#~ "poskytují nové funkce." +#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti " +#~ "a poskytují nové funkce." #~ msgid "Oficially supported" #~ msgstr "Oficiálně podporované" @@ -1660,7 +1731,6 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Následující aktualizace budou přeskočeny:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zhruba %li sekund zbývá" @@ -1737,14 +1807,14 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "Ubuntu 6.06 LTS backporty" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka pro " -#~ "upgrade.\n" +#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka " +#~ "pro upgrade.\n" #~ msgid "Sections" #~ msgstr "Sekce" #~ msgid "Sections:" -#~ msgstr "Sekce:" \ No newline at end of file +#~ msgstr "Sekce:" diff --git a/po/da.po b/po/da.po index d74b0d31..ee6d9106 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -34,7 +34,7 @@ msgid "Every two weeks" msgstr "Hver anden uge" #: ../SoftwareProperties/SoftwareProperties.py:144 -#, fuzzy +#, fuzzy, python-format msgid "Every %s days" msgstr "Hver %s. dag" @@ -55,6 +55,7 @@ msgstr "Efter en måned" msgid "After %s days" msgstr "Efter %s dage" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s opdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hovedserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Fejl ved fjernelse af nøgle" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Den valgte nøgle kunne ikke fjernes. Rapportér venligst dette som en fejl." @@ -164,6 +166,7 @@ msgstr "Kan ikke opgradere de krævede metapakker" msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vital pakke" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke beregne opgraderingen" @@ -180,6 +183,7 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" @@ -207,6 +211,7 @@ msgstr "" "Det var umuligt at installere en påkrævet pakke. Rapportér venligst dette " "som en fejl. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gætte metapakke" @@ -289,6 +294,7 @@ msgstr "" "her, vil alle linjer \"%s\" blive erstattet af \"%s\".\n" "Hvis du vælger \"Nej\", vil opdateringen blive annulleret." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generér standardkilder?" @@ -360,6 +366,7 @@ msgstr "" "papirkurv og fjern midlertidige pakker fra tidligere installationer ved at " "køre 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" @@ -437,6 +444,7 @@ msgstr "" "Et problem opstod under oprydningen. Se venligst længere nede for mere " "information. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Genskaber oprindelig systemtilstand" @@ -447,6 +455,7 @@ msgid "Fetching backport of '%s'" msgstr "Henter tilbageportering af \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -506,6 +515,7 @@ msgstr "Søger efter forældet software" msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -527,12 +537,13 @@ msgid "About %s remaining" msgstr "Omkring %s tilbage" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Henter fil %li af %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Anvender ændringer" @@ -547,10 +558,10 @@ 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 bugreport." msgstr "" -"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-" -"manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " -"fejlrapporten." +"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-manager" +"\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i fejlrapporten." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -576,9 +587,9 @@ msgstr "Der opstod en alvorlig fejl" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapportér venligst dette som en fejl og inkludér filerne /var/log/dist-" @@ -587,6 +598,7 @@ msgstr "" "Din oprindelige sources.list blev gemt i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -631,8 +643,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" @@ -680,6 +693,7 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -701,6 +715,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -813,6 +828,7 @@ msgstr "Kunne ikke hente udgivelsesnoterne" msgid "Please check your internet connection." msgstr "Undersøg venligst din internetforbindelse" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke køre opgraderingsværktøjet" @@ -916,14 +932,17 @@ msgstr "" "Fejl ved hentning af ændringslisten. Undersøg venligst din " "internetforbindelse." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Vigtige sikkerhedsopdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Anbefalede opdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Foreslåede opdateringer" @@ -936,113 +955,121 @@ msgstr "Tilbageporteringer" msgid "Distribution updates" msgstr "Distributionsopdateringer" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andre opdateringer" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Henter listen med ændringer..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Fjern alle afkrydsninger" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Afkryds alle" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Overføringsstørrelse: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s opdatering" msgstr[1] "Du kan installere %s opdateringer" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Vent venligst, dette kan tage et stykke tid." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Opdatering er gennemført" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Leder efter opdateringer" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Fra version %(old_version)s til %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Version %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Størrelse: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Din distribution understøttes ikke længere" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" "Du vil ikke modtage yderligere sikkerhedrettelser eller kritiske " -"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se " -"http://www.ubuntu.com (engelsk) for mere information om opgradering." +"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se http://www." +"ubuntu.com (engelsk) for mere information om opgradering." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny distributionsudgivelse \"%s\" er tilgængelig" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Softwareindekset er ødelagt" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" "Det er ikke muligt at installere eller fjerne software. Brug venligst " -"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -" -"f\" i en terminal for at fikse dette problem først." +"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -f" +"\" i en terminal for at fikse dette problem først." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Intet" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1068,8 +1095,8 @@ msgstr "Hold dit system opdateret" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Ikke alle opdateringer kan installeres \n" -" \n" +"Ikke alle opdateringer kan installeres\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1414,191 +1441,234 @@ msgstr "Vinduesstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Konfigurér kilderne for installérbar software og opdateringer" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Vedligeholdt af fællesskabet" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietære drivere til enheder" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ikke-frit software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Vedligeholdt af fællesskabet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Vedligeholdt af fællesskabet (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Fri software vedligeholdt af fællesskabet" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietære drivere" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietære drivere til enheder " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ikke-frit software (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Tilbageporterede opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 tilbageporteringer" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Understøttet officielt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 tilbageporteringer" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedligeholdt af fællesskabet (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ikke-frit (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ikke længere officielt supporteret" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrænset ophavsret" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 tilbageporteringer" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhedsopdateringer" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel software med ikke-frie afhængigheder" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel software" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Henter fil %li af %li med ukendt hastighed" @@ -1621,7 +1691,8 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Opgraderer til Ubuntu 6.06 LTS" +#~ "Opgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1640,17 +1711,17 @@ msgstr "Ikke-DFSG-kompatibel software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg alle " -#~ "opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo " -#~ "apt-get dist-upgrade\" i en terminal for at opdatere dit system fuldstændigt." +#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg " +#~ "alle opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør " +#~ "\"sudo apt-get dist-upgrade\" i en terminal for at opdatere dit system " +#~ "fuldstændigt." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende opdateringer vil blive sprunget over:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Tid tilbage(ca.): %li sekunder" @@ -1727,4 +1798,4 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgstr "Ubuntu 6.06 LTS Opdateringer" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/de.po b/po/de.po index 6a022620..94bfb9aa 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -56,6 +56,7 @@ msgstr "Nach einem Monat" msgid "After %s days" msgstr "Nach %s Tagen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s Aktualisierungen" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Haupt-Server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,14 +127,13 @@ msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Der gewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -170,6 +172,7 @@ msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" @@ -185,6 +188,7 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" @@ -213,6 +217,7 @@ msgstr "" "Ein erforderliches Paket konnte nicht installiert werden. Bitte erstellen " "Sie hierfür einen Fehlerbericht. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" @@ -258,8 +263,7 @@ msgstr "Zwischenspeicher wird ausgelesen" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" -"Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" +msgstr "Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -297,6 +301,7 @@ msgstr "" "wählen, werden alle Einträge von '%s' bis '%s' aktualisiert.\n" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Standardquellen generieren?" @@ -309,8 +314,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für " -"'%s' gefunden.\n" +"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für '%" +"s' gefunden.\n" "\n" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." @@ -370,6 +375,7 @@ msgstr "" "Plattenplatz auf %s frei. Leeren Sie Ihren Mülleimer und entfernen die " "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" @@ -450,6 +456,7 @@ msgstr "" "Ein Problem trat beim Aufräumen auf. Bitte lesen Sie die unten stehende " "Nachricht für nähere Informationen. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" @@ -460,6 +467,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -519,6 +527,7 @@ msgstr "Nach veralteter Software wird gesucht" msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -546,6 +555,7 @@ msgstr "Datei %li von %li wird heruntergeladen" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Änderungen werden angewendet" @@ -564,8 +574,9 @@ msgstr "" "als einen Fehler des Pakets 'update-manager' und fügen Sie die Dateien in " "dem Verzeichnis '/var/log/dist-upgrade/' Ihrer Fehlermeldung hinzu." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -590,9 +601,9 @@ msgstr "Ein fataler Fehler ist aufgetreten" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bitte melden Sie dies als Bug und fügen Sie die Dateien /var/log/dist-" @@ -602,29 +613,30 @@ msgstr "" "gespeichert." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -648,8 +660,9 @@ msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" @@ -695,6 +708,7 @@ msgid "%li seconds" msgstr "%li Sekunden" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -716,6 +730,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -829,6 +844,7 @@ msgstr "Freigabemitteilungen konnten nicht heruntergeladen werden" msgid "Please check your internet connection." msgstr "Bitte überprüfen Sie Ihre Internet-Verbindung." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Konnte die Anwendung zur Aktualisierung nicht starten" @@ -906,12 +922,12 @@ msgstr "" "Möglicherweise gibt es Probleme im Netzwerk oder am Server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" @@ -937,14 +953,17 @@ msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Wichtige Sicherheitsaktualisierungen" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Empfohlene Updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Vorgeschlagene Aktualisierungen" @@ -959,74 +978,77 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Aktualisierung fortsetzen" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andere Aktualisierungen" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Liste mit Änderungen wird heruntergeladen..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Prüfen" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Download-Größe: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sie können %s Aktualisierung installieren" msgstr[1] "Sie können %s Aktualisierungen installieren" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Bitte warten Sie, dieser Vorgang kann etwas Zeit in Anspruch nehmen." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Aktualisierung ist abgeschlossen" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Nach verfügbaren Aktualisierungen suchen" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Neue Version: %s (Größe: %s)" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Version %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Größe: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Ihre Distribution wird nicht länger unterstützt" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1034,20 +1056,20 @@ msgid "" msgstr "" "Sie werden keine weiteren Aktualisierungen zur Behebung von " "Sicherheitslücken oder kritischen Fehlern erhalten. Aktualisieren Sie Ihr " -"System auf eine neuere Version von Ubuntu Linux. Auf " -"http://www.ubuntuusers.de oder http://www.ubuntu.com finden Sie weitere " -"Informationen hierzu." +"System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." +"de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1057,19 +1079,23 @@ msgstr "" "verwenden Sie zuerst die Synaptic Paketverwaltung oder führen Sie »sudo apt-" "get install -f« im Terminal aus, um dieses Problem zu beheben." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Keine" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1086,8 +1112,8 @@ msgstr "" "Sie müssen manuell auf Aktualisierungen prüfen\n" "\n" "Ihr System prüft nicht automatisch auf verfügbare Aktualisierungen. Sie " -"können dieses Verhalten über die Menüpunkte \"System\" -> " -"\"Systemverwaltung\" -> \"Software Eigenschaften\" ändern." +"können dieses Verhalten über die Menüpunkte \"System\" -> \"Systemverwaltung" +"\" -> \"Software Eigenschaften\" ändern." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1447,187 +1473,231 @@ msgstr "" "Software-Kanäle und Einstellungen für die automatische Aktualisierung " "festlegen" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Von der Ubuntu-Gemeinde betreut" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietäre Gerätetreiber" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Eingeschränkte Software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM mit Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Von der Gemeinschaft betreut (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Von der Gemeinschaft betreut (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Von der Ubuntu-Gemeinde betreute Open Source-Software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietäre Treiber" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietäre Gerätetreiber " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Eingeschränkte Software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM mit Ubuntu 6.06 LTS »Dapper Drake«" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Zurückportierte Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM mit Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM mit Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offiziell unterstützt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Von der Gemeinschaft verwaltet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Unfrei (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM mit Ubuntu 4.10 »Warty Warthog«" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Eingeschränktes Copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" @@ -1635,7 +1705,6 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Urheberrechtlich oder gesetzlich eingeschränkte Software" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "" #~ "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" @@ -1659,7 +1728,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Auf Ubuntu 6.10 aktualisieren" +#~ "Auf Ubuntu 6.10 aktualisieren" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Wichtige Sicherheitsaktualisierungen von Ubuntu" @@ -1686,8 +1756,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Einige Aktualisierungen erfordern das Entfernen von anderen Anwendungen. " #~ "Verwenden Sie die Funktion »Aktualisierungen vormerken« in der Synaptic " @@ -1697,7 +1767,6 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Die folgenden Aktualisierungen werden ausgelassen:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefähr %li Sekunden verbleibend" @@ -1706,8 +1775,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür einen " -#~ "Fehlerbericht." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür " +#~ "einen Fehlerbericht." #~ msgid "Upgrading Ubuntu" #~ msgstr "Ubuntu aktualisieren" @@ -1726,7 +1795,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder 'Synaptic'." +#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Kanäle" @@ -1777,12 +1847,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %s " -#~ "an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen Sie " -#~ "temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %" +#~ "s an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen " +#~ "Sie temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." #~ msgid "%s remaining" #~ msgstr "%s verbleiben" @@ -1791,27 +1861,27 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Keinen gültigen Eintrag gefunden" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Beim Lesen Ihrer Kanalliste konnte kein gültiger Eintrag für die " #~ "Aktualisierung gefunden werden.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Die Aktualisierung wird jetzt abgebrochen. Ihr System könnte in einem " #~ "unbenutzbaren Zustand sein. Ein Wiederherstellungsversuch wird nun " #~ "unternommen (dpkg --configure -a)." #~ msgid "" -#~ "Please report this as a bug and include the files '/var/log/dist-" -#~ "upgrade.log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " +#~ "Please report this as a bug and include the files '/var/log/dist-upgrade." +#~ "log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " #~ "aborts now. " #~ msgstr "" -#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien » " -#~ "»/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " +#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien " +#~ "» »/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " #~ "Bericht bei. Die Aktualisierung wird jetzt abgebrochen. " #~ msgid "" @@ -1856,13 +1926,14 @@ msgstr "Nicht DFSG-kompatible Software" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Änderungen werden " -#~ "heruntergeladen\n" +#~ "Änderungen werden heruntergeladen\n" #~ "\n" #~ "Die Änderungen müssen vom zentralen Server abgerufen werden" #~ msgid "Show available updates and choose which to install" -#~ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" +#~ msgstr "" +#~ "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" #, fuzzy #~ msgid "Error fetching the packages" @@ -1889,13 +1960,14 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " -#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " +#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " +#~ "werden." #~ msgid "Repository" #~ msgstr "Repository" @@ -1924,12 +1996,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen Schlüsselbund. " -#~ "Stellen Sie sicher, dass der Schlüssel über eine sichere Verbindung bezogen " -#~ "wurde und dass der Besitzer vertrauenswürdig ist. " +#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen " +#~ "Schlüsselbund. Stellen Sie sicher, dass der Schlüssel über eine sichere " +#~ "Verbindung bezogen wurde und dass der Besitzer vertrauenswürdig ist. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "_Temporäre Paketdateien automatisch löschen" @@ -1951,11 +2023,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution ausgeliefert " -#~ "wurden. Vom Benutzer installierte Schlüssel werden dadurch nicht geändert." +#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution " +#~ "ausgeliefert wurden. Vom Benutzer installierte Schlüssel werden dadurch " +#~ "nicht geändert." #~ msgid "Set _maximum size for the package cache" #~ msgstr "_Begrenzen der Größe des Paketzwischenspeichers" @@ -1980,8 +2053,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ "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." @@ -1989,12 +2062,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete weitere " -#~ "Aktionen, wie das Installieren oder Entfernen von Paketen, notwendig sind. " -#~ "Verwenden Sie bitte die »Intelligente Aktualisierung« von Synaptic oder »apt-" -#~ "get dist-upgrade« zur Behebung des Problems." +#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete " +#~ "weitere Aktionen, wie das Installieren oder Entfernen von Paketen, " +#~ "notwendig sind. Verwenden Sie bitte die »Intelligente Aktualisierung« von " +#~ "Synaptic oder »apt-get dist-upgrade« zur Behebung des Problems." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2005,8 +2079,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Die Aktualisierungen werden ausgeführt." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2019,20 +2093,20 @@ msgstr "Nicht DFSG-kompatible Software" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Verwenden Sie bitte eine aktuellere Version von Ubuntu-Linux. Für die " #~ "momentan laufende Version werden keine Sicherheits- und andere kritische " -#~ "Aktualisierungen mehr bereitgestellt. Informationen zur Systemaktualisierung " -#~ "finden Sie unter http://www.ubuntulinux.org." +#~ "Aktualisierungen mehr bereitgestellt. Informationen zur " +#~ "Systemaktualisierung finden Sie unter http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Eine neue Version von Ubuntu ist verfügbar!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Eine neue Version mit dem Codenamen »%s« ist verfügbar. Informationen zur " #~ "Aktualisierung des Systems erhalten Sie unter http://www.ubuntulinux.org." @@ -2042,8 +2116,8 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2052,7 +2126,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Initialisierung und Abrufen der Aktualisierungsliste..." #~ msgid "You need to be root to run this program" -#~ msgstr "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." +#~ msgstr "" +#~ "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." #~ msgid "Edit software sources and settings" #~ msgstr "Bearbeiten der Software-Quellen und Einstellungen" @@ -2075,15 +2150,17 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " +#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " -#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." \ No newline at end of file +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " +#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " +#~ "werden." diff --git a/po/el.po b/po/el.po index e5980add..152bc4a7 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -54,6 +54,7 @@ msgstr "Μετά από ένα μήνα" msgid "After %s days" msgstr "Μετά από %s ημέρες" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s ενημερώσεις" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Κύριος εξυπηρετητής" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Σφάλμα απομάκρυνσης κλειδιού" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Το κλειδί που επιλέξατε δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε αυτό " "ως σφάλμα." @@ -167,6 +169,7 @@ msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετ msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" @@ -183,6 +186,7 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά σφάλματος τα αρχεία στο /var/log/dist-upgrade/." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" @@ -210,6 +214,7 @@ msgstr "" "Δεν ήταν δυνατή η αναβάθμιση του απαιτούμενου πακέτου. Παρακαλώ αναφέρετε το " "ως σφάλμα. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" @@ -292,6 +297,7 @@ msgstr "" "εδώ 'Ναι' θα ενημερωθούν όλες οι '%s' καταχωρίσεις σε '%s'.\n" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" @@ -304,8 +310,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το " -"'%s'.\n" +"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το '%" +"s'.\n" "\n" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." @@ -364,6 +370,7 @@ msgstr "" "στο %s. Αδειάστε τα απορρίμματα σας και απομακρύνετε τα προσωρινά πακέτα " "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" @@ -441,6 +448,7 @@ msgstr "" "Δημιουργήθηκαν ορισμένα προβλήματα κατά την εκκαθάριση. Παρακαλώ δείτε το " "παρακάτω μήνυμα για περισσότερες πληροφορίες. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" @@ -451,6 +459,7 @@ msgid "Fetching backport of '%s'" msgstr "Λήψη backport του '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -510,6 +519,7 @@ msgstr "Γίνεται αναζήτηση για παρωχημένο λογισ msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -520,7 +530,7 @@ msgid "Fetching is complete" msgstr "Η λήψη ολοκληρώθηκε" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" @@ -531,12 +541,13 @@ msgid "About %s remaining" msgstr "Απομένουν περίπου %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Λήψη αρχείου %li από %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Γίνεται εφαρμογή αλλαγών" @@ -555,6 +566,7 @@ msgstr "" "'update-manager' και συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ " "στην αναφορά σφάλματος." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -580,18 +592,19 @@ msgstr "Προέκυψε μοιραίο σφάλμα" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα και επισυνάψτε τα αρχεία /var/log/dist-" "upgrade/main.log και /var/log/dist-upgrade/apt.log στην αναφορά σας. Η " "αναβάθμιση τώρα θα τερματιστεί. \n" -"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο " -"/etc/apt/sources.list.distUpgrade." +"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -639,8 +652,9 @@ msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" @@ -688,6 +702,7 @@ msgid "%li seconds" msgstr "%li δευτερόλεπτα" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -709,6 +724,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -822,6 +838,7 @@ msgstr "Αδυναμία λήψης των σημειώσεων έκδοσης" msgid "Please check your internet connection." msgstr "Παρακαλώ ελέγξτε τη σύνδεση σας με το διαδίκτυο." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Αδυναμία εκτέλεσης του εργαλείου αναβαθμίσεων" @@ -839,8 +856,7 @@ msgstr "Λήψη του εργαλείου αναβάθμισης" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" -"Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" +msgstr "Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -856,8 +872,7 @@ msgstr "Αποτυχία λήψης" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " +msgstr "Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -927,14 +942,17 @@ msgstr "" "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Σημαντικές ενημερώσεις ασφαλείας" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Συνιστώμενες ενημερώσεις" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Προτεινόμενες ενημερώσεις" @@ -947,72 +965,75 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Αναβαθμίσεις διανομής" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Άλλες ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Έκδοση %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Λήψη της λίστας των αλλαγών..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "Α_ποεπιλογή όλων" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "Έλε_γχος όλων" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Μέγεθος λήψης: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Μπορείτε να εγκαταστήσετε %s ενημέρωση" msgstr[1] "Μπορείτε να εγκαταστήσετε %s ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Παρακαλώ περιμένετε, αυτό μπορεί να διαρκέσει λίγο χρόνο." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Η ενημέρωση ολοκληρώθηκε" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Έλεγχος για ενημερώσεις" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Από έκδοση: %(old_version)s σε %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Έκδοση %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Μέγεθος: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Η διανομή σας δεν υποστηρίζεται πια" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1023,16 +1044,17 @@ msgstr "" "Ubuntu Linux. Δείτε το http://www.ubuntu.com για περισσότερες πληροφορίες " "για την αναβάθμιση." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1042,19 +1064,23 @@ msgstr "" "το διαχειριστή πακέτων \"Synaptic\" η εκτελέστε την εντολή \"sudo apt-get " "install -f\" σε ένα τερματικό για να διορθώσετε το πρόβλημα πρώτα." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Καμία" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1079,8 +1105,7 @@ msgstr "Διατηρήστε το σύστημα σας ενημερωμ #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" +msgstr "Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1422,193 +1447,236 @@ msgstr "Το μέγεθος του παραθύρου" msgid "Configure the sources for installable software and updates" msgstr "Ρύθμιση των πηγών για λογισμικό και ενημερώσεις" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Οδηγοί με κλειστό κώδικα για συσκευές" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Λογισμικό με περιορισμούς" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom με το Ubuntu 6.10 'Edgy Eft" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 TLS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Υποστηριζόμενα από την κοινότητα (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Όχι-ελεύθεροι οδηγοί" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Οδηγοί με κλειστό κώδικα για συσκευές " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom με Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported ενημερώσεις" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom με Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ενημερώσεις Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom με το Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Δεν υποστηρίζονται πια επίσημα" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Περιορισμένα πνευματικά δικαιώματα" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ενημερώσεις ασφαλείας Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ενημερώσεις Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες Εξαρτήσεις" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" @@ -1649,16 +1717,16 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "" #~ "Γίνεται ανάλυση του συστήματος σας\n" #~ "\n" -#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " -#~ "να παρέχουν νέες λειτουργίες." +#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας " +#~ "και να παρέχουν νέες λειτουργίες." #~ msgid "Oficially supported" #~ msgstr "Oficially supported" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Μερικές ενημερώσεις απαιτούν την απομάκρυνση επιπρόσθετου λογισμικού. " #~ "Χρησιμοποιήστε την λειτουργία \"Σημείωση όλων των αναβαθμίσεων\" από το " @@ -1668,7 +1736,6 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Οι παρακάτω ενημερώσεις θα παρακαμφθούν:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Απομένουν περίπου %li δευτερόλεπτα" @@ -1693,7 +1760,8 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το 'Synaptic'." +#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Κανάλια" @@ -1746,13 +1814,14 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Μη έγκυρες πληροφορίες πακέτου" #~ msgid "" -#~ "Failed to download the listof changes. Please check your internet connection." +#~ "Failed to download the listof changes. Please check your internet " +#~ "connection." #~ msgstr "" #~ "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας." #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Κατά τον έλεγχο των πληροφοριών του repository δεν βρέθηκαν έγκυρες " #~ "καταχωρίσεις αναβάθμισης.\n" @@ -1783,24 +1852,25 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Το αρχείο '%s' δεν περιέχει έγκυρα κανάλια λογισμικού." #~ msgid "" -#~ "The upgrade is finished now. A reboot is required to now, do you want to do " -#~ "this now?" +#~ "The upgrade is finished now. A reboot is required to now, do you want to " +#~ "do this now?" #~ msgstr "" #~ "Η αναβάθμιση ολοκληρώθηκε. Απαιτείται επανεκκίνηση, θέλετε να γίνει τώρα;" #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για τις " -#~ "ενημερώσεις\n" +#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για " +#~ "τις ενημερώσεις\n" #~ "\n" -#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για ενημερώσεις. " -#~ "Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> " -#~ "\"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." +#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για " +#~ "ενημερώσεις. Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού " +#~ "\"Σύστημα\" -> \"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." #~ msgid "" #~ "Downloading changes\n" @@ -1822,4 +1892,4 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Ubuntu 6.04 \"Dapper Drake\"" #~ msgid "Ubuntu 5.10 \"Breezy Badger\"" -#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" \ No newline at end of file +#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" diff --git a/po/en_AU.po b/po/en_AU.po index 4813e497..f3bc426b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-09-11 09:53+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" @@ -55,6 +55,7 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -161,6 +163,7 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -200,6 +204,7 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" @@ -275,6 +280,7 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generate default sources?" @@ -342,6 +348,7 @@ msgstr "" "your Garbage Bin and remove temporary packages of former installations using " "'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" @@ -413,6 +420,7 @@ msgstr "" "A problem occured during the clean-up. Please see the below message for more " "information. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restoring original system state" @@ -423,6 +431,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -478,6 +487,7 @@ msgstr "Searching for obsolete software" msgid "System upgrade is complete." msgstr "System upgrade is complete." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -505,6 +515,7 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -522,6 +533,7 @@ msgstr "" "The upgrade has aborted. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -545,17 +557,18 @@ msgstr "A fatal error occured" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 has aborted.\n" +"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 has " +"aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -600,8 +613,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" @@ -647,6 +661,7 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -668,6 +683,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -777,6 +793,7 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your internet connection." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -871,14 +888,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -891,71 +911,74 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Download size: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "You can install %s update" msgstr[1] "You can install %s updates" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Please wait, this can take some time." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Update is complete" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Version %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Size: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Your distribution is not supported anymore" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -965,16 +988,17 @@ msgstr "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -984,19 +1008,23 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1333,190 +1361,233 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM with Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM with Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM with Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM with Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1527,22 +1598,22 @@ msgstr "Non-DFSG-compatible Software" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" -#~ "An unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "An unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." @@ -1556,11 +1627,11 @@ msgstr "Non-DFSG-compatible Software" #~ "synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Some software no longer officially supported" @@ -1581,7 +1652,6 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Restoring originale system state" #~ msgstr "Restoring original system state" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1591,37 +1661,30 @@ msgstr "Non-DFSG-compatible Software" #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "About %li days %li hours %li minutes remaining" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "About %li hours %li minutes remaining" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "About %li minutes remaining" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "About %li seconds remaining" #~ msgid "Download is complete" #~ msgstr "Download is complete" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Downloading file %li of %li at %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Downloading file %li of %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "The upgrade aborts now. Please report this bug." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1631,41 +1694,41 @@ msgstr "Non-DFSG-compatible Software" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s package is going to be removed." #~ msgstr[1] "%s packages are going to be removed." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s new package is going to be installed." #~ msgstr[1] "%s new packages are going to be installed." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s package is going to be upgraded." #~ msgstr[1] "%s packages are going to be upgraded." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "You have to download a total of %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgid "Could not find any upgrades" #~ msgstr "Could not find any upgrades" @@ -1685,17 +1748,15 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Upgrading Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" #~ "Verifying the upgrade failed. There may be a problem with the network or " #~ "with the server. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Downloading file %li of %li with %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloading file %li of %li with unknown speed" @@ -1714,12 +1775,12 @@ msgstr "Non-DFSG-compatible Software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgid "The following updates will be skipped:" #~ msgstr "The following updates will be skipped:" @@ -1733,12 +1794,12 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Show details" #~ msgstr "Show details" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "New version: %s (Size: %s)" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "Only one software management tool is allowed to run at the same time" +#~ msgstr "" +#~ "Only one software management tool is allowed to run at the same time" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1748,14 +1809,16 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "You must check for updates manually\n" #~ "\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behaviour in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behaviour in \"System\" -> \"Administration\" -> \"Software " +#~ "Properties\"." #~ msgid "" #~ "Examining your system\n" @@ -1796,16 +1859,16 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "The channel information is out-of-date\n" #~ "\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "\n" #~ "You need a working internet connection to continue." @@ -1817,14 +1880,14 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Components" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1845,19 +1908,19 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "If automatic checking for updates is disabled, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Stores the state of the expander that contains the list of changes and the " -#~ "description" +#~ "Stores the state of the expander that contains the list of changes and " +#~ "the description" #~ msgid "Configure software channels and internet updates" #~ msgstr "Configure software channels and internet updates" @@ -1875,4 +1938,4 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Ubuntu 6.06 LTS Updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/en_CA.po b/po/en_CA.po index d650cf9c..11810e63 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:42+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -56,13 +56,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "_Install" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -163,6 +165,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,6 +180,7 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,6 +205,7 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -260,6 +265,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -317,6 +323,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -379,6 +386,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -389,6 +397,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -443,6 +452,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -470,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -486,6 +497,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -509,13 +521,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -555,8 +568,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" @@ -603,6 +617,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -622,6 +637,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -732,6 +748,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -830,15 +847,18 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -854,110 +874,118 @@ msgstr "Ubuntu 5.04 Updates" msgid "Distribution updates" msgstr "Upgrade finished" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Cancel downloading the ChangeLog" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:633 +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." msgstr[1] "Installing updates..." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "_Install" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Version %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Your distribution is no longer supported" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1217,8 +1245,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Enter the complete APT line of the repository that you want to " -"add\n" +"Enter the complete APT line of the repository that you want to add\n" "\n" "The APT line contains the type, location and content of a repository, for " "example \"deb http://ftp.debian.org sarge main\". You can find a " @@ -1306,210 +1334,255 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.04 Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Community maintained (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Contributed software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Officially supported" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.04 Updates" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian Stable Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1600,8 +1673,8 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources.list " -#~ "is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources." +#~ "list is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1650,13 +1723,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -1676,16 +1749,16 @@ msgstr "" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1710,11 +1783,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1747,11 +1820,13 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -1760,11 +1835,11 @@ msgstr "" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1774,30 +1849,30 @@ msgstr "" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -1829,10 +1904,10 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." \ No newline at end of file +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." diff --git a/po/en_GB.po b/po/en_GB.po index 9a759e33..e35595ad 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-06 04:33+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" @@ -54,6 +54,7 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -163,6 +165,7 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -179,6 +182,7 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -206,6 +210,7 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -286,6 +291,7 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generate default sources?" @@ -356,6 +362,7 @@ msgstr "" "your Deleted Items folder and remove temporary packages of former " "installations using 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" @@ -432,6 +439,7 @@ msgstr "" "Some problem occurred during the clean-up. Please see the below message for " "more information. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restoring original system state" @@ -442,6 +450,7 @@ msgid "Fetching backport of '%s'" msgstr "Fetching backport of '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -500,6 +509,7 @@ msgstr "Searching for obsolete software" msgid "System upgrade is complete." msgstr "System upgrade is complete." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -527,6 +537,7 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -544,6 +555,7 @@ msgstr "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -571,17 +583,18 @@ msgstr "A fatal error occured" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -626,8 +639,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" @@ -675,6 +689,7 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -697,6 +712,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -806,6 +822,7 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your Internet connection." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -906,14 +923,17 @@ msgstr "" "Failed to download the list of changes. \n" "Please check your Internet connection." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -926,71 +946,74 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Distribution updates" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "Downloading list of changes..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Untick All" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Tick All" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Download size: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "You can install %s update" msgstr[1] "You can install %s updates" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Please wait, this can take some time." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Update is complete" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Checking for updates" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "From version %(old_version)s to %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Version %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Size: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Your distribution is not supported anymore" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1000,16 +1023,17 @@ msgstr "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1019,19 +1043,23 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1392,185 +1420,229 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom with Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonical supported Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restricted by copyright or legal issues" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom with Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "No longer officially supported" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" @@ -1645,8 +1717,8 @@ msgstr "Non-DFSG-compatible Software" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources.list " -#~ "is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources." +#~ "list is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1703,13 +1775,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1741,11 +1813,11 @@ msgstr "Non-DFSG-compatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1775,13 +1847,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancel downloading the changelog" @@ -1857,7 +1929,8 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr[1] "You have selected all %s updated packages, total size %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "You have selected %s out of %s updated package, size %s" #~ msgstr[1] "You have selected %s out of %s updated packages, total size %s" @@ -1865,11 +1938,11 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1882,19 +1955,19 @@ msgstr "Non-DFSG-compatible Software" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" @@ -1924,8 +1997,10 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." \ No newline at end of file +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." diff --git a/po/eo.po b/po/eo.po index 44c48522..5e05fe52 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-07-24 21:11+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" @@ -55,6 +55,7 @@ msgstr "Post unu monato" msgid "After %s days" msgstr "Post %s tagoj" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Eraro dum forigo de sxlosilo" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La sxlosilo elektita ne povis esti forigata. Bonvolu raporti cxi tion kiel " "cimon." @@ -160,6 +162,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -172,6 +175,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgstr "" "Estis neebla instalo de bezonata pakajxo. Bonvolu raporti cxi tion kiel " "cimo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -255,6 +260,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -316,6 +322,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Cxu vi volas komenci la promociadon?" @@ -380,6 +387,7 @@ msgstr "" "Kelkaj problemoj okazis dum la purigado. Bonvolu vidi suban mesagxon por " "pliaj informoj. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -390,6 +398,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -440,6 +449,7 @@ msgstr "Sercxado de ne plu uzata programaro" msgid "System upgrade is complete." msgstr "Sistema promocio estas kompleta." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -467,6 +477,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikado de sxangxoj" @@ -482,6 +493,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -505,13 +517,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -551,8 +564,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Via sistemo estas gxisdatigita" @@ -598,6 +612,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -617,6 +632,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -726,6 +742,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "Bonvolu kontroli vian interretan konekton." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Ne eblis ruli la promocian ilon" @@ -817,14 +834,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -837,106 +857,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versio %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Elsxuta grando: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Via distribuo ne estas plu subtenata" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Nova distribua eldono '%s' estas disponebla" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1262,184 +1290,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiale subtenata" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/es.po b/po/es.po index 8c271f45..84169464 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 21:00+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -57,6 +57,7 @@ msgstr "Después de un mes" msgid "After %s days" msgstr "Después de %s días" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "Actualizaciones de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "No se puede quitar la clave que ha seleccionado. Por favor, avise de esto " "como un fallo." @@ -170,6 +172,7 @@ msgstr "No se han podido actualizar los meta-paquetes requeridos" msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" @@ -184,6 +187,7 @@ msgstr "" "Ha ocurrido un problema imposible de corregir cuando se calculaba la " "actualización. Por favor, informe de ésto como un fallo." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" @@ -211,6 +215,7 @@ msgstr "" "No ha sido posible instalar un paquete requerido. Por favor, informe de ésto " "como un fallo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" @@ -293,6 +298,7 @@ msgstr "" "«Sí», se actualizarán todas las entradas «%s» a «%s».\n" "Si selecciona «No» se cancelará la actualización." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" @@ -333,9 +339,9 @@ msgid "" "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." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -365,6 +371,7 @@ msgstr "" "espacio en disco en %s. Vacíe su papelera, y elimine los paquetes temporales " "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" @@ -443,6 +450,7 @@ msgstr "" "Ha ocurrido algún problema durante el limpiado. por favor, vea el mensaje " "inferior para más información. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" @@ -453,6 +461,7 @@ msgid "Fetching backport of '%s'" msgstr "Descargando «backport» de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -512,6 +521,7 @@ msgstr "Buscando paquetes obsoletos" msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -539,6 +549,7 @@ msgstr "Descargando archivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando los cambios" @@ -557,6 +568,7 @@ msgstr "" "fallo en el paquete «update-manager» e incluya en el informe de error los " "archivos contenidos en /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -584,18 +596,19 @@ msgstr "Ha ocurrido un error fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 " +"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." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -642,8 +655,9 @@ msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" @@ -691,6 +705,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -714,6 +729,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,8 +749,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicie el sistema para completar la actualización" +msgstr "Reinicie el sistema para completar la actualización" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -824,6 +839,7 @@ msgstr "No se han podido descargar las notas de publicación" msgid "Please check your internet connection." msgstr "Por favor, compruebe su conexión a Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No se ha podido ejecutar la herramienta de actualización" @@ -929,14 +945,17 @@ msgstr "" "Hubo un fallo al descargar la lista de cambios. \n" "Por favor, compruebe su conexión a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizaciones importantes de seguridad" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizaciones recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizaciones propuestas" @@ -949,90 +968,94 @@ msgstr "«Backports»" msgid "Distribution updates" msgstr "Actualizaciones de la distribución" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Otras actualizaciones" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versión %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "Descargando la lista de cambios..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Desmarcar todo" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Marcar todo" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Tamaño de descarga: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Puede instalar %s actualización" msgstr[1] "Puede instalar %s actualizaciones" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Por favor, espere; esto puede tardar un poco." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "La actualización se ha completado" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Comprobando actualizaciones" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "De la versión %(old_version)s a la %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versión %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Tamaño: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Su distribución ya no está soportada" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" "No podrá obtener nuevas correcciones de seguridad ni actualizaciones " -"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite " -"http://www.ubuntu.com para más información sobre la actualización." +"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" +"www.ubuntu.com para más información sobre la actualización." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "El índice de software está dañado" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1042,19 +1065,23 @@ msgstr "" "gestor de paquetes «Synaptic», o ejecute «sudo apt-get install -f» en una " "terminal, para corregir este problema primero." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ninguno" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1079,8 +1106,7 @@ msgstr "Mantenga su sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"No se han podido instalar todas las actualizaciones" +msgstr "No se han podido instalar todas las actualizaciones" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1203,8 +1229,8 @@ msgstr "" "enviará de forma anónima al proyecto Ubuntu todas las semanas.\n" "\n" "Los resultados se usarán para mejorar el soporte de las aplicaciones " -"populares y para ordenar las aplicaciones en los resultados de las " -"búsquedas." +"populares y para ordenar las aplicaciones en los resultados de las búsquedas." +"" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1292,8 +1318,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"La información acerca del software disponible está " -"obsoleta\n" +"La información acerca del software disponible está obsoleta\n" "\n" "Para poder instalar software y actualizaciones a partir de los orígenes que " "se hayan añadido o cambiado recientemente, es necesario recargar la " @@ -1422,185 +1448,229 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura los orígenes para el software instalable y las actualizaciones" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenido por la comunidad" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores privativos para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restringido" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software libre soportado por Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenido por la comunidad (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software libre mantenido por la comunidad" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores no libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores privativos para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restringido (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright o cuestiones legales" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Dapper Drake»" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizaciones «backport»" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizaciones de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "«Backports» de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizaciones de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "«Backports» de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenido por la comunidad (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software no libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sin más soporte oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restringido" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Actualizaciones de seguridad" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizaciones de Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "«Backports» de Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizaciones de seguridad de Debian 3.1 «Sarge»" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (pruebas)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (inestable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible con la DFSG con dependencias no libres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" @@ -1608,7 +1678,6 @@ msgstr "Software no compatible con la DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software restringido por copyright o cuestiones legales" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando archivo %li de %li a velocidad desconocida" @@ -1657,18 +1726,17 @@ msgstr "Software no compatible con la DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice la " -#~ "función «Marcar todas las actualizaciones» del gestor de paquetes " +#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice " +#~ "la función «Marcar todas las actualizaciones» del gestor de paquetes " #~ "«Synaptic», o ejecute «sudo apt-get dist-upgrade» en una terminal, para " #~ "actualizar completamente su sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "Se pasarán por alto las siguientes actualizaciones:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" @@ -1691,13 +1759,14 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Sólo se permite la ejecución simultánea de una única herramienta de gestión " -#~ "de software" +#~ "Sólo se permite la ejecución simultánea de una única herramienta de " +#~ "gestión de software" #~ 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 "Channels" #~ msgstr "Canales" @@ -1747,8 +1816,8 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "«Backports» de Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Cuando se exploraba la información de su repositorio, se encontró una " #~ "entrada no válida para la actualización.\n" @@ -1777,7 +1846,8 @@ msgstr "Software no compatible con la DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Descargando informe de cambios\n" +#~ "Descargando informe de cambios\n" #~ "\n" #~ "Se necesita descargar los cambios del servidor central" @@ -1809,13 +1879,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " -#~ "Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes " +#~ "actualizables. Puede actualizarlos usando el botón Instalar." #~ msgid "Repository" #~ msgstr "Repositorio" @@ -1835,19 +1905,20 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "" #~ "Claves de autenticación\n" #~ "\n" -#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una clave " -#~ "hace posible verificar la integridad del software que descarga." +#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una " +#~ "clave hace posible verificar la integridad del software que descarga." #~ msgid "A_uthentication" #~ msgstr "A_utenticación" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Añadir un nuevo archivo de clave al anillo de confianza. Asegúrese de que " -#~ "obtuvo la clave a través de un canal seguro y que confía en el propietario. " +#~ "obtuvo la clave a través de un canal seguro y que confía en el " +#~ "propietario. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Limpiar _temporalmente los archivos de paquetes" @@ -1869,8 +1940,8 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Recupera las claves entregadas originalmente con la distribución. Esto no " #~ "cambia las claves instaladas por el usuario." @@ -1898,8 +1969,8 @@ msgstr "Software no compatible con la DFSG" #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" #~ "Ésto significa que no se satisfacen algunas dependencias de los paquetes " -#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-get " -#~ "dist-upgrade\" para arreglar la situación." +#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-" +#~ "get dist-upgrade\" para arreglar la situación." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "No es posible actualizar todos los paquetes." @@ -1907,12 +1978,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Ésto significa que además de la actualización de los paquetes será necesaria " -#~ "alguna acción adicional (como instalar o quitar paquetes). Utilice la " -#~ "\"Actualización inteligente\" de synaptic o \"apt-get dist-upgrade\" para " -#~ "arreglar la situación." +#~ "Ésto significa que además de la actualización de los paquetes será " +#~ "necesaria alguna acción adicional (como instalar o quitar paquetes). " +#~ "Utilice la \"Actualización inteligente\" de synaptic o \"apt-get dist-" +#~ "upgrade\" para arreglar la situación." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -1923,11 +1995,11 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "Se están aplicando las actualizaciones." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " -#~ "Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " +#~ "tiempo. Cierre la otra aplicación primero." #~ msgid "Updating package list..." #~ msgstr "Actualizando lista de paquetes..." @@ -1937,35 +2009,34 @@ msgstr "Software no compatible con la DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está usando " -#~ "no obtendrá más actualizaciones de seguridad ni otras actualizaciones " -#~ "críticas. Visite http://www.ubuntulinux.org para información acerca de cómo " -#~ "actualizar." +#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está " +#~ "usando no obtendrá más actualizaciones de seguridad ni otras " +#~ "actualizaciones críticas. Visite http://www.ubuntulinux.org para " +#~ "información acerca de cómo actualizar." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Hay una nueva versión de Ubuntu disponible" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Está disponible una nueva versión con el nombre '%s'. Visite " -#~ "http://www.ubuntulinux.org/ para recibir instrucciones acerca de cómo " -#~ "actualizar." +#~ "Está disponible una nueva versión con el nombre '%s'. Visite http://www." +#~ "ubuntulinux.org/ para recibir instrucciones acerca de cómo actualizar." #~ msgid "Never show this message again" #~ msgstr "No mostrar más este mensaje" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " -#~ "Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " +#~ "tiempo. Cierre la otra aplicación primero." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicializando y obteniendo lista de actualizaciones..." @@ -2000,10 +2071,10 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " -#~ "Puede actualizarlos usando el botón Instalar." \ No newline at end of file +#~ "El gestor de actualizaciones encontró los siguientes paquetes " +#~ "actualizables. Puede actualizarlos usando el botón Instalar." diff --git a/po/et.po b/po/et.po index bf5fdba9..42f76dd0 100644 --- a/po/et.po +++ b/po/et.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-06-10 17:42+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" @@ -55,6 +55,7 @@ msgstr "Peale ühte kuud" msgid "After %s days" msgstr "Peale %s päeva" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Võtme eemaldamisel tekkis viga" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Valitud võtit pole võimalik eemaldada" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -150,8 +152,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sinu süsteem sisaldab katkiseid pakette mida pole võimalik antud tarkvaraga " -"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-" -"get\" enne jätkamist." +"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" +"\" enne jätkamist." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -161,6 +163,7 @@ msgstr "Ei suuda uuendada nõutud metapakette" msgid "A essential package would have to be removed" msgstr "Hädavajalik pakett tuleks eemaldada" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ei suuda uuendusi ette valmistada" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Mõnede pakettide tuvastamisel tekkis viga." @@ -198,6 +202,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,6 +262,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -315,6 +321,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -377,6 +384,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -387,6 +395,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -437,6 +446,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -464,6 +474,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -479,6 +490,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -502,13 +514,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -548,8 +561,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -595,6 +609,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -614,6 +629,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -719,6 +735,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -808,14 +825,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -828,106 +848,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1249,184 +1277,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/eu.po b/po/eu.po index 7bb543cc..3b20b887 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-08-08 23:53+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" @@ -57,6 +57,7 @@ msgstr "HIlabete bat eta gero" msgid "After %s days" msgstr "%s egun eta gero" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -117,8 +120,7 @@ msgstr "Errore bat suertatu da aukeratutako fitxategiak inportatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." +msgstr "Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." #: ../SoftwareProperties/SoftwareProperties.py:992 #, fuzzy @@ -127,8 +129,7 @@ msgstr "Errorea giltza ezabatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Aukeratutako giltza ezin izan da ezabatu. Mesedez adierazi akatsa." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -173,6 +174,7 @@ msgstr "Ezin izan dira berritu beharrezko meta-paketeak" msgid "A essential package would have to be removed" msgstr "Ezinbesteko pakete bat ezabatu beharko da" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -185,6 +187,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -209,6 +212,7 @@ msgstr "" "Ezin izan da beharrezko pakete bat instalatzea. Mesedez akats honen berri " "eman. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -268,6 +272,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -324,6 +329,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -386,6 +392,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -396,6 +403,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -446,6 +454,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -473,6 +482,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -488,6 +498,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -511,13 +522,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -557,8 +569,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -604,6 +617,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -623,6 +637,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -728,6 +743,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -817,14 +833,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -837,106 +856,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1258,184 +1285,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/fa.po b/po/fa.po index cb169548..89d56969 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-06-08 13:47+0000\n" -"Last-Translator: Pedram Ganjeh Hadidi \n" +"Last-Translator: Pedram Ganjeh Hadidi \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,6 +56,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -252,6 +257,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -308,6 +314,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -370,6 +377,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -380,6 +388,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -430,6 +439,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -538,8 +551,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -585,6 +599,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -604,6 +619,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -709,6 +725,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -798,14 +815,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -818,105 +838,113 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1238,184 +1266,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/fi.po b/po/fi.po index ca9e5134..a4844337 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-06 07:42+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -54,6 +54,7 @@ msgstr "Kuukauden jälkeen" msgid "After %s days" msgstr "%s päivän jälkeen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s päivitystä" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pääpalvelin" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." @@ -166,6 +168,7 @@ msgstr "Tarvittavia metapaketteja ei voi päivittää" msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" @@ -183,6 +186,7 @@ msgstr "" "Ilmoita tästä ohjelmavirheestä paketille \"update-manager\" ja sisällytä " "tiedostot hakemistosta /var/log/dist-upgrade raporttiin." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Joitain paketteja varmennettaessa tapahtui virhe" @@ -209,6 +213,7 @@ msgid "" msgstr "" "Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" @@ -289,6 +294,7 @@ msgstr "" "\"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Lisätäänkö oletusohjelmalähteet?" @@ -359,6 +365,7 @@ msgstr "" "roskakori ja poista väliaikaistiedostot aiemmista asennuksista käyttämällä " "komentoa 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaa päivityksen?" @@ -435,6 +442,7 @@ msgid "" msgstr "" "Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" @@ -445,6 +453,7 @@ msgid "Fetching backport of '%s'" msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -503,6 +512,7 @@ msgstr "Etsitään vanhentuneita ohjelmistoja" msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -530,6 +540,7 @@ msgstr "Noudetaan tiedostoa %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Muutoksia toteutetaan" @@ -547,6 +558,7 @@ msgstr "" "Päivitys keskeytyy. Tee tästä virheraportti paketille \"update-manager\" ja " "sisällytä raporttiin tiedostot hakemistosta /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -574,17 +586,18 @@ msgstr "Tapahtui vakava virhe" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot /var/log/dist-" "upgrade/main.log ja /var/log/dist-upgrade/apt.log. Päivitys keskeytyy nyt.\n" -"Alkuperäinen sources.list tallennettiin nimellä " -"/etc/apt/sources.list.distUpgrade." +"Alkuperäinen sources.list tallennettiin nimellä /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -630,8 +643,9 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" @@ -677,13 +691,13 @@ msgid "%li seconds" msgstr "%li sekuntia" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" -msgstr "" -"Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" +msgstr "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -698,6 +712,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,8 +733,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen " -"loppuun" +"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -809,6 +824,7 @@ msgstr "Ei voitu noutaa julkaisutietoja" msgid "Please check your internet connection." msgstr "Tarkista Internet-yhteytesi toimivuus." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Päivitystyökalua ei voitu suorittaa" @@ -911,14 +927,17 @@ msgstr "" "Muutosluettelon nouto epäonnistui. \n" "Tarkista Internet-yhteytesi toimivuus." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Tärkeät turvallisuuspäivitykset" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Suositellut päivitykset" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Ehdotetut päivitykset" @@ -931,71 +950,74 @@ msgstr "Takaisinsovitukset" msgid "Distribution updates" msgstr "Jakelupäivitykset" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Muut päivitykset" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versio %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "Noudetaan muutosluetteloa..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "Poista _valinnat" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Tarkista kaikki" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "%s täytyy noutaa" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Voit asentaa %s päivityksen" msgstr[1] "Voit asentaa %s päivitystä" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Odota, tämä voi kestää jonkun aikaa." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Päivitys on valmis" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Tarkistetaan päivityksiä" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versiosta %(old_version)s versioon %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versio %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Koko: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Jakeluasi ei enää tueta" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1005,16 +1027,17 @@ msgstr "" "Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja " "päivittämisestä osoitteesta http://www.ubuntu.com/" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1024,19 +1047,23 @@ msgstr "" "Synaptic-pakettienhallintaa tai komentoa \"sudo apt-get install -f\" " "päätteessä." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ei mitään" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1061,8 +1088,8 @@ msgstr "Pidä järjestelmäsi ajan tasalla" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Kaikkia päivityksiä ei voi asentaa \n" -" \n" +"Kaikkia päivityksiä ei voi asentaa\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1310,8 +1337,8 @@ msgid "" msgstr "" "Kirjoita haluamasi ohjelmalähteen koko APT-rivi\n" "\n" -"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " -"\"deb http://ftp.debian.org sarge main\"." +"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1398,186 +1425,230 @@ msgstr "Ikkunan koko" msgid "Configure the sources for installable software and updates" msgstr "Muokkaa asennettavien ohjelmien ja päivitysten lähteitä" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yhteisön ylläpitämät" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Suljetut laiteajurit" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Rajoitetut ohjelmistot" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmat" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Yhteisön ylläpitämät avoimen lähdekoodin ohjelmistot" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ei-vapaat ajurit" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Suljetut laiteajurit " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Rajoitetut ohjelmat (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Tekijänoikeus- tai lakiasioilla rajoitetut ohjelmistot" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Takaisinsovitetut päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Virallisesti tuettu" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 takaisinsovitukset" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\" -CD-levy" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ei enää virallisesti tuettu" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Rajoitettu tekijänoikeus" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 takaisinsovitukset" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" turvallisuuspäivitykset" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testattava)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (epävakaa)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "DFSG-yhteensopivat ohjelmat joilla riippuvuuksia epävapaisiin ohjelmiin" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" @@ -1585,7 +1656,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Tekijänoikeus- tai lakiasioilla käyttörajoitetut ohjelmistot" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" @@ -1607,8 +1677,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Päivitetään jakeluun Ubuntu " -#~ "6.10" +#~ "Päivitetään jakeluun Ubuntu 6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Ubuntun tärkeät turvallisuuspäivitykset" @@ -1627,16 +1697,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Tarkistetaan järjestelmää\n" #~ "\n" -#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " -#~ "ominaisuuksia." +#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat " +#~ "uusia ominaisuuksia." #~ msgid "Oficially supported" #~ msgstr "Virallisesti tuettu" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Jotkut päivitykset vaativat muiden ohjelmien poistoa. Käytä \"Merkitse " #~ "kaikki päivitykset\"-toimintoa Synaptic-pakettienhallintaojhelmassa, tai " @@ -1645,7 +1715,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "The following updates will be skipped:" #~ msgstr "Seuraavat päivitykset ohitetaan:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Noin %li sekuntia jäljellä" @@ -1725,8 +1794,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ubuntu 6.06 LTS takaisinsovitukset" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Luettaessa varastotietoja ei löydetty kelvollisia ohjelmavarastoja " #~ "päivittämistä varten.\n" @@ -1768,11 +1837,12 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia." #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Sinun pitää ladata päivitystiedot uudelleen käsin\n" #~ "\n" @@ -1821,19 +1891,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Kirjoita haluamasi varaston koko APT-rivi\n" #~ "\n" -#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " -#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " +#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " +#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " #~ "dokumentaatiosta." #~ msgid "A_uthentication" #~ msgstr "Varmenn_us" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " -#~ "avaimen luotettavaa kanavaa pitkin, ja että luotat sen omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " +#~ "vastaanotit avaimen luotettavaa kanavaa pitkin, ja että luotat sen " +#~ "omistajaan. " #~ msgid "Automatically check for software _updates." #~ msgstr "Tarkista ohjelma_päivitykset automaattisesti." @@ -1857,8 +1928,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Maksimikoko megatavuissa:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Palauta jakelun mukana toimitetut oletusavaimet. Tämä ei muuta tai poista " #~ "itse asennettuja avaimia." @@ -1887,8 +1958,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -1901,17 +1972,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. If " -#~ "you are behind an internet connection that needs to be started by hand (e.g. " -#~ "a modem) you should use this button so that update-manager knows about new " -#~ "updates." +#~ "If you have a permanent internet connection this is done automatically. " +#~ "If you are behind an internet connection that needs to be started by hand " +#~ "(e.g. a modem) you should use this button so that update-manager knows " +#~ "about new updates." #~ msgstr "" #~ "Lataa pakettitiedot palvelimelta uudelleen. \n" #~ "\n" #~ "Jos sinulla on kiinteä Internet-yhteys, tämä tehdään automaattisesti. Jos " #~ "olet käsin muodostettavan Internet-yhteyden (esim. modeemi) takana, sinun " -#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon uusista " -#~ "päivityksistä." +#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon " +#~ "uusista päivityksistä." #~ msgid "Binary" #~ msgstr "Binääri" @@ -1937,8 +2008,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. Käytä " -#~ "\"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." +#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. " +#~ "Käytä \"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Kaikkia paketteja ei voida päivittää." @@ -1946,12 +2017,13 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita toimenpiteitä " -#~ "(kuten pakettien asentamista tai poistamista). Käytä Synaptic-ohjelman " -#~ "\"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade\"-komentoa " -#~ "korjataksesi ongelman." +#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita " +#~ "toimenpiteitä (kuten pakettien asentamista tai poistamista). Käytä " +#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade" +#~ "\"-komentoa korjataksesi ongelman." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Muutoksia ei löytynyt, palvelinta ei ole ehkä vielä päivitetty." @@ -1960,8 +2032,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Päivityksiä asennetaan." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Voit hallita paketteja vain yhdellä ohjelmalla kerrallaan. Sulje toinen " #~ "ohjelma ensin." @@ -1974,19 +2046,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei enää " -#~ "ole tulossa turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " -#~ "Tietoja päivittämisestä löydät sivulta http://www.ubuntulinux.org." +#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei " +#~ "enää ole tulossa turvallisuuspäivityksiä tai muita kriittisiä " +#~ "päivityksiä. Tietoja päivittämisestä löydät sivulta http://www." +#~ "ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntusta on uusi julkaisu saatavilla!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Uusi julkaisu nimeltään '%s' on saatavilla. Päivitysohjeet löydät " #~ "osoitteesta http://www.ubuntulinux.org/." @@ -1998,11 +2071,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ei saatu haluttua lukitusta" #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get " -#~ "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." +#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-" +#~ "get tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Alustetaan ja ladataan luetteloa päivityksistä..." @@ -2028,15 +2101,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " -#~ "avaimen luotettua kanavaa pitkin ja että luotat avaimen omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " +#~ "vastaanotit avaimen luotettua kanavaa pitkin ja että luotat avaimen " +#~ "omistajaan. " #~ msgid "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia käyttäjän " -#~ "asentamiin avaimiin." +#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia " +#~ "käyttäjän asentamiin avaimiin." #~ msgid "Ubuntu Update Manager" #~ msgstr "Ubuntun päivitysten hallinta" @@ -2044,8 +2118,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -2053,4 +2127,4 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Asenna-painiketta." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/fr.po b/po/fr.po index 45fa5a82..8603e1f8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-06 17:26+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" @@ -55,6 +55,7 @@ msgstr "Après un mois" msgid "After %s days" msgstr "Après %s jours" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "Mises à jour %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serveur principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +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." @@ -168,6 +170,7 @@ 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é" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" @@ -184,6 +187,7 @@ msgstr "" "Merci de rapporter ce bogue du paquet « update-manager » et d'inclure les " "fichiers de /var/log/dist-upgrade/ dans le rapport de bogue." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" @@ -211,6 +215,7 @@ msgstr "" "Il a été impossible d'installer un paquet pourtant requis. Merci de " "rapporter ce bogue. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" @@ -294,6 +299,7 @@ msgstr "" "cela mettra à jour toutes les entrées « %s » vers « %s ».\n" "Sinon, la mise à jour sera annulée." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" @@ -362,10 +368,11 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"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 »." +"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 »." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" @@ -444,6 +451,7 @@ msgstr "" "Un problème est survenu lors du nettoyage. Veuillez vous reporter au message " "ci-dessous pour plus d'informations. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" @@ -454,6 +462,7 @@ msgid "Fetching backport of '%s'" msgstr "Recherche du backport (rétro-portage) de « %s »" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -512,6 +521,7 @@ msgstr "Recherche de logiciels obsolètes" msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -539,6 +549,7 @@ msgstr "Téléchargement du fichier %li sur %li en cours" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Application des changements" @@ -554,9 +565,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "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." +"un bogue du paquet « update-manager » et joindre les fichiers du répertoire /" +"var/log/dist-upgrade/ dans le rapport de bogue." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -584,18 +596,19 @@ msgstr "Une erreur fatale est survenue" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez signaler ce bogue et joindre les fichiers /var/log/dist-upgrade.log " "et /var/log/dist-upgrade/apt.log à votre rapport. La mise à jour est " "annulée.\n" -"Votre fichier sources.list d'origine a été enregistré dans " -"/etc/apt/sources.list.distUpgrade." +"Votre fichier sources.list d'origine a été enregistré dans /etc/apt/sources." +"list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -642,8 +655,9 @@ msgstr "" "Pour éviter toute perte de données accidentelle, veuillez fermer toutes les " "applications et documents ouverts." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Votre système est à jour" @@ -691,6 +705,7 @@ msgid "%li seconds" msgstr "%li secondes" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -714,6 +729,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -824,6 +840,7 @@ msgstr "Impossible de télécharger les informations de version" msgid "Please check your internet connection." msgstr "Veuillez vérifier votre connexion Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible de lancer l'outil de mise à jour" @@ -927,14 +944,17 @@ msgstr "" "Échec lors du téléchargement de la liste des modifications. \n" "Veuillez vérifier votre connexion Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Mises à jour de sécurité" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Mises à jour recommandées" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Mises à jour suggérées" @@ -947,71 +967,74 @@ msgstr "« Backports »" msgid "Distribution updates" msgstr "Mises à jour de la distribution" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Autres mises à jour" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Version %s : \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "Téléchargement de la liste des modifications…" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Tout décocher" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "Tout _vérifier" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Taille du téléchargement : %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format 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" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Veuillez patienter, cela peut prendre du temps." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "La mise à jour est terminée" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Recherche des mises à jour disponibles en cours" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "De la version %(old_version)s vers la version %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Version %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Taille : %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Votre distribution n'est plus supportée" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1021,16 +1044,17 @@ msgstr "" "devez passer à une version plus récente d'Ubuntu Linux. Rendez-vous sur " "http://www.ubuntu.com pour de plus amples informations à ce sujet." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1040,19 +1064,23 @@ msgstr "" "utiliser d'abord le « Gestionnaire de paquets Synaptic » ou lancez « sudo " "apt-get install -f » dans un terminal pour réparer ce problème." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Aucun(e)" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Ko" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Ko" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1065,8 +1093,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Vous devez vérifier manuellement la disponibilité de mises à " -"jour\n" +"Vous devez vérifier manuellement la disponibilité de mises à jour\n" "\n" "Votre système ne vérifie pas les mises à jour automatiquement. Vous pouvez " "configurer ce comportement dans Sources logicielles qui se trouve " @@ -1293,8 +1321,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Les informations sur les logiciels disponibles sont " -"obsolètes\n" +"Les informations sur les logiciels disponibles sont obsolètes\n" "\n" "Pour installer de nouveaux logiciels ou des mises à jour à partir des canaux " "logiciels modifiés ou nouvellement ajoutés, vous devez recharger ces " @@ -1424,187 +1452,231 @@ msgstr "" "Configurer les canaux logiciels (sources de mise à jour) et les mises à jour " "via Internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Maintenu par la communauté" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Pilotes propriétaires de périphériques" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Logiciel non libre" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM contenant Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Logiciel libre supporté par Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Maintenu par la communauté (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Logiciel libre maintenu par la communauté" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pilotes non libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Pilotes propriétaires de périphériques " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Logiciel non libre (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Logiciel soumis au droit d'auteur ou à des restrictions légales" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM contenant Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Mises à jour backportées" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM contenant Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM contenant Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supporté officiellement" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Mises à jour pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "« Backports » pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Maintenu par la communauté (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM contenant Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Support officiel terminé" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restreint" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Mises à jour pour Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "« Backports » pour Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mises à jour de sécurité pour Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 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" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" @@ -1612,7 +1684,6 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Logiciel restreint pour des raisons légales ou de copyright" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" @@ -1661,18 +1732,18 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ 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." +#~ "\"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 :" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Environ %li secondes restantes" @@ -1748,11 +1819,11 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgstr "« Backports » pour Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "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" +#~ "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" @@ -1761,8 +1832,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "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 ?" +#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que " +#~ "vos changements soient effectifs. Voulez-vous le faire maintenant ?" #~ msgid "Sections" #~ msgstr "Catégories :" @@ -1779,7 +1850,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Téléchargement des changements\n" +#~ "Téléchargement des changements\n" #~ "\n" #~ "Il est nécessaire de récupérer les changement du serveur central" @@ -1811,13 +1883,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " -#~ "en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " +#~ "jour en utilisant le bouton Installer." #~ msgid "Repository" #~ msgstr "Dépôt" @@ -1838,20 +1910,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "Clés d'authentification\n" #~ "\n" #~ "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." +#~ "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" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "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. " +#~ "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" @@ -1873,8 +1945,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ 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." @@ -1911,23 +1983,25 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." -#~ 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 " +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " #~ "situation." +#~ 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." #~ 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." +#~ "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." +#~ "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." @@ -1940,20 +2014,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Veuillez mettre à jour vers une version plus récente d'Ubuntu Linux. La " -#~ "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." +#~ "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." +#~ "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." @@ -1963,8 +2037,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. " #~ "Veuillez tout d'abord fermer cette autre application." @@ -2001,13 +2075,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " -#~ "en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " +#~ "jour en utilisant le bouton Installer." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/fur.po b/po/fur.po index b9e9da74..fbf9b393 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -55,6 +55,7 @@ msgstr "Dopo un mèis" msgid "After %s days" msgstr "Dopo %s dîs" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -251,6 +256,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -307,6 +313,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -369,6 +376,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -379,6 +387,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -429,6 +438,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -540,8 +553,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -711,6 +727,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -800,14 +817,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -820,106 +840,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1241,184 +1269,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/gl.po b/po/gl.po index 3676102c..6e2f5b3b 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-09-25 21:24+0000\n" "Last-Translator: Xosé \n" "Language-Team: galician\n" @@ -57,6 +57,7 @@ msgstr "Logo dun mes" msgid "After %s days" msgstr "Logo de %s días" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "actualizacións de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Houbo un erro ao borrar a clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Non se pode borrar a clave que seleccionou. Por favor, avise disto como un " "fallo." @@ -170,6 +172,7 @@ msgstr "Non se puideron actualizar os meta-paquetes necesarios" msgid "A essential package would have to be removed" msgstr "Tívose que desinstalar un paquete esencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Non se puido calcular a actualización" @@ -186,6 +189,7 @@ msgstr "" "Informa deste erro do pacote \"update-manager\" e inclúe os ficheiros que " "hai en /var/log/dist-upgrade/ no informe." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando algúns paquetes" @@ -213,6 +217,7 @@ msgstr "" "Non foi posible instalar un paquete necesario. Por favor, informe disto como " "un fallo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Non se puido determinar o meta-paquete" @@ -294,6 +299,7 @@ msgstr "" "selecciona «Si», actualizaranse todas as entradas '%s' a '%s'.\n" "Se selecciona «Non» cancelarase a actualización." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Xerar orixes predeterminadas?" @@ -306,8 +312,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tras examinar o seu «sources.list», non se atoparon entradas válidas para " -"'%s'.\n" +"Tras examinar o seu «sources.list», non se atoparon entradas válidas para '%" +"s'.\n" "\n" "Deben engadirse entradas predeterminadas para '%s'? Se selecciona «Non» " "cancelarse a actualización." @@ -366,6 +372,7 @@ msgstr "" "espazo en disco en %s. Vacíe a súa papelera, e elimine os paquetes temporais " "de instalacións anteriores tecleando «sudo apt-get clean» nun terminal." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Desexa comezar a actualización?" @@ -385,8 +392,8 @@ msgstr "" "Vaise cancelar a actualización agora. O teu sistema podería ficar nun estado " "que non permita ser usado. Procedeuse a recuperalo (dpkg --configure -a).\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ no informe." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -437,6 +444,7 @@ msgstr "" "Ocorreu algún problema durante o limpado. Por favor, vexa a mensaxe inferior " "para máis información. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A retornar ao estado orixinal do sistema" @@ -447,6 +455,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -484,8 +493,8 @@ msgstr "" "esencial, xa non se dá atopado.\n" "Isto indica un erro serio.\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ no informe." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -503,6 +512,7 @@ msgstr "Buscando paquetes obsoletos" msgid "System upgrade is complete." msgstr "Comletouse a actualización do sistema." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -530,6 +540,7 @@ msgstr "A baixar o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando os cambios" @@ -547,6 +558,7 @@ msgstr "" "Vaise cancelar a actualización agora. Informa desde fallo do pacote \"update-" "manager\" e inclúe os ficheiros en /var/log/dist-upgrade/ no informe." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -572,18 +584,19 @@ msgstr "Ocorreu un erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " "Vaise cancelar a actualización agora.\n" -"O teu ficheiro sources.list orixinal gardouse en " -"/etc/apt/sources.list.distUpgrade." +"O teu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -626,11 +639,11 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Para previr a perda de datos peche todas as aplicacións e documentos." +msgstr "Para previr a perda de datos peche todas as aplicacións e documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" @@ -678,6 +691,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -698,6 +712,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -807,6 +822,7 @@ msgstr "Non se puideron descargar as notas da versión" msgid "Please check your internet connection." msgstr "Por favor, comprobe a súa conexión a Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Non se puido executar a ferramenta de actualización" @@ -841,8 +857,7 @@ msgstr "Erro ao descargar" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Fallou a descarga da actualización. Pode haber un problema coa rede. " +msgstr "Fallou a descarga da actualización. Pode haber un problema coa rede. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -906,14 +921,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizacións de seguranza importantes" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizacións recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizacións suxeridas" @@ -926,71 +944,74 @@ msgstr "Backports" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizacións" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versión %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Quitarlle a Selección a Todo" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Seleccionalo Todo" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Tamaño de descarga: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Pode instalar %s actualización" msgstr[1] "Pode instalar %s actualizacións" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Por favor, espere; isto pode tardar un pouco." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Completouse a actualización" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "A examinar as actualizacións" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versión %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Tamaño: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "A súa distribución xa non está soportada" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1000,16 +1021,17 @@ msgstr "" "críticas. Actualícese a unha versión posterior de Ubuntu Linux. Visite " "http://www.ubuntu.com para máis información sobre a actualización." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Está dispoñible a nova versión '%s' da distribución" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "O índice de software está danado" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1019,19 +1041,23 @@ msgstr "" "xestor de paquetes \"Synaptic\", ou execute \"sudo apt-get install -f\" nun " "terminal, para corrixir este problema primeiro." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nengún" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1389,190 +1415,233 @@ msgstr "O tamaño da ventá" msgid "Configure the sources for installable software and updates" msgstr "Configurar as fontes para programas e actualizacións instalábeis" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pola Comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores propietarios de dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Aplicacións restrinxidas" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom con Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pola Comunidade (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Aberto mantido pola Comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores non libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores propietarios para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restrinxido (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom con Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizacións de backports" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizacións para Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom con Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizacións para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pola comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software non libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom con Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Xa non se mantén oficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrinxido" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizacións para Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports para Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizacións de seguridade de Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (probas)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (inestable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible coa DFSG con dependencias non libres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatible coa DFSG" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1583,16 +1652,16 @@ msgstr "Software non compatible coa DFSG" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Ocorreu un problema imposible de resolver cando se calculaba a " #~ "actualización. Por favor, informe disto como un fallo. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" @@ -1612,11 +1681,12 @@ msgstr "Software non compatible coa DFSG" #~ "software», ou con Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "A actualización interromperase agora. O seu sistema pode quedar nun estado " -#~ "inutilizable. Estase levando a cabo unha recuperación (dpkg --configure -a)." +#~ "A actualización interromperase agora. O seu sistema pode quedar nun " +#~ "estado inutilizable. Estase levando a cabo unha recuperación (dpkg --" +#~ "configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Algúns programas xa non están soportados oficialmente" @@ -1637,40 +1707,33 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Restoring originale system state" #~ msgstr "Restaurando o estado orixinal do sistema" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." #~ msgstr "" -#~ "Logo de actualizarse a información dos seus paquetes xa non é posible atopar " -#~ "o paquete esencial '%s».\n" +#~ "Logo de actualizarse a información dos seus paquetes xa non é posible " +#~ "atopar o paquete esencial '%s».\n" #~ "Isto indica un problema serio, por favor, informe disto como un fallo." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Faltan %li dias %li horas %li minutos" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Faltan %li horas %li minutos" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Faltan %li minutos" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" #~ msgid "Download is complete" #~ msgstr "Completouse a descarga" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Descargando ficheiro %li de %li" @@ -1678,7 +1741,6 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "A actualización cancelarase agora. Por favor, informe disto como un fallo." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1687,43 +1749,41 @@ msgstr "Software non compatible coa DFSG" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Por favor, informe disto como un fallo e inclúa os arquivos /var/log/dist-" -#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A actualización " -#~ "cancelarase agora.\n" -#~ "O seu arquivo «sources.list» orixinal gardouse en " -#~ "/etc/apt/sources.list.distUpgrade." +#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A " +#~ "actualización cancelarase agora.\n" +#~ "O seu arquivo «sources.list» orixinal gardouse en /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "Vaise desinstalar %s paquete." #~ msgstr[1] "Vanse desinstalar %s paquetes." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "Vaise instalar %s paquete novo." #~ msgstr[1] "Vanse instalar %s paquetes novos." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "Vaise actualizar %s paquete." #~ msgstr[1] "Vanse actualizar %s paquetes." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Debe descargar un total de %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "A actualización pode levar varias horas e non poderá ser cancelada despois " -#~ "en ningún momento." +#~ "A actualización pode levar varias horas e non poderá ser cancelada " +#~ "despois en ningún momento." #~ msgid "Could not find any upgrades" #~ msgstr "Non se puido atopar ningunha actualización" @@ -1734,7 +1794,8 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Actualizando a Ubuntu 6.06 LTS" +#~ "Actualizando a Ubuntu 6.06 LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Descargando e instalando as actualizacións" @@ -1743,44 +1804,42 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizando Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Fallou a verificación da actualización. Pode haber un problema coa rede ou o " -#~ "servidor. " +#~ "Fallou a verificación da actualización. Pode haber un problema coa rede " +#~ "ou o servidor. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando ficheiro %li de %li a velocidade descoñecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo máis " -#~ "tarde." +#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo " +#~ "máis tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." #~ msgstr "" -#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión a " -#~ "Internet." +#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión " +#~ "a Internet." #~ msgid "Cannot install all available updates" #~ msgstr "Non se puideron instalar todas as actualizacións dispoñibles" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "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:" @@ -1794,7 +1853,6 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Show details" #~ msgstr "Mostrar detalles" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Nova versión: %s (Tamaño: %s)" @@ -1804,19 +1862,21 @@ msgstr "Software non compatible coa DFSG" #~ 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 "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Debe comprobar as actualizacións manualmente\n" #~ "\n" -#~ "O seu sistema non comproba as actualizacións automatimente. Pode configurar " -#~ "este comportamento en \"Sistema\" -> \"Administración\" -> \"Propiedades do " -#~ "software\"." +#~ "O seu sistema non comproba as actualizacións automatimente. Pode " +#~ "configurar este comportamento en \"Sistema\" -> \"Administración\" -> " +#~ "\"Propiedades do software\"." #~ msgid "" #~ "Examining your system\n" @@ -1826,8 +1886,8 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "Analizando o seu sistema\n" #~ "\n" -#~ "As actualizacións de software corrixen erros, eliminan fallos de seguridade " -#~ "e proporcionan novas funcionalidades." +#~ "As actualizacións de software corrixen erros, eliminan fallos de " +#~ "seguridade e proporcionan novas funcionalidades." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _descarga" @@ -1856,15 +1916,16 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "A información das canles está obsoleta\n" #~ "\n" #~ "Debe recargar a información das canles para poder instalar software e " -#~ "actualizacións a partir das canles recientemente engadidas ou cambiadas. \n" +#~ "actualizacións a partir das canles recientemente engadidas ou " +#~ "cambiadas. \n" #~ "\n" #~ "Necesita unha conexión a internet para continuar." @@ -1875,17 +1936,17 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Compoñentes" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Introduza a liña de APT completa da canle que queira " -#~ "engadir\n" +#~ "Introduza a liña de APT completa da canle que queira engadir\n" #~ "\n" -#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, por " -#~ "exemplo \"deb http://ftp.debian.org sarge main\"." +#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, " +#~ "por exemplo \"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Engadir unha canle" @@ -1903,12 +1964,12 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" -#~ "Se se desactiva a comprobación automática de actualizacións, debe recargar a " -#~ "lista de canles manualmente. Esta opción permítelle ocultar a notificación " -#~ "que se mostra neste caso." +#~ "Se se desactiva a comprobación automática de actualizacións, debe " +#~ "recargar a lista de canles manualmente. Esta opción permítelle ocultar a " +#~ "notificación que se mostra neste caso." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1933,4 +1994,4 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizacións de Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "«Backports» de Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "«Backports» de Ubuntu 6.06 LTS" diff --git a/po/he.po b/po/he.po index 50a7c398..3199ed27 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-09-30 14:09+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -58,13 +58,15 @@ msgstr "אחרי חודש" msgid "After %s days" msgstr "אחרי %s ימים" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "מתקין עדכונים..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,6 +76,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "שרת ראשי" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,12 +127,11 @@ msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -167,6 +169,7 @@ msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "לא ניתן לחשב את השדרוג" @@ -182,6 +185,7 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "שגיאה באימות חלק מן החבילות" @@ -204,6 +208,7 @@ msgid "" "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "לא ניתן לקבוע חבילת על" @@ -278,6 +283,7 @@ msgstr "" "\n" "בחירה ב\"לא\" תבטל את העדכון." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "לייצר מקורות ברירת מחדל?" @@ -341,6 +347,7 @@ msgstr "" "השדרגו יתבטל כעת. יש לפנות לפחות %s מהשטח ב-%s. רוקנו את הזבל והסירו חבילות " "זמניות מהתקנות קודמות על ידי שימוש בפקודה \"sudo apt-get clean\"." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" @@ -404,6 +411,7 @@ msgid "" "more information. " msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 #, fuzzy msgid "Restoring original system state" @@ -415,6 +423,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -440,7 +449,7 @@ msgid "Invalid package information" msgstr "מידע חבילה לא תקין" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -467,6 +476,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -478,23 +488,24 @@ msgid "Fetching is complete" msgstr "ההורדה הושלמה" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה." #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "נותרו %li דקות." #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "מוריד קובץ %li מתוך %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -511,6 +522,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -534,29 +546,30 @@ msgstr "ארעה שגיאה חמורה" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "חבילה %s תשודרג." msgstr[1] "%s חבילות ישודרגו." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "חבילה חדשה %s תותקן." msgstr[1] "%s חבילות חדשות יותקנו." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "חבילה %s תשודרג." @@ -585,8 +598,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת" @@ -632,6 +646,7 @@ msgid "%li seconds" msgstr "%liשניות" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -651,6 +666,7 @@ msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם בר #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -760,6 +776,7 @@ msgstr "לא ניתן להוריד הערות שחרור גירסה." msgid "Please check your internet connection." msgstr "אנא בדקו את החיבור לאינטרנט." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "לא ניתן להריץ את כלי השדרוג" @@ -849,14 +866,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "עדכוני אבטחה חשובים" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "עדכונים מומלצים" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "עדכונים מוצעים" @@ -869,71 +889,74 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "עדכונים אחרים" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "גרסה %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "מוריד רשימת שינויים..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "גודל ההורדה: %s" -#: ../UpdateManager/UpdateManager.py:617 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:633 +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "מתקין עדכונים..." msgstr[1] "מתקין עדכונים..." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "אנא חכו, התהליך לארוך זמן מה." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "העדכון הושלם" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "מחפש עדכונים" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "גרסה %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(גודל: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "גרסת ההפצה שלך אינה נתמכת יותר" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -942,16 +965,17 @@ msgstr "" "המערכת שלכם לא תקבל עדכוני אבטחה יותר. אנא שדרגו אותו לגירסה מאוחרת יותר של " "אובונטו לינוקס. ראו http://www.ubuntu.com למידע נוסף על שידרוג המערכת." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "גירסה חדשה של ההפצה, \"%s\", זמינה" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "אינדקס התוכנות פגום" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -960,19 +984,23 @@ msgstr "" "אי אפשר להתקין או להסיר אף תוכנה. יש להשתמש במנהל החבילות \"Synaptic\" או " "להפעיל את הפקודה \"sudo apt-get install -f\" במסוף כדי לתקן בעיה זו." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1230,8 +1258,8 @@ msgid "" msgstr "" "הכנס את שורת APT השלמה של המאגר שברצונך להוסיף\n" "\n" -"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb " -"http://ftp.debian.org sarge main\"\n" +"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb http://ftp.debian." +"org sarge main\"\n" "אפשר למצוא הסבר מפורט על זה בתיעוד." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 @@ -1316,216 +1344,259 @@ msgstr "גודל החלון" msgid "Configure the sources for installable software and updates" msgstr "הגדרת מקורות התוכנות להתקנה והעדכונים" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "עדכונים - אובונטו 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "מתוחזק ע\"י הקהילה" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "דרייברים קניינים להתקנים" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "תוכנה שנתרמה" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "עדכונים - אובונטו 5.04" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "מתוחזק ע\"י הקהילה (Universe(" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "תוכנות קוד פתוח המתוחזקות ע\"י הקהילה" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "לא-חופשי (Multiverse(" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "לא-חופשי (Multiverse(" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "עדכונים - אובונטו 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "נתמך רשמית" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "לא-חופשי (Multiverse(" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "נתמך רשמית" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "זכויות יוצרים מגבילות" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "עדכונים - אובונטו 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "דביאן 3.1 \"סארג'\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "עדכוני אבטחה - דביאן יציב" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "דביאן בדיקה" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "דביאן לא ארה\"ב (לא יציב)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "ההורדה תיקח בערך %s עם מודם 56k ובערך %s עם חיבור DSL במהירות 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." @@ -1555,11 +1626,9 @@ msgstr "" #~ "אם אל אפשרת התקנת תוכנות המתחוזקות ע\"י הקהילה (universe), החבילות האלה " #~ "יסומנו להסרה בצעד הבא." -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" @@ -1572,13 +1641,14 @@ msgstr "" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "יש לחפש עדכונים ידניתg>\n" #~ "\n" -#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת\"-" -#~ "> \"ניהול\" -> \"אפשרויות תוכנה\"." +#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת" +#~ "\"-> \"ניהול\" -> \"אפשרויות תוכנה\"." #~ msgid "Cancel _Download" #~ msgstr "בטל _הורדה" @@ -1604,7 +1674,6 @@ msgstr "" #~ msgid "Oficially supported" #~ msgstr "נתמך רשמית" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "נותרו %li שניות." @@ -1719,8 +1788,8 @@ msgstr "" #~ "תקינות התוכנה שאתה מוריד." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "הוסף קובץ מפתח חדש לרשימת המפתחות שאתה בוטח בהם. אנא וודא שאתה שקיבלת את " #~ "המפתח בדרך מאובטחת ושאתה בוטח בבעלים. " @@ -1750,8 +1819,8 @@ msgstr "" #~ msgstr "גודל מקסימלי במגה-בתים:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "שחזר את מפתחות ברירת המחדל שבאו עם ההפצה. זה לא ישנה את המפתחות המותקנים." @@ -1782,8 +1851,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "עדכונים זמינים\n" #~ "\n" @@ -1855,7 +1924,8 @@ msgstr "" #~ msgstr[1] "בחרת את כל %s החבילות המעודכנות, בגודל כולל של %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "בחרת %s מתוך חבילה מעודכנת אחת, בגודל של %s" #~ msgstr[1] "בחרת %s מתוך %s חבילות מעודכנות, בגודל כולל של %s" @@ -1863,8 +1933,8 @@ msgstr "" #~ msgstr "העדכונים מתבצעים כרגע." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "אפשר להריץ רק מנהל חבילות אחד באותו זמן. אנא סגור מנהלי חבילות אחרים קודם." @@ -1879,16 +1949,16 @@ msgstr "" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת עדכוני " -#~ "אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org בשביל " -#~ "מידע אודות שדרוג." +#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת " +#~ "עדכוני אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org " +#~ "בשביל מידע אודות שדרוג." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "הפצה חדשה עם שם קוד '%s' זמינה. אנא ראה http://www.ubuntulinux.org/ בשביל " #~ "הוראות שדרוג." @@ -1897,4 +1967,4 @@ msgstr "" #~ msgstr "אל תראה את הודעה זו שוב." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." \ No newline at end of file +#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." diff --git a/po/hi.po b/po/hi.po index 6eea2d4a..a23f976b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -55,6 +55,7 @@ msgstr "एक महीने बाद" msgid "After %s days" msgstr "%s दिन बाद" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -251,6 +256,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -307,6 +313,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -369,6 +376,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -379,6 +387,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -429,6 +438,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -540,8 +553,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -711,6 +727,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -800,14 +817,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -820,106 +840,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1241,187 +1269,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/hr.po b/po/hr.po index fb78eb28..154fd296 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:38+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Nakon mjesec dana" msgid "After %s days" msgstr "Nakon %s dana" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s nadogradnje" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Glavni poslužitelj" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,13 +124,12 @@ msgid "Error removing the key" msgstr "Greška prilikom brisanja ključa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +167,7 @@ msgstr "Ne mogu nadograditi potrebne meta-pakete" msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" @@ -180,6 +183,7 @@ msgstr "" "Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " "prijavite ovo kao grešku." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" @@ -207,6 +211,7 @@ msgstr "" "Nije bilo moguće instalirati potreban paket. Molimo prijavite ovo kao " "grešku. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" @@ -287,6 +292,7 @@ msgstr "" "odaberete 'Da' nadograditi će se svih '%s' do '%s' unosa.\n" "Ako odaberete 'ne' nadogradnja će se prekinuti." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" @@ -299,8 +305,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za " -"'%s'.\n" +"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za '%" +"s'.\n" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." @@ -358,6 +364,7 @@ msgstr "" "Ispraznite smeće i uklonite privremene pakete od prošlih instalacija " "koristeći 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" @@ -377,8 +384,8 @@ msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Obnavljanje je pokrenuto (dpkg --configure -a).\n" "\n" -"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke u " -"/var/log/dist-upgrade/ direktoriju u prijavu." +"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke " +"u /var/log/dist-upgrade/ direktoriju u prijavu." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -435,6 +442,7 @@ msgstr "" "Neki problemi su se pojavili prilikom čišćenja. Molim pogledajte poruku za " "više informacija. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" @@ -445,6 +453,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -504,6 +513,7 @@ msgstr "Tražim zastarjele programe" msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -514,7 +524,7 @@ msgid "Fetching is complete" msgstr "Preuzimanje je završeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" @@ -525,12 +535,13 @@ msgid "About %s remaining" msgstr "Otprilike je ostalo %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Preuzimam datoteku %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Primjenjujem promjene" @@ -548,8 +559,9 @@ msgstr "" "Nadogradnja se prekida. Molim, prijavite ovu grešku za 'update-manager' " "paket i uključite u prijavu datoteke iz /var/log/dist-upgrade direktorija." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -573,20 +585,21 @@ msgstr "Pojavila se ozbiljna greška" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-" -"upgrade/main.log i /var/log/dist-upgrade-apt.log u vaše izvješće. " -"Nadogradnja se sada prekida.\n" -"Vaša originalna sources.list datoteka je spremljena u " -"/etc/apt/sources.list.distUpgrade." +"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-upgrade/main." +"log i /var/log/dist-upgrade-apt.log u vaše izvješće. Nadogradnja se sada " +"prekida.\n" +"Vaša originalna sources.list datoteka je spremljena u /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket će biti uklonjen." @@ -594,7 +607,7 @@ msgstr[1] "%s paketa će biti uklonjena." msgstr[2] "%s paketa će biti uklonjeno." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s novi paket će biti instaliran." @@ -602,7 +615,7 @@ msgstr[1] "%s nova paketa će biti instalirana." msgstr[2] "%s novih paketa će biti instalirano." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket će biti nadograđen." @@ -610,7 +623,7 @@ msgstr[1] "%s paketa će biti nadograđena." msgstr[2] "%s paketa će biti nadograđeno." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -633,8 +646,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" @@ -680,6 +694,7 @@ msgid "%li seconds" msgstr "%li sekundi" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -701,6 +716,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -721,8 +737,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ponovno pokretanje računala potrebno je za završetak " -"nadogradnje" +"Ponovno pokretanje računala potrebno je za završetak nadogradnje" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -815,6 +831,7 @@ msgstr "Nisam mogao dobaviti bilješke izdanja" msgid "Please check your internet connection." msgstr "Molim, provjerite vašu internet vezu." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nisam mogao pokrenuti alat za nadogradnju" @@ -848,8 +865,7 @@ msgstr "Preuzimanje nije uspjelo" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Preuzimanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži. " +msgstr "Preuzimanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -889,12 +905,12 @@ msgstr "" "poslužiteljem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Preuzimam datoteku %li od %li pri %s/s" @@ -919,14 +935,17 @@ msgstr "" "Preuzimanje popisa promjena nije uspjelo. Molim, provjerite svoju internet " "vezu." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Važne sigurnosne nadogradnje" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Preporučene nadogradnje" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Predložene nadogradnje" @@ -941,35 +960,37 @@ msgstr "Ubuntu 5.10 backporti" msgid "Distribution updates" msgstr "_Nastavi nadogradnju" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Druge nadogradnje" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Verzija %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Preuzimam popis promjena..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "Pro_vjeri" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Veličina preuzimanja: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -977,39 +998,40 @@ msgstr[0] "Možete instalirati %s nadogradnju" msgstr[1] "Možete instalirati %s nadogradnje" msgstr[2] "Možete instalirati %s nadogradnji" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Molim pričekajte, ovo može potrajati." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Nadogradnja je gotova" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "_Instaliraj nadogradnje" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nova verzija: %s (Veličina: %s)" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Verzija %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Veličina: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Vaša distibucija više nije podržana" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1019,16 +1041,17 @@ msgstr "" "na noviju verziju Ubuntu Linuxa. Pogledajte na http://www.ubuntu.com za više " "detalja o nadogradnji." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Novo izdanje distribucije, '%s', je dostupno" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Popis programa je oštećen" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1038,19 +1061,23 @@ msgstr "" "upravitelja paketima \"Synaptic\" ili upišite \"sudo apt-get install -f\" u " "terminal za ispravljanje ovog problema." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ništa" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1324,8 +1351,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Unesite kompletnu APT liniju repozitorija koji želite " -"dodati\n" +"Unesite kompletnu APT liniju repozitorija koji želite dodati\n" "\n" "APT linija uključuje vstu, lokaciju i komponente kanala, na primjer \"deb " "http://ftp.debian.org sarge main\"." @@ -1416,192 +1443,235 @@ msgstr "Veličina prozora" msgid "Configure the sources for installable software and updates" msgstr "Podesi repozitorije i nadogradnje" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Održavani od strane zajednice" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Neslobodni upogonitelji za uređaje" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Neslobodni softver" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM sa Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Održavani od strane zajednice (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Održavani od strane zajednice (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Softver održavan od strane zajednice" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Neslobodni pogonski programi" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Neslobodni upogonitelji za uređaje " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ograničeni softver (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CDROM s Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 osvježenja" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backporti" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom sa Ubuntu 5.04 ' Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Službeno podržani" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 backporti" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Wart Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Održavani od strane zajednice (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodni (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom sa Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Neki paketi više nisu službeno podržani" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ograničeno autorsko pravo" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 osvježenja" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sigurnosne nadogradnje" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testni)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (nestabilni)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilni programi sa neslobodnim ovisnostima" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" @@ -1652,8 +1722,8 @@ msgstr "DFSG-nekompatibilni programi" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Neke nadogradnje zahtijevaju uklanjanje pojedinih programa. Upotrijebite " #~ "opciju \"Označi sve nadogradnje\" upravitelja paketima \"Synaptic\" ili " @@ -1663,7 +1733,6 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "The following updates will be skipped:" #~ msgstr "Slijedeći paketi će biti preskočeni:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Otprilike je ostalo %li sekundi" @@ -1735,4 +1804,4 @@ msgstr "DFSG-nekompatibilni programi" #~ msgstr "Ubuntu 6.06 LTS osvježenja" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backporti" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS backporti" diff --git a/po/hu.po b/po/hu.po index e7f789c0..2e1c6b18 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-06 10:07+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -55,6 +55,7 @@ msgstr "Egy hónap után" msgid "After %s days" msgstr "%s nap után" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s frissítés" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Fő kiszolgáló" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,13 +123,12 @@ msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Az Ön által kijelölt kulcs nem távolítható el. Kérem jelentse ezt hibaként." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +167,7 @@ msgstr "A szükséges meta-csomagok nem frissíthetőek" msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" @@ -178,9 +181,10 @@ msgid "" msgstr "" "A frissítés megtervezése közben feloldhatatlan probléma lépett fel.\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " -"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" +"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" @@ -206,6 +210,7 @@ msgid "" "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" @@ -287,6 +292,7 @@ msgstr "" "frissítve. \n" "A \"Nem\" kiválasztása megszakítja a frissítést." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" @@ -354,10 +360,11 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) " -"%s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " +"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) %" +"s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " "fájljait a \"sudo apt-get clean\" parancs kiadásával." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" @@ -377,8 +384,8 @@ msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " "állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a).\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " -"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" +"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -435,6 +442,7 @@ msgstr "" "A frissítés befejező fázisa közben hiba lépett fel. Az alábbi üzenet további " "információkat tartalmaz a hibára vonatkozóan. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" @@ -445,6 +453,7 @@ msgid "Fetching backport of '%s'" msgstr "\"%s\" visszaportolt változatának letöltése" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -504,6 +513,7 @@ msgstr "Elavult szoftverek keresése" msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -525,12 +535,13 @@ msgid "About %s remaining" msgstr "Kb. %s van hátra" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Fájl letöltése: %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Módosítások alkalmazása..." @@ -549,6 +560,7 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -576,9 +588,9 @@ msgstr "Végzetes hiba történt" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Jelentse ezt hibaként és a hibajelentéshez mellékelje a /var/log/dist-" @@ -588,6 +600,7 @@ msgstr "" "mentésre." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -607,7 +620,7 @@ msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d csomag frissítve lesz." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -631,8 +644,9 @@ msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" @@ -680,6 +694,7 @@ msgid "%li seconds" msgstr "%li másodperc" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -703,6 +718,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -815,6 +831,7 @@ msgstr "A kiadási megjegyzések nem tölthetők le" msgid "Please check your internet connection." msgstr "Kérjük ellenőrizze az internetkapcsolatát." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nem sikerült futtatni a frissítőeszközt" @@ -889,12 +906,12 @@ msgstr "" "kiszolgálóval. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" @@ -918,14 +935,17 @@ msgstr "" "A módosítások listájának letöltése meghiúsult. Ellenőrizze az " "internetkapcsolatát." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Fontos biztonsági frissítések" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Ajánlott frissítések" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Javasolt frissítések" @@ -939,71 +959,74 @@ msgstr "Visszaportolt csomagok" msgid "Distribution updates" msgstr "Frissítés _folytatása" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Egyéb frissítések" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "%s verzió: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Módosítások listájának letöltése..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Kijelölések törlése" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "Összes _ellenőrzése" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Letöltés mérete: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s frissítést telepíthet" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Kis türelmet, ez eltarthat egy ideig." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "A frissítés befejeződött" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Frissítések keresése" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Új verzió: %s (Méret: %s)" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "%s verzió" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Méret: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "A terjesztés már nem támogatott" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1013,16 +1036,17 @@ msgstr "" "Frissítsen az Ubuntu Linux egy újabb változatára. A frissítéssel kapcsolatos " "információkat az http://www.ubuntu.com weboldalon talál." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "A szoftverindex sérült" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1032,19 +1056,23 @@ msgstr "" "csomagkezelőt vagy futtassa a \"sudo apt-get install -f\" parancsot egy " "terminálban a probléma megoldása érdekében." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nincs" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1058,8 +1086,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Önnek kézzel kell megkeresnie a rendelkezésre álló " -"frissítéseket\n" +"Önnek kézzel kell megkeresnie a rendelkezésre álló frissítéseket\n" "\n" "Az Ön rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a " "viselkedést a \"Rendszer\" -> \"Adminisztráció\" -> \"Szoftverbeállítások\" " @@ -1072,8 +1100,8 @@ msgstr "Tartsa naprakészen a rendszerét" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Nem minden frissítés telepíthető \n" -" \n" +"Nem minden frissítés telepíthető\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1286,8 +1314,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Az elérhető szoftverekkel kapcsolatos információk " -"elévültek\n" +"Az elérhető szoftverekkel kapcsolatos információk elévültek\n" "\n" "Szoftverek és frissítések telepítéséhez újonnan felvett vagy módosított " "forrásokból, újra le kell töltenie az elérhető szoftverekkel kapcsolatos " @@ -1323,11 +1351,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Adja meg a forrásként felvenni kívánt tároló teljes APT " -"sorát\n" +"Adja meg a forrásként felvenni kívánt tároló teljes APT sorát\n" "\n" -"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " -"\"deb http://ftp.debian.org sarge main\"." +"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1416,191 +1444,234 @@ msgstr "Az ablak mérete" msgid "Configure the sources for installable software and updates" msgstr "Telepíthető szoftverek és frissítések forrásának beállítása" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Közösségi karbantartású" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Szabadalmazott eszközmeghajtók" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Nem-szabad" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Az Ubuntu 6.10 \"Edgy Eft\" CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Közösségi karbantartású (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Közösségi karbantartású (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Közösségi karbantartású nyílt forrású szoftverek" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nem-szabad meghajtók" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Szabadalmazott eszközmeghajtók " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Nem-szabad szoftverek (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Szerzői vagy egyéb jogi problémák miatt korlátozott szoftver" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Az Ubuntu 6.06 LTS \"Dapper Drake\"-et tartalmazó CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Visszaportolt frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Az Ubuntu 5.04 \"Hoary Hedgehog\"-ot tartalmazó CD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Hivatalosan támogatott" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 visszaportolt csomagok" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Közösségi karbantartású (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nem-szabad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Az Ubuntu 4.10 \"Warty Warthog\"-ot tartalmazó CD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Hivatalosan már nem támogatott" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Szerzői jogi korlátozás alatt" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 visszaportolt csomagok" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" biztonsági frissítések" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (tesztelés alatt)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instabil)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" @@ -1651,8 +1722,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Néhány frissítés további szoftverek eltávolítását igényli. Használja a " #~ "Synaptic csomagkezelő \"Minden frissítés kijelölése\" funkcióját, vagy " @@ -1662,7 +1733,6 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "The following updates will be skipped:" #~ msgstr "A következő frissítések ki lesznek hagyva:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Kb. %li másodperc van hátra" @@ -1687,7 +1757,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic programokat." +#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic " +#~ "programokat." #~ msgid "Channels" #~ msgstr "Csatornák" @@ -1733,4 +1804,4 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgstr "Ubuntu 6.06 LTS frissítések" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" diff --git a/po/id.po b/po/id.po index 4cd6c8b7..210d7c10 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:38+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -54,13 +54,15 @@ msgstr "Setelah satu bulan" msgid "After %s days" msgstr "Setelah %s hari" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "_Instal Update" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,13 +124,12 @@ msgid "Error removing the key" msgstr "Kesalahan menghapus kunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" @@ -181,6 +184,7 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" @@ -208,6 +212,7 @@ msgstr "" "Tidak memungkinkan untuk menginstal paket yang dibutuhkan. Silakan laporkan " "ini sebagai bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" @@ -281,6 +286,7 @@ msgstr "" "pilih 'Yes' disini, berkas akan memutakhirkan semua entri '%s' ke '%s'.\n" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Membuat sumber baku?" @@ -352,6 +358,7 @@ msgstr "" "cakram pada %s. Kosongkan sampah anda dan hapus paket sementara dari " "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" @@ -427,6 +434,7 @@ msgstr "" "Beberapa kesalahan terjadi pada waktu pembersihan. Silakan lihat pesan di " "bawah untuk informasi lebih lanjut. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" @@ -437,6 +445,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -466,7 +475,7 @@ msgid "Invalid package information" msgstr "Informasi paket tidak valid" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -495,6 +504,7 @@ msgstr "Mencari perangkat lunak usang" msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -506,23 +516,24 @@ msgid "Fetching is complete" msgstr "Pemutakhiran selesai" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Mengunduh berkas %li dari %li pada %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Sekitar %li menit lagi" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Mengunduh berkas %li dari %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Sahkan perubahan" @@ -538,8 +549,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -564,37 +576,38 @@ msgstr "Terjadi kesalahan fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-" -"upgrade.log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade " -"akan dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam " -"/etc/apt/sources.list.distUpgrade." +"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-upgrade." +"log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade akan " +"dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam /etc/apt/" +"sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -618,8 +631,9 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" @@ -645,12 +659,12 @@ msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Sekitar %li hari %li jam %li menit lagi" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Sekitar %li jam %li menit lagi" @@ -665,6 +679,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -686,6 +701,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -798,6 +814,7 @@ msgstr "Tidak dapat mengunduh catatan luncuran" msgid "Please check your internet connection." msgstr "Silakan periksa koneksi internet anda." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Tidak dapat menjalankan alat upgrade" @@ -870,12 +887,12 @@ msgstr "" "dengan server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Mengunduh berkas %li dari %li dengan %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Mengunduh berkas %li dari %li dengan %s/s" @@ -900,15 +917,18 @@ msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Pemutakhiran lewat Internet" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -924,93 +944,97 @@ msgstr "Ubuntu 6.06 LTS Backports" msgid "Distribution updates" msgstr "_Lanjutkan Upgrade" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versi %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Mengunduh senarai dari perubahan..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Periksa" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Ukuran unduh: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Anda dapat instal %s pemutakhiran" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Silakan tunggu, hal ini membutuhkan beberapa waktu." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Pemutakhiran selesai" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "_Instal Update" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versi baru: %s (Ukuran: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Versi %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Distribusi anda tidak disokong lagi" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" "Anda tidak akan mendapatkan perbaikan keamanan atau pemutakhiran penting " -"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat " -"http://www.ubuntu.com untuk informasi lebih lanjut." +"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." +"ubuntu.com untuk informasi lebih lanjut." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1020,19 +1044,23 @@ msgstr "" "Silakan gunakan manajer paket \"Synaptic\" atau jalankan \"sudo apt-get " "install -f\" dalam terminal untuk memperbaiki persoalan ini." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1307,8 +1335,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Masukkan baris lengkap APT dari kanal yang ingin anda tambah " -"\n" +"Masukkan baris lengkap APT dari kanal yang ingin anda tambah \n" "\n" "Baris APT menyertakan tipe, lokasi dan komponen dari kanal, sebagai contoh " "\"deb http://ftp.debian.org sarge main\"." @@ -1401,210 +1429,253 @@ msgstr "Ukuran jendela" msgid "Configure the sources for installable software and updates" msgstr "Mengatur kanal perangkat lunak dan pemutakhiran lewat internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Tidak-bebas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Updates" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Tidak-bebas (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Tidak-bebas (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi disokong" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Tidak-bebas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Hak cipta terlarang" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "Perangkat Lunak yang sesuai dengan DFSG tapi tergantung pada Perangkat Lunak " "Tidak-Bebas" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" @@ -1628,7 +1699,8 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Mengupgrade ke Ubuntu 6.06 LTS" +#~ "Mengupgrade ke Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1658,18 +1730,17 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Beberapa pemutakhiran butuh penghapusan perangkat lunak yang ada. Gunakan " #~ "fungsi \"Mark All Upgrades\" dari paket manajer paket \"Synaptic\" atau " -#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk memutakhirkan " -#~ "sistem anda." +#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk " +#~ "memutakhirkan sistem anda." #~ msgid "The following updates will be skipped:" #~ msgstr "Pemutakhiran berikut akan dilewati:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Sekitar %li detik lagi" @@ -1734,4 +1805,4 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgstr "_Custom" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS" diff --git a/po/it.po b/po/it.po index 6f370bd5..90005ae0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-06 12:46+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -56,6 +56,7 @@ msgstr "Dopo un mese" msgid "After %s days" msgstr "Dopo %s giorni" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s aggiornamenti" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Server principale" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Errore nel rimuovere la chiave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La chiave selezionata non può essere rimossa. Notificare questo evento come " "bug." @@ -158,8 +160,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Il sistema contiene pacchetti danneggiati che non possono essere aggiustati " -"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-" -"get\" per risolvere il problema." +"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" +"\" per risolvere il problema." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -169,6 +171,7 @@ msgstr "Impossibile aggiornare i meta-pacchetti richiesti" msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" @@ -186,6 +189,7 @@ msgstr "" "Notificare questo evento come bug riguardo il pacchetto «update-manager» e " "includere nella notifica i file della cartella «/var/log/dist-upgrade»." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" @@ -213,6 +217,7 @@ msgstr "" "Non è stato possibile installare un pacchetto richiesto. Notificare questo " "evento come bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" @@ -294,6 +299,7 @@ msgstr "" "tutte le voci «%s» verranno aggiornate a «%s»\n" "Scegliendo «No» l'aggiornamento verrà annullato." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" @@ -334,9 +340,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Sono state disabilitate alcune voci di terze parti nel proprio file " -"«sources.list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo " -"strumento «software-properties» o con synaptic." +"Sono state disabilitate alcune voci di terze parti nel proprio file «sources." +"list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo strumento " +"«software-properties» o con synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -365,6 +371,7 @@ msgstr "" "il cestino e rimuovere i pacchetti temporanei di precedenti installazione " "usando \"sudo apt-get clean\"." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" @@ -385,8 +392,8 @@ msgstr "" "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" "a).\n" "\n" -"Riportare questo bug per il pacchetto 'update-manager' includendo i file in " -"/var/log/dist-upgrade/ nel rapporto." +"Riportare questo bug per il pacchetto 'update-manager' includendo i file in /" +"var/log/dist-upgrade/ nel rapporto." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -443,6 +450,7 @@ msgstr "" "Si sono verificati alcuni problemi durante la pulizia. Leggere il messaggio " "seguente per maggiori informazioni. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Ripristino dello stato originale del sistema" @@ -453,6 +461,7 @@ msgid "Fetching backport of '%s'" msgstr "Recupero del backport di «%s»" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -469,8 +478,8 @@ msgid "" "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." +"evento come bug per il pacchetto «update-manager» includendo i file in «/var/" +"log/dist-upgrade/» nel rapporto." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -511,6 +520,7 @@ msgstr "Ricerca di software obsoleto" msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -538,6 +548,7 @@ msgstr "Recupero del file %li di %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applicazione dei cambiamenti" @@ -556,6 +567,7 @@ msgstr "" "'update-manager' e di includere i file in /var/log/dist-upgrade/ nella " "segnalazione." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -583,18 +595,19 @@ msgstr "Si è verificato un errore fatale" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Segnalare questo evento come un bug e includere nella notifica i file " -"/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. " -"L'aggiornamento viene interrotto.\n" -"Il file sources.list originale è stato salvato in " -"/etc/apt/sources.list.distUpgrade." +"Segnalare questo evento come un bug e includere nella notifica i file /var/" +"log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. L'aggiornamento " +"viene interrotto.\n" +"Il file sources.list originale è stato salvato in /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -641,8 +654,9 @@ msgstr "" "Per prevenire la perdita di dati, chiudere tutte le applicazioni e i " "documenti aperti." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Il sistema è aggiornato" @@ -690,6 +704,7 @@ msgid "%li seconds" msgstr "%li secondi" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -711,6 +726,7 @@ msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -730,8 +746,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Riavviare il sistema per completare l'aggiornamento" +msgstr "Riavviare il sistema per completare l'aggiornamento" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -821,6 +836,7 @@ msgstr "Impossibile scaricare le note di rilascio" msgid "Please check your internet connection." msgstr "Controllare la propria connessione a internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossibile eseguire lo strumento di aggiornamento" @@ -926,14 +942,17 @@ msgstr "" "Fallito lo scaricamento dell'elenco dei cambiamenti. \n" "Verificare la connessione a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Aggiornamenti di sicurezza importanti" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aggiornamenti raccomandati" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aggiornamenti proposti" @@ -946,73 +965,76 @@ msgstr "Backport" msgid "Distribution updates" msgstr "Aggiornamenti della distribuzione" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Altri aggiornamenti" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versione %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "Scaricamento dell'elenco dei cambiamenti..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 #, fuzzy msgid "_Uncheck All" msgstr "_Decontrassegnare tutti" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Contrassengare tutti" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Dati da scaricare: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "È possibile installare %s aggiornamento" msgstr[1] "È possibile installare %s aggiornamenti" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Attendere, l'operazione potrebbe richiedere del tempo." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "L'aggiornamento è stato completato" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Verifica degli aggiornamenti..." -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Dalla versione %(old_version)s alla %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versione %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Dimensione: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "La distribuzione in uso non è più supportata" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1022,16 +1044,17 @@ msgstr "" "versione più aggiornata di Ubuntu Linux. Per maggiori informazioni " "consultare http://www.ubuntu.com." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "L'indice del software è danneggiato" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1041,19 +1064,23 @@ msgstr "" "dei pacchetti \"Synaptic\" o eseguire in un terminale \"sudo apt-get install " "-f\" per risolvere il problema." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Niente" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1420,203 +1447,246 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura le sorgenti per gli aggiornamenti e per il software installabile" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenuto dalla comunità" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Driver proprietari per i dispositivi" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software con restrizioni" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software open source supportato da Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenuto dalla comunità (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software open source mantenuto dalla comunità" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Driver non liberi" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Driver proprietari per dispositivi " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software con restrizioni (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software con restrizioni per copyright o motivi legali" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Drapper Drake»" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aggiornamenti di backport" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aggiornamenti per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backport per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supportati ufficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aggiornamenti per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backport per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenuti dalla comunità (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libero (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Software non più supportato ufficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright con restrizioni" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aggiornamenti per Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backport per Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aggiornamenti di sicurezza per Debian 3.1 «Sarge»" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibile con le DFSG con dipendenze non libere" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." #~ msgstr "" -#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte le " -#~ "personalizzazioni apportate dall'utente o da uno script." +#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte " +#~ "le personalizzazioni apportate dall'utente o da uno script." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" -#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con una " -#~ "connessione DSL da 1Mbit" +#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con " +#~ "una connessione DSL da 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" @@ -1635,7 +1705,6 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software con restrizioni per copyright o questioni legali" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Scaricamento del file %li di %li a velocità sconosciuta" @@ -1684,18 +1753,17 @@ msgstr "Software non compatibile con le DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. Utilizzare " -#~ "la funzione \"Marca tutti gli aggiornamenti\" del gestore di pacchetti " -#~ "\"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade\" in un " -#~ "terminale per aggiornare completamente il sistema." +#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. " +#~ "Utilizzare la funzione \"Marca tutti gli aggiornamenti\" del gestore di " +#~ "pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade" +#~ "\" in un terminale per aggiornare completamente il sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "I seguenti aggiornamenti saranno tralasciati:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Circa %li secondi rimanenti" @@ -1704,7 +1772,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come bug." +#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come " +#~ "bug." #~ msgid "Upgrading Ubuntu" #~ msgstr "Aggiornamento di Ubuntu" @@ -1723,8 +1792,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" prima " -#~ "di continuare." +#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" " +#~ "prima di continuare." #~ msgid "Channels" #~ msgstr "Canali" @@ -1777,27 +1846,27 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Nessuna voce valida trovata" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Durante la scansione delle informazioni sui repository, non è stata trovata " -#~ "alcuna voce valida per l'aggiornamento.\n" +#~ "Durante la scansione delle informazioni sui repository, non è stata " +#~ "trovata alcuna voce valida per l'aggiornamento.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in uno " -#~ "stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg --" -#~ "configure -a)." +#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in " +#~ "uno stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg " +#~ "--configure -a)." #~ msgid "" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Notificare questo evento come bug e includere nella notifica i file \"~/dist-" -#~ "upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene interrotto " -#~ "ora. " +#~ "Notificare questo evento come bug e includere nella notifica i file \"~/" +#~ "dist-upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene " +#~ "interrotto ora. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1817,8 +1886,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analisi del sistema in uso\n" #~ "\n" @@ -1826,8 +1895,8 @@ msgstr "Software non compatibile con le DFSG" #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Gli aggiornamenti software possono correggere errori, eliminare " #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." @@ -1838,18 +1907,18 @@ msgstr "Software non compatibile con le DFSG" #~ "installed therefor" #~ msgstr "" #~ "L'installazione automatica è limitata ai soli aggiornamenti di sicurezza " -#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software \"unattended-" -#~ "upgrades\" deve perciò essere installato" +#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software " +#~ "\"unattended-upgrades\" deve perciò essere installato" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Inserire la riga APT completa del canale che si vuole " -#~ "aggiungere\n" +#~ "Inserire la riga APT completa del canale che si vuole aggiungere\n" #~ "\n" #~ "La riga APT contiene il tipo, la posizione e le sezioni di un canale, ad " #~ "esempio \"deb http://ftp.debian.org sarge main\"" @@ -1868,8 +1937,8 @@ msgstr "Software non compatibile con le DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Download delle modifiche in " -#~ "corso\n" +#~ "Download delle modifiche in corso\n" #~ "\n" #~ "Devo scaricare le modifiche dal server centrale" @@ -1911,11 +1980,11 @@ msgstr "Software non compatibile con le DFSG" #~ "permette di verificare l'integrità del software che scarichi." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati di " -#~ "aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " +#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati " +#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " #~ "proprietario. " #~ msgid "Add repository..." @@ -1943,8 +2012,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Dimensione massima in MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Ripristina le chiavi di default della distribuzione.\n" #~ "Questo non modificherà le chiavi installate dal'utente." @@ -1976,13 +2045,13 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Aggiornamenti Disponibili\n" #~ "\n" -#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando il " -#~ "pulsante Installa." +#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando " +#~ "il pulsante Installa." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancella il download delle modifiche" @@ -2017,7 +2086,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " +#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " #~ msgid "Choose a key-file" #~ msgstr "Scegli un file di chiave" @@ -2042,7 +2112,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr[1] "" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Hai selezionato %s pacchetti su %s, dimensione %s" #~ msgstr[1] "" @@ -2050,8 +2121,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Gli aggiornamenti sono in fase di applicazione." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Puoi eseguire una sola applicazione di gestione dei pacchetti " #~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione." @@ -2067,27 +2138,28 @@ msgstr "Software non compatibile con le DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione che " -#~ "stai usando non riceverà più aggiornamenti di sicurezza o altri " -#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org per " -#~ "informazioni riguardo all'aggiornamento." +#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione " +#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri " +#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org " +#~ "per informazioni riguardo all'aggiornamento." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "È disponibile una nuova release di Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su " -#~ "http://www.ubuntulinux.org/ per informazioni sull'aggiornamento" +#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://" +#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento" #~ msgid "Never show this message again" #~ msgstr "Non mostrare più questo messaggio" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" -#~ "Modifiche non trovate, il server potrebbe non essere stato ancora aggiornato." \ No newline at end of file +#~ "Modifiche non trovate, il server potrebbe non essere stato ancora " +#~ "aggiornato." diff --git a/po/ja.po b/po/ja.po index 5fcdda7f..bbd32963 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -56,13 +56,15 @@ msgstr "1ヶ月後" msgid "After %s days" msgstr "%s 日後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "アップデートをインストール中" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "メインサーバ" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -117,19 +120,19 @@ msgstr "選択したファイルのインポートエラー" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" +msgstr "" +"選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "鍵削除のエラー" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -156,7 +159,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれています。 Synaptic や apt-get を使って最初に修正してください。" +"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" +"す。 Synaptic や apt-get を使って最初に修正してください。" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -166,6 +170,7 @@ msgstr "要求されたメタパッケージがアップグレードできませ msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" @@ -179,6 +184,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" @@ -189,9 +195,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"" -"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワークの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケージが" -"表示されます。" +"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワー" +"クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" +"ジが表示されます。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -202,8 +208,10 @@ msgstr "'%s' がインストールできません" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "要求されたパッケージのインストールができません。バグとして報告してください。 " +msgstr "" +"要求されたパッケージのインストールができません。バグとして報告してください。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" @@ -217,9 +225,11 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケージ " -"が含まれていません。そして実行している ubuntu のバージョンが検出できません。 \n" -"開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインストールしてください。" +"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケー" +"ジ が含まれていません。そして実行している ubuntu のバージョンが検出できませ" +"ん。 \n" +"開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインス" +"トールしてください。" #: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy @@ -267,11 +277,14 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりませんでした。内部ミラーないしミラー情報が古いと思われます。\n" +"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりま" +"せんでした。内部ミラーないしミラー情報が古いと思われます。\n" "\n" -"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリを '%s' エントリにアップデートします。 " -"'いいえ' を選択するとアップデートをキャンセルします。" +"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリ" +"を '%s' エントリにアップデートします。 'いいえ' を選択するとアップデートを" +"キャンセルします。" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" @@ -286,7 +299,8 @@ msgid "" msgstr "" "'sources.list' をスキャン中、 '%s' の正しいエントリが見つかりませんでした。\n" "\n" -"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートをキャンセルします。" +"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" +"キャンセルします。" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -296,7 +310,9 @@ msgstr "リポジトリ情報が無効です" msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報告してください。" +msgstr "" +"リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" +"告してください。" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -309,8 +325,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、アップグレード後に 'ソフトウェアのプロパティ' ツールか " -"Synaptic を使用してください。" +"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、" +"アップグレード後に 'ソフトウェアのプロパティ' ツールか Synaptic を使用してく" +"ださい。" #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -320,7 +337,9 @@ msgstr "アップデート中にエラー発生" msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -msgstr "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。ネットワーク接続をチェックし、再びアップデートしてください。" +msgstr "" +"アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" +"ネットワーク接続をチェックし、再びアップデートしてください。" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -333,9 +352,11 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してください。ごみ箱を空にし、'sudo apt-get clean' " -"コマンドを実行して以前インストールした一時パッケージを削除してください。" +"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してくださ" +"い。ごみ箱を空にし、'sudo apt-get clean' コマンドを実行して以前インストールし" +"た一時パッケージを削除してください。" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" @@ -353,8 +374,8 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"アップグレードを中断しました。システムが使用できない状態になっている可能性があります。ただいま修正を実行中です (dpkg --configure -" -"a)。" +"アップグレードを中断しました。システムが使用できない状態になっている可能性が" +"あります。ただいま修正を実行中です (dpkg --configure -a)。" #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -364,7 +385,9 @@ msgstr "アップグレードをダウンロードできません" msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "アップグレードを中断しました。インターネット接続またはインストールメディア(CD-ROMなど)をチェックし。再試行してください。 " +msgstr "" +"アップグレードを中断しました。インターネット接続またはインストールメディア" +"(CD-ROMなど)をチェックし。再試行してください。 " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -379,9 +402,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"インストールされているこれらのパッケージは、もう公式にサポートされておらず、コミュニティサポートになっています('universe')。\n" +"インストールされているこれらのパッケージは、もう公式にサポートされておらず、" +"コミュニティサポートになっています('universe')。\n" "\n" -"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを提案します。" +"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" +"提案します。" #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -403,8 +428,11 @@ msgstr "コミット中にエラー" msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧ください。 " +msgstr "" +"クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧" +"ください。 " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "システムを元に戻し中" @@ -415,6 +443,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -442,7 +471,7 @@ msgid "Invalid package information" msgstr "無効なパッケージ情報" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -469,6 +498,7 @@ msgstr "古いソフトウェアを検索する" msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -480,23 +510,24 @@ msgid "Fetching is complete" msgstr "アップデートが完了しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "およそ残り %li 分" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "%i のうち %i をダウンロード中" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "変更を適用中" @@ -512,8 +543,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -538,36 +570,38 @@ msgstr "重大なエラーが発生しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"~/dist-upgrade.log と ~/dist-upgrade-apt.log " -"を含めて不具合として報告してください。アップグレードは中断しました。\n" -"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されています。" +"~/dist-upgrade.log と ~/dist-upgrade-apt.log を含めて不具合として報告してくだ" +"さい。アップグレードは中断しました。\n" +"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されていま" +"す。" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s つのパッケージが削除されます。" #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s·つのパッケージがインストールされます。" #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s·つのパッケージがアップグレードされます。" #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -586,10 +620,13 @@ msgstr "アップグレードには数時間かかり、今後一切キャンセ #: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてください。" +msgstr "" +"データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" +"さい。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" @@ -615,12 +652,12 @@ msgid "Upgrade %s" msgstr "アップグレード %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "およそ残り %li 日 %li 時間 %li 分" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "およそ残り %li 時間 %li 分" @@ -635,6 +672,7 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -654,6 +692,7 @@ msgstr "アップグレードが終了しました。再起動が必要ですが #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -668,11 +707,13 @@ msgid "" msgstr "" "アップグレードをキャンセルしますか?\n" "\n" -"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。アップグレードを再開することを強くおすすめします。" +"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。" +"アップグレードを再開することを強くおすすめします。" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "アップグレードを完了するためにシステムの再起動が必要です" +msgstr "" +"アップグレードを完了するためにシステムの再起動が必要です" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -765,6 +806,7 @@ msgstr "リリースノートををダウンロードできません" msgid "Please check your internet connection." msgstr "インターネット接続を確認してください。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "アップグレードツールを実行できません" @@ -806,7 +848,9 @@ msgstr "抽出に失敗しました" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題です。 " +msgstr "" +"アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題で" +"す。 " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -817,7 +861,9 @@ msgstr "検証に失敗しました" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "アップグレードの検証に失敗しました。おそらくネットワークまたはサーバの問題です。 " +msgstr "" +"アップグレードの検証に失敗しました。おそらくネットワークまたはサーバの問題で" +"す。 " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -827,15 +873,17 @@ msgstr "認証に失敗しました" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題です。 " +msgstr "" +"アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題で" +"す。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" @@ -856,17 +904,22 @@ msgstr "変更点がまだ取得できません。あとで試してください msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "変更点の取得に失敗しました。インターネットに接続されているか確認してください。" +msgstr "" +"変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" +"い。" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -882,113 +935,123 @@ msgstr "Ubuntu 6.04 バックポート" msgid "Distribution updates" msgstr "アップグレードを再開する(_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "アップデートをインストール中" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "バージョン %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "変更点を取得中..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "すべてのチェックをはずす(_U)" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "チェック(_C)" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "ダウンロードサイズ: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s 個のアップデートがインストールされます" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "しばらくお待ちください。少々時間がかかります。" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "アップデートが完了しました" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "インストールできるアップデートをチェック" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "新しいバージョン: %s (サイズ: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "バージョン %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(サイズ: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "このディストリビューションはすでにサポート対象外です" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの Ubuntu Linux にアップグレードしてください。 \n" +"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの " +"Ubuntu Linux にアップグレードしてください。\r\n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "新しいディストリビューション '%s' にアップグレードできます" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" -"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッケージマネージャを使用するか、 まずこの問題を解決するために " -"\"sudo apt-get install -f\" コマンドをターミナルで実行してください。" +"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッ" +"ケージマネージャを使用するか、 まずこの問題を解決するために \"sudo apt-get " +"install -f\" コマンドをターミナルで実行してください。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "なし" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1004,8 +1067,9 @@ msgid "" msgstr "" "アップデートの情報を手動でチェックしてください\n" "\n" -"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム(System)\"·->·\"システム管理\"·-" -">·\"ソフトウェアのプロパティ (Software Properties)\" で行います。" +"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム" +"(System)\"·->·\"システム管理\"·->·\"ソフトウェアのプロパティ (Software " +"Properties)\" で行います。" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1068,7 +1132,9 @@ msgstr "ソフトウェアのアップデート" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能を提供します。" +msgstr "" +"ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能" +"を提供します。" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1163,7 +1229,9 @@ msgstr "インターネットアップデート" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールされます。" +msgstr "" +"公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールさ" +"れます。" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1225,7 +1293,8 @@ msgid "" msgstr "" "チャンネルの情報が古いです\n" "\n" -"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うため、チャンネルを再読み込みしてください。\n" +"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うた" +"め、チャンネルを再読み込みしてください。\n" "\n" "続けるためには、インターネット接続が有効になっている必要があります。" @@ -1260,8 +1329,8 @@ msgid "" msgstr "" "追加したい完全な APT line を入力してください。\n" "\n" -"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。例:\"deb http://ftp.debian.org " -"sarge main\"" +"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。" +"例:\"deb http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1305,7 +1374,9 @@ msgstr "アップデートマネージャー" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "現在使用中のディストリビューションの最新バージョンが存在する場合自動的にチェックし、可能ならアップグレードを提案する" +msgstr "" +"現在使用中のディストリビューションの最新バージョンが存在する場合自動的に" +"チェックし、可能ならアップグレードを提案する" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1318,7 +1389,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込みしなければなりません。このオプションはその場合の催促をしないようにします。" +"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込み" +"しなければなりません。このオプションはその場合の催促をしないようにします。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1348,205 +1420,249 @@ msgstr "ウィンドウのサイズ" msgid "Configure the sources for installable software and updates" msgstr "ソフトウェアチャンネルとインターネットアップデートを設定" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 アップデート" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "コミュニティによるメンテナンス (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "デバイス用のプロプライエタリなドライバ" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "寄贈ソフトウェア" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' のCD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "コミュニティによるメンテナンス (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "コミュニティによるメンテナンス (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "コミュニティによるメンテナンス (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "非フリー (Multiuniverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "デバイス用のプロプライエタリなドライバ " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "非フリー (Multiuniverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "バックポートされたアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 バックポート" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 バックポート" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiuniverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' のCD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "いくつかのソフトウェアはもう公式にサポートされません" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 バックポート" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian·3.1·\"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian·3.1·\"Sarge\"·セキュリティアップデート" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian·\"Etch\"·(testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian·\"Sid\"·(unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" @@ -1555,7 +1671,6 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "ダウンロード中: 速度不明で %li のうち %li" @@ -1579,7 +1694,8 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Ubuntu 6.06 LTS にアップデート中" +#~ "Ubuntu 6.06 LTS にアップデート中" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1600,23 +1716,25 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "システムを解析中です\n" #~ "\n" -#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機能を提供します。" +#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機" +#~ "能を提供します。" #~ msgid "Oficially supported" #~ msgstr "公式サポート" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグレードするためにはパッケージマネージャ \"Synaptic\" の " -#~ "\"すべてのアップグレードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を実行してください。" +#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグ" +#~ "レードするためにはパッケージマネージャ \"Synaptic\" の \"すべてのアップグ" +#~ "レードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を" +#~ "実行してください。" #~ msgid "The following updates will be skipped:" #~ msgstr "これらのパッケージはアップグレードされません:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "およそ残り %li 秒" @@ -1636,11 +1754,14 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "詳細を表示" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "ソフトウェアマネージメントツールは同時に1つしか実行することができません" +#~ msgstr "" +#~ "ソフトウェアマネージメントツールは同時に1つしか実行することができません" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してください。" +#~ msgstr "" +#~ "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してく" +#~ "ださい。" #~ msgid "Channels" #~ msgstr "チャンネル" @@ -1692,9 +1813,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "Ubuntu 6.06 LTS バックポート" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" -#~ msgstr "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリがみつかりました。\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" +#~ msgstr "" +#~ "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリが" +#~ "みつかりました。\n" #~ msgid "Repositories changed" #~ msgstr "リポジトリが変更されました" @@ -1702,17 +1825,20 @@ msgstr "DFSGに適合しないソフトウェア" #~ 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 "変更点を有効にするためにパッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?" +#~ msgstr "" +#~ "変更点を有効にするためにパッケージリストをサーバから再取得する必要がありま" +#~ "す。今すぐ実行しますか?" #~ msgid "Sections" #~ msgstr "セクション:" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. Please try " -#~ "'sudo apt-get install -f' or Synaptic to fix your system." +#~ "The upgrade aborts now. Your system can be in an unusable state. Please " +#~ "try 'sudo apt-get install -f' or Synaptic to fix your system." #~ msgstr "" -#~ "アップグレードを中断しました。システムが不安定な状態になっています。システムを修正するために 'sudo apt-get install -f ' " -#~ "または Synapticを試してみてください。" +#~ "アップグレードを中断しました。システムが不安定な状態になっています。システ" +#~ "ムを修正するために 'sudo apt-get install -f ' または Synapticを試してみて" +#~ "ください。" #~ msgid "Remove obsolete Packages?" #~ msgstr "古いパッケージ削除しますか?" @@ -1721,18 +1847,19 @@ msgstr "DFSGに適合しないソフトウェア" #~ "Upgrading to Ubuntu \"Dapper\" " #~ "6.04" #~ msgstr "" -#~ "Ubuntu·\"Dapper\"·6.04 " -#~ "にアップグレード中" +#~ "Ubuntu·\"Dapper\"·6.04 にアップグ" +#~ "レード中" #~ msgid "" #~ "Checking for available updates\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "アップデートをチェック中\n" #~ "\n" -#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去し、新機能を追加します。" +#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去" +#~ "し、新機能を追加します。" #~ msgid "Sections:" #~ msgstr "セクション:" @@ -1775,11 +1902,12 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" -#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量がありません。再び試行する前に 'sudo apt-get clean' " -#~ "などで空き容量を確保してください" +#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量があり" +#~ "ません。再び試行する前に 'sudo apt-get clean' などで空き容量を確保してくだ" +#~ "さい" #~ msgid "Error fetching the packages" #~ msgstr "パッケージ取得中にエラー" @@ -1787,7 +1915,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " -#~ msgstr "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの問題です。ネットワークを確認して再試行してください。 " +#~ msgstr "" +#~ "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの" +#~ "問題です。ネットワークを確認して再試行してください。 " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1812,9 +1942,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "本当にキャンセルしますか?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " -#~ msgstr "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作を継続することを強く忠告します。 " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " +#~ msgstr "" +#~ "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作" +#~ "を継続することを強く忠告します。 " #, fuzzy #~ msgid "Sources" @@ -1848,15 +1980,18 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "認証鍵\n" #~ "\n" -#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完全なものか確認することができます。" +#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完" +#~ "全なものか確認することができます。" #~ msgid "A_uthentication" #~ msgstr "認証(_U)" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " -#~ msgstr "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経由で鍵を取得し、信頼される持ち主のものか確認してください。 " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " +#~ msgstr "" +#~ "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経" +#~ "由で鍵を取得し、信頼される持ち主のものか確認してください。 " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "一時ファイルを自動的に削除する(_T)" @@ -1877,9 +2012,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "最大量(MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." -#~ msgstr "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更によりユーザが追加した鍵が失われることはありません。" +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." +#~ msgstr "" +#~ "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更により" +#~ "ユーザが追加した鍵が失われることはありません。" #~ msgid "Set _maximum size for the package cache" #~ msgstr "パッケージキャッシュの最大量を設定する(_M)" @@ -1905,26 +2042,27 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "アップデートがあります\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" +#~ "のパッケージがインストールされます。" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. If " -#~ "you are behind an internet connection that needs to be started by hand (e.g. " -#~ "a modem) you should use this button so that update-manager knows about new " -#~ "updates." +#~ "If you have a permanent internet connection this is done automatically. " +#~ "If you are behind an internet connection that needs to be started by hand " +#~ "(e.g. a modem) you should use this button so that update-manager knows " +#~ "about new updates." #~ msgstr "" #~ "サーバからパッケージ情報を読み込み直します。\n" #~ "\n" -#~ "" -#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデムなどでそうではないなら、アップデートマネージャに新しいアップデートがあるかどうかを" -#~ "知らせるため、このボタンを使用して手動で行う必要があります。" +#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデム" +#~ "などでそうではないなら、アップデートマネージャに新しいアップデートがあるか" +#~ "どうかを知らせるため、このボタンを使用して手動で行う必要があります。" #~ msgid "Binary" #~ msgstr "バイナリ" @@ -1945,7 +2083,8 @@ msgstr "DFSGに適合しないソフトウェア" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" または \"apt-get\" を使用して修正してください。" +#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" ま" +#~ "たは \"apt-get\" を使用して修正してください。" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "全てのパッケージをアップグレードすることは不可能です。" @@ -1953,21 +2092,27 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対処がいるようです。Synaptic \"Smart " -#~ "Upgrade\"か\"apt-get dist-upgrade\"を実行して問題を修正してください。" +#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対" +#~ "処がいるようです。Synaptic \"Smart Upgrade\"か\"apt-get dist-upgrade\"を実" +#~ "行して問題を修正してください。" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "変更点は見つかりませんでした。サーバはまだアップデートされていないようです。" +#~ msgstr "" +#~ "変更点は見つかりませんでした。サーバはまだアップデートされていないようで" +#~ "す。" #~ msgid "The updates are being applied." #~ msgstr "アップデートされました。" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." -#~ msgstr "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケーションマネージャを終了してください。" +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." +#~ msgstr "" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケー" +#~ "ションマネージャを終了してください。" #~ msgid "Updating package list..." #~ msgstr "アップデートされるパッケージのリスト..." @@ -1977,22 +2122,22 @@ msgstr "DFSGに適合しないソフトウェア" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "新しいUbuntu " -#~ "Linuxにアップグレードしてください。現在お使いのシステムにはセキュリティフィクスや危急のアップデートはすでに提供されていません。アッ" -#~ "プグレードに関する情報は http://www.ubuntulinux.org/ を見てください。" +#~ "新しいUbuntu Linuxにアップグレードしてください。現在お使いのシステムにはセ" +#~ "キュリティフィクスや危急のアップデートはすでに提供されていません。アップグ" +#~ "レードに関する情報は http://www.ubuntulinux.org/ を見てください。" #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntuの新しいリリース版があります!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするために http://www.ubuntulinux.org/ " -#~ "をご覧ください。" +#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするため" +#~ "に http://www.ubuntulinux.org/ をご覧ください。" #~ msgid "Never show this message again" #~ msgstr "このメッセージを二度と表示しない" @@ -2001,10 +2146,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "排他的なロックができません" #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や aptitudeのような他のパッケージマネージャを終了してください。" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や " +#~ "aptitudeのような他のパッケージマネージャを終了してください。" #~ msgid "Initializing and getting list of updates..." #~ msgstr "アップデートリストを取得中..." @@ -2021,9 +2167,10 @@ msgstr "DFSGに適合しないソフトウェア" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "利用可能なアップデート\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" \ No newline at end of file +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" +#~ "のパッケージがインストールされます。" diff --git a/po/ka.po b/po/ka.po index 067f4ffd..53b668c7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -57,13 +57,15 @@ msgstr "ერთი თვის შემდგომ" msgid "After %s days" msgstr "%s დღის შემდეგ" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "განახლებების _დაყენება" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,13 +128,12 @@ msgid "Error removing the key" msgstr "გასღების წაშლა ვერ მოხერხდა" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "ამორჩეული გასაღების წაშლა ვე რმოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -171,6 +173,7 @@ msgstr "საჭჳრო მეტა-პაკეტების განა msgid "A essential package would have to be removed" msgstr "A არსებითი -სკენ" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -186,6 +189,7 @@ msgid "" msgstr "" "მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" @@ -209,9 +213,9 @@ msgstr "'%s' ვერ დაყენდა" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " +msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ გამოვიცანით" @@ -275,6 +279,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" @@ -338,6 +343,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" @@ -407,6 +413,7 @@ msgid "" "more information. " msgstr "-თვის ინფორმაცია " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -417,6 +424,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -473,6 +481,7 @@ msgstr "ვეძებ -თვის" msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -501,6 +510,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "ცვლილებების დამტკიცება" @@ -516,6 +526,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -542,15 +553,16 @@ msgstr "A შეცდომა" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "a და შემცველობა და -ში ახლა თავდაპირველი სია -ში სია." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "A არსებითი -სკენ" @@ -587,8 +599,9 @@ msgstr "საათი და ნებისმიერი დრო." msgid "To prevent data loss close all open applications and documents." msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" @@ -634,6 +647,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -654,6 +668,7 @@ msgstr "ტოლია დასრულდა და a ტოლია -ს #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -767,6 +782,7 @@ msgstr "შეუძლებელია ვერსიის შენიშ msgid "Please check your internet connection." msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ კავშირი." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს" @@ -871,15 +887,18 @@ msgid "" "Please check your Internet connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -895,74 +914,77 @@ msgstr "Ubuntu 5.10 დამატებითი პროგრამებ msgid "Distribution updates" msgstr "განახლება _გაგრძელება" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "ვერსია %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "მიმდინარეობს ჩამოქაჩვა სია ის." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "შ_ემოწმება" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "ჩამოსატვირთის ზომა: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "თქვენ შეგიძლიათ %s განახლების ჩადგმა" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "განახლება გასრულებულია" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "განახლებების _დაყენება" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "ახალი ვერსია: %s (ზომა: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "ვერსია %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 #, fuzzy msgid "" "You will not get any further security fixes or critical updates. Upgrade to " @@ -972,16 +994,17 @@ msgstr "" "თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი " "იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 #, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " @@ -990,19 +1013,23 @@ msgid "" msgstr "" "ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1369,203 +1396,248 @@ msgstr "ფანჯარა ზომა" msgid "Configure the sources for installable software and updates" msgstr "კონფიგურირება და" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 -#, fuzzy +#, fuzzy, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 განახლებები" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "არათავისუფალი (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "არათავისუფალი (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "არათავისუფალი (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "არათავისუფალი (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "არა" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "შეზღუდული" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 -#, fuzzy +#, fuzzy, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/ s s s s s" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "უსაფრთხოება" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 #, fuzzy msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "პროგრამა თავისუფალი დამოკიდებულებანი" +#. CompDescription #: ../data/channels/Debian.info.in:57 #, fuzzy msgid "Non-DFSG-compatible Software" @@ -1618,8 +1690,8 @@ msgstr "პროგრამა" #, fuzzy #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "ის გამოყენება მონიშვნა ყველა ის Synaptic ან sudo -ში a ტერმინალი -სკენ " #~ "განახლება." @@ -1698,4 +1770,4 @@ msgstr "პროგრამა" #~ msgstr "Ubuntu 6.06 LTS განახლებები" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" diff --git a/po/ko.po b/po/ko.po index cb8c6fe3..2ee4468a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-06 11:33+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" @@ -54,6 +54,7 @@ msgstr "한달 후에" msgid "After %s days" msgstr "%s일 후에" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s 업데이트" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "주 서버" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "키 삭제 오류" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "선택한 키를 지울 수 없습니다. 버그를 보고하십시오." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -151,7 +153,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시냅틱이나 apt-get을 사용하여 복구하십시오." +"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" +"냅틱이나 apt-get을 사용하여 복구하십시오." #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -161,6 +164,7 @@ msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" msgid "A essential package would have to be removed" msgstr "필수적인 패키지를 제거해야만 합니다." +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." @@ -172,11 +176,13 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다.\n" +"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니" +"다.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " -"파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" +"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "패키지 인증 오류" @@ -187,8 +193,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 " -"목록은 다음과 같습니다." +"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우" +"라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 목록은 다음과 같습니다." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -201,6 +207,7 @@ msgid "" "bug. " msgstr "요청한 패키지를 설치할 수 없습니다. 버그를 보고하여 주십시오. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "메타 패키지를 추측할 수 없습니다" @@ -213,9 +220,10 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없으며, 현재 실행중인 " -"우분투의 버전을 알아낼 수 없습니다.\n" -" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니다." +"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없" +"으며, 현재 실행중인 우분투의 버전을 알아낼 수 없습니다.\n" +" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니" +"다." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -230,8 +238,8 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우분투 CD를 사용하고 있었다면 이 버그를 보고해 " -"주십시오.\n" +"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우" +"분투 CD를 사용하고 있었다면 이 버그를 보고해 주십시오.\n" "\n" "오류 메시지:\n" "'%s'" @@ -251,8 +259,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 패키지를 받을 수 있습니다.\n" -"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." +"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 " +"패키지를 받을 수 있습니다.\n" +"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워" +"크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -269,12 +279,15 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 " -"오래됐을 때 이러한 문제가 일어날 수 있습니다.\n" +"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니" +"다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 오래됐을 때 이러한 문제" +"가 일어날 수 있습니다.\n" "\n" -"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%s' 항목으로 업데이트 합니다.\n" +"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%" +"s' 항목으로 업데이트 합니다.\n" "'아니오'를 선택하면 업데이트가 취소됩니다." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" @@ -289,7 +302,8 @@ msgid "" msgstr "" "'sources.list'를 검색했지만 '%s'에 적합한 항목을 찾지 못했습니다.\n" "\n" -"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소됩니다." +"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소" +"됩니다." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -299,7 +313,9 @@ msgstr "저장소 정보가 올바르지 않습니다" msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 주십시오." +msgstr "" +"저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 " +"주십시오." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -311,8 +327,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-properties' 도구나 시냅틱으로 " -"업그레이드 한 후에 다시 사용가능하게 할 수 있습니다." +"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-" +"properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" +"니다." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -323,7 +340,8 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." +"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" +"니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -336,9 +354,11 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 바랍니다. 휴지통을 비우시고 'sudo apt-get " -"clean' 명령으로 이전 설치 과정 중에 사용했던 임시 패키지들을 삭제하시기 바랍니다." +"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 " +"바랍니다. 휴지통을 비우시고 'sudo apt-get clean' 명령으로 이전 설치 과정 중" +"에 사용했던 임시 패키지들을 삭제하시기 바랍니다." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" @@ -355,11 +375,11 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. (dpkg --configure -a)를 실행하여 " -"복구하십시오.\n" +"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " +"(dpkg --configure -a)를 실행하여 복구하십시오.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " -"파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" +"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -369,7 +389,9 @@ msgstr "업그레이를 다운로드 할 수 없습니다." msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도하십시오. " +msgstr "" +"업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" +"하십시오. " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -383,9 +405,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니티를 통해서 여전히 지원받을 수 있습니다.\n" +"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니" +"티를 통해서 여전히 지원받을 수 있습니다.\n" "\n" -"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 패키지들을 삭제하도록 제안할 것입니다." +"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 " +"패키지들을 삭제하도록 제안할 것입니다." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -407,8 +431,11 @@ msgstr "커밋 도중 오류 발생" msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인할 수 있습니다. " +msgstr "" +"정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인" +"할 수 있습니다. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "시스템을 원래의 상태로 복구하고 있습니다" @@ -419,6 +446,7 @@ msgid "Fetching backport of '%s'" msgstr "'%s'의 백포트를 받고 있습니다" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -453,8 +481,8 @@ msgid "" "bugreport." msgstr "" "패키지 정보를 업데이트한 다음에 필수 패키지 '%s'를 더이상 찾을 수 없습니다.\n" -"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-" -"upgrade/에 있는 파일을 포함하여 주십시오." +"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리" +"고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -472,6 +500,7 @@ msgstr "구식 소프트웨어를 검색하고 있습니다" msgid "System upgrade is complete." msgstr "완전히 시스템을 업그레이드하였습니다." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -499,6 +528,7 @@ msgstr "%li의 %li 파일 내려받는 중" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "변경 사항을 적용하고 있습니다" @@ -513,9 +543,11 @@ 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 bugreport." msgstr "" -"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 " -"/var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시" +"오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시" +"오." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -541,16 +573,18 @@ msgstr "심각한 오류 발생" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main.log 파일과 /var/log/dist-" -"upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드가 중단되었습니다.\n" +"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main." +"log 파일과 /var/log/dist-upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드" +"가 중단되었습니다.\n" "원래의 sources.list는 /etc/apt/sources.list.distUpgrade에 저장되어 있습니다." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -584,14 +618,17 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에도 취소할 수 없습니다." +msgstr "" +"업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에" +"도 취소할 수 없습니다." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." @@ -637,6 +674,7 @@ msgid "%li seconds" msgstr "%li초" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -656,6 +694,7 @@ msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -670,7 +709,8 @@ msgid "" msgstr "" "실행 중인 업그레이드를 취소하시겠습니까?\n" "\n" -"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이드를 계속 하시기를 강력히 건의합니다." +"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이" +"드를 계속 하시기를 강력히 건의합니다." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -764,6 +804,7 @@ msgstr "릴리즈 정보를 다운로드 할 수 없습니다." msgid "Please check your internet connection." msgstr "인터넷 연결 상태를 확인하십시오." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "업그레이드 도구를 실행할 수 없습니다." @@ -805,7 +846,9 @@ msgstr "압축 풀기 실패" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있" +"습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -815,7 +858,9 @@ msgstr "확인 실패" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습" +"니다. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -825,12 +870,15 @@ msgstr "인증 실패" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니" +"다. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" +msgstr "" +"%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -853,14 +901,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "중요한 보안 업데이트" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "추천하는 업데이트" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "제안하는 업데이트" @@ -873,109 +924,118 @@ msgstr "Backports" msgid "Distribution updates" msgstr "배포판 업데이트" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "기타 업데이트" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "버전 %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "변경 사항 목록을 다운로드하고 있습니다..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "전체 선택 취소(_U)" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "전체 선택(_C)" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "다운로드 크기: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "업데이트 %s개를 설치할 수 있습니다." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "잠시만 기다리십시오. 이 작업은 약간의 시간이 걸립니다." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "완전히 업데이트하였습니다." -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "업데이트 확인" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "버전 %(old_version)s에서 %(new_version)s(으)로" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "버전 %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(크기: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "더 이상 지원되지 않는 배포판입니다." -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 " -"http://www.ubuntu.com에서 보실 수 있습니다." +"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업" +"그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" +"서 보실 수 있습니다." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'을(를) 설치할 수 있습니다" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" -"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 \"sudo apt-get install -f\"를 " -"실행하여 이 문제를 먼저 해결하십시오." +"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 " +"\"sudo apt-get install -f\"를 실행하여 이 문제를 먼저 해결하십시오." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "없음" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -990,7 +1050,8 @@ msgid "" msgstr "" "업데이트 확인을 직접 해야 합니다.\n" "\n" -"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭의 소프트웨어 소스에서 설정할 수 있습니다." +"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭" +"의 소프트웨어 소스에서 설정할 수 있습니다." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1037,7 +1098,8 @@ msgid "" msgstr "" "배포판 업그레이드를 수행하여 가능한 많은 업데이트를 설치합니다. \n" "\n" -"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에서 실행했기 때문일 수 있습니다." +"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에" +"서 실행했기 때문일 수 있습니다." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1051,7 +1113,9 @@ msgstr "소프트웨어 업데이트" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공합니다." +msgstr "" +"소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" +"합니다." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1111,10 +1175,12 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 " -"우분투 프로젝트로 일주일에 한번씩 익명으로 전송합니다.\n" +"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 " +"설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 우분투 프로젝트로 일주일" +"에 한번씩 익명으로 전송합니다.\n" "\n" -"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위를 매기는데 사용합니다." +"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위" +"를 매기는데 사용합니다." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1202,7 +1268,8 @@ msgid "" msgstr "" "이용할 수 있는 소프트웨어에 대한 정보가 오래되었습니다.\n" "\n" -"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" +"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이" +"용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" "\n" "계속하기 위해서는 인터넷 연결이 필요합니다." @@ -1234,10 +1301,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" +"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" "\n" -"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb http://ftp.debian.org " -"sarge main\"" +"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb " +"http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1279,7 +1347,8 @@ msgstr "업데이트 관리자" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." +msgstr "" +"현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1291,8 +1360,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 " -"합니다." +"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 " +"합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 합니다." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1320,199 +1389,246 @@ msgstr "창 크기" msgid "Configure the sources for installable software and updates" msgstr "설치할 수 있는 소프트웨어와 업데이트를 위한 소스를 설정" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "커뮤니티에서 관리" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "장치의 독점 드라이버" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "제한된 소프트웨어" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "커뮤니티에서 관리 (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "커뮤니티에서 관리하는 오픈 소스 소프트웨어" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "비자유 드라이버" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "장치의 독점 드라이버 " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "제한된 소프트웨어 (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "우분투 5.10 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "우분투 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog' 씨디롬" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "공식적으로 지원함" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "우분투 5.04 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "우분투 5.04 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "우분투 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "커뮤니티에서 관리 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "비자유 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog' 씨디롬" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "더 이상 공식적으로 지원하지 않음" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "저작권이 제한됨" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "우분투 4.10 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "우분투 4.10 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "우분투 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "데비안 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "데비안 3.1 \"Sarge\" 보안 업데이트" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "데비안 \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "데비안 \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG 호환이 되지만 비자유 소프트웨어에 의존하는 소프트웨어" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." -#~ msgstr "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것을 잃어버릴 것입니다." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." +#~ msgstr "" +#~ "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것" +#~ "을 잃어버릴 것입니다." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" -#~ msgstr "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로는 약 %s이(가) 걸립니다." +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" +#~ msgstr "" +#~ "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로" +#~ "는 약 %s이(가) 걸립니다." #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "변경 사항 목록이 아직 없습니다. 잠시 후 다시 시도해 주십시오." @@ -1520,10 +1636,12 @@ msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." -#~ msgstr "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." +#~ msgstr "" +#~ "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시" +#~ "오." #~ msgid "By Canonical supported Open Source software" #~ msgstr "Canonical이 지원하는 오픈 소스 소프트웨어" #~ msgid "By copyright or legal issues restricted software" -#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" \ No newline at end of file +#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" diff --git a/po/ku.po b/po/ku.po index 27d3aac3..6f6e1835 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-04 06:52+0000\n" "Last-Translator: ElîxanLoran \n" "Language-Team: Kurdish \n" @@ -55,6 +55,7 @@ msgstr "Piştî mehekê" msgid "After %s days" msgstr "Piştî %s roj" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s rojanekirin" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pêşkêşkera Mak" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Di dema rakirina mifteyan de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê yekê weke " "çewtiyekê ragihîne." @@ -168,6 +170,7 @@ msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" msgid "A essential package would have to be removed" msgstr "Divê pakêteke pêwist jê were rakirin" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Rojanekirin nikaribû were hesabkirin" @@ -181,9 +184,10 @@ msgid "" msgstr "" "Dema bilindkirin hesab dikir çewtiyeke ku nayê veçirandin derkete holê.\n" "\n" -"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li " -"/var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." +"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li /" +"var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Di piştrastkirina çend paketan de çewtî derket" @@ -210,6 +214,7 @@ msgstr "" "Pakêta pêwist nehate barkirin. Ji kerema xwe re vê yekê weke çewtiyekê " "ragihîne. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakêta-meta nehate kifşkirin" @@ -291,6 +296,7 @@ msgstr "" "rojanekirin.\n" "Heke tu bibêjî 'Na' wê rojanekirin betal bibe." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Bile çavkaniyên rawêjî pêk bên?" @@ -359,6 +365,7 @@ msgstr "" "bike. Çopa xwe vala bikin û bi 'sudo apt-get clean' pakêtên derbasdar yên " "sazkirinên berê rake." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Tu dixwazî dest bi bilindkirinê bikî?" @@ -430,6 +437,7 @@ msgstr "" "Di dema paqijkirinê de hin pirsgirêk derketin. Ji bo agahiyan ji kerema xwe " "re li peyama jêr binihêre. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Vedigere rewşa pergala orjînal" @@ -440,6 +448,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -473,8 +482,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng " -"'%s' êdî nayê dîtin.\n" +"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng '%" +"s' êdî nayê dîtin.\n" "Dibe ku ev çewtiyeke girîng e, ji kerema xwe re bo pakêta 'update-manager' " "vê çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li " "peyama çewtiyê zêde bike." @@ -495,6 +504,7 @@ msgstr "Li nivîsbariya kevin tê gerandin" msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -523,6 +533,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Guherandin tê bi kar anîn" @@ -541,6 +552,7 @@ msgstr "" "çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li peyama " "xwe ya çewtiyê zêde bike." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -566,9 +578,9 @@ msgstr "Çewtiyeke giran derket" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ji kerema xwe re vê çewtiyê ragihîne.Dosyeyên ku li /var/log/dist-upgrade/ " @@ -578,29 +590,30 @@ msgstr "" "hate tomarkirin." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket dê were rakirin." msgstr[1] "%s paket dê werin rakirin." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket dê were sazkirin" msgstr[1] "%s paket dê werin sazkirin" #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket dê were bilindkirin." msgstr[1] "%s paket dê werin bilindkirin." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -622,8 +635,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" @@ -671,6 +685,7 @@ msgid "%li seconds" msgstr "%li çirke" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -691,6 +706,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -710,8 +726,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide " -"destpêkirin" +"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide destpêkirin" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -801,6 +817,7 @@ msgstr "Nîşeyên weşanê nehate daxistin" msgid "Please check your internet connection." msgstr "Ji kerema xwe girêdana înternetê kontrol bike." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Amûra bilindkirinê nikaribû bimeşîne" @@ -896,14 +913,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Rojanekirinên ewlekariyê yên girîng" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rojanekirinên têne pêşniyarkirin" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Rojanekirinên hatine pêşniyarkirin" @@ -916,71 +936,74 @@ msgstr "" msgid "Distribution updates" msgstr "Rojanekirinên dîstrîbusiyonê" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Rojanekirinên din" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Guherto %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "Lîsteya guhartinan tê daxistin..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "Yekê Jî _Hilnebijêre" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "Hemûyan _Hilbijêrî" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Mezinahiya daxistinê: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Tu dikarî %s rojanekirinê saz bikî" msgstr[1] "Tu dikarî %s rojanekirinan saz bikî" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Divê raweste, dibe ku ev hinekî demdijêj be." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Rojanekirin temam bû" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Rojanekirin têne venihartin." -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Guherto %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Mezinahî:%s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Belavkariya ku tu bikar tîne nayê destekirin" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -990,16 +1013,17 @@ msgstr "" "nestîne. Pergala xwe ya xebatê bilindî guhertoya Ubuntu Linuxê bike. Ji bo " "agahiyên berfireh malpera http://www.ubuntu.com ziyaret bike." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Weşana belavkariya nû dikare bigihêje '%s'" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Pêrista nivîsbariyê xera bûye" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1007,23 +1031,27 @@ msgid "" msgstr "" "Sazkirin an jî rakirina nivîsbariyê qet ne gengaz e. Ji kerema xwe berî her " "tiştî vê pirsgirêkê bi gerînendeyê pakêtan ya \"Synaptic\" and jî bi fermana " -"\"sudo apt-get install -f\" re di termînalê de çareser bike. \n" -" \n" +"\"sudo apt-get install -f\" re di termînalê de çareser bike.\r\n" +"\r\n" "— By ElîxanLoran on 2006-08-25 06:29:14 UTC (2 more)" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ne yek jî" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1361,193 +1389,237 @@ msgstr "Mezinahiyê paceyê" msgid "Configure the sources for installable software and updates" msgstr "Ji bo nivîsbarî û rojanekirinên têne sazkirin çavkaniyan veava bike" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yên ji aliyê komekê ber çav hatiye derbaskirin" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Neazad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdroma Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neazad (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neazad (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdroma Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Bi piştgiriya fermî" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Rojanekirinên Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yên ji aliyê koman ve lê tê nihêrîn (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne-azad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Bi piştgirtiya fermî" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Mafê kopîkrinê yê sînorkirî" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekariyê" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Rojanekirinên Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Rojanekirinên Ewlekariyê" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1578,4 +1650,4 @@ msgstr "" #~ msgstr "Kanal" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/lt.po b/po/lt.po index 4669a9cd..4ba906c9 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"(n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,13 +55,15 @@ msgstr "Po mėnesio" msgid "After %s days" msgstr "Po %s dienų" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Diegiami atnaujinimai" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,13 +124,12 @@ msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Negalima atnaujinti reikiamų metapaketų" msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" @@ -181,6 +184,7 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" @@ -206,6 +210,7 @@ msgid "" msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 #, fuzzy msgid "Can't guess meta-package" @@ -274,6 +279,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Ar sukurti numatytųjų šaltinių sąrašą?" @@ -338,6 +344,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" @@ -413,6 +420,7 @@ msgstr "" "Išvalymo metu iškilo problema. Daugiau informacijos rasite žemiau esančiame " "pranešime. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Perkraunama sistema" @@ -423,6 +431,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -452,7 +461,7 @@ msgid "Invalid package information" msgstr "Netinkama paketo informacija" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -480,6 +489,7 @@ msgstr "Ieškoma pasenusios programinės įrangos" msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -491,7 +501,7 @@ msgid "Fetching is complete" msgstr "Atnaujinimas užbaigtas" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" @@ -502,12 +512,13 @@ msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Atsiunčiamas failas %li iš %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Pritaikomi pakeitimai" @@ -523,8 +534,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -549,20 +561,21 @@ msgstr "Įvyko lemtinga klaida" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Praneškite apie tai kaip klaidą ir prie pranešimo pridėkite „/var/log/dist-" "upgrade.log“ bei „/var/log/dist-upgrade-apt.log“ bylas. Atnaujinimas dabar " "bus nutrauktas.\n" -"Jūsų originalioji „sources.list“ byla buvo išsaugota " -"„/etc/apt/sources.list.distUpgrade“ aplanke." +"Jūsų originalioji „sources.list“ byla buvo išsaugota „/etc/apt/sources.list." +"distUpgrade“ aplanke." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bus pašalintas %s paketas." @@ -570,7 +583,7 @@ msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bus įdiegtas %s naujas paketas." @@ -578,7 +591,7 @@ msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bus atnaujintas %s paketas." @@ -586,7 +599,7 @@ msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -610,8 +623,9 @@ msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" @@ -657,6 +671,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -678,6 +693,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -698,8 +714,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš " -"naujo" +"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš naujo" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -793,6 +809,7 @@ msgstr "Nepavyko atsiųsti laidos informacijos" msgid "Please check your internet connection." msgstr "Patikrinkite savo Interneto ryšį." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nepavyko paleisti atnaujinimo priemonės" @@ -866,12 +883,12 @@ msgstr "" "serverio problema. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" @@ -894,15 +911,18 @@ msgid "" "Please check your Internet connection." msgstr "Nepavyko atsiųsti pakeitimų sąrašo. Patikrinkite Interneto ryšį." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -918,76 +938,79 @@ msgstr "Ubuntu 5.10 atnaujinimai" msgid "Distribution updates" msgstr "_Tęsti atnaujinimą" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versija %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Atsiunčiamas pakeitimų sąrašas..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Patikrinti" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" -#: ../UpdateManager/UpdateManager.py:617 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:633 +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[1] "Rodyti ir įdiegti galimus atnaujinimus" msgstr[2] "Rodyti ir įdiegti galimus atnaujinimus" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Palaukite, tai gali užtrukti." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Atnaujinimas užbaigtas" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Diegiami atnaujinimai" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nauja versija: %s (Dydis: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Versija %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Jūsų distribucija daugiau nebepalaikoma" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -997,16 +1020,17 @@ msgstr "" "Atnaujinkite į naujausią „Ubuntu Linux“ versiją. Daugiau informacijos apie " "atnaujinimą rasite http://www.ubuntu.com ." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1016,19 +1040,23 @@ msgstr "" "pasinaudokite „Synaptic“ arba terminale įvykdykite komandą „sudo apt-get " "install -f“, norėdami ištaisyti šią problemą." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1398,211 +1426,253 @@ msgstr "" "Nustatykite programinės įrangos įdiegimo šaltinius bei atnaujinimus iš " "interneto" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 atnaujinimai" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Ne Laisva (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 „Dapper Drake“" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ne Laisva (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ne Laisva (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 „Dapper Drake“" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 „Breezy Badger“" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficialiai palaikoma" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 „Breezy Badger“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne Laisva (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Apribotos autorinės teisės" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 atnaujinimai" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 „Sarge“ saugumo atnaujinimai" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian „Etch“ (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.lt.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian „Sid“ (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" -"Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" @@ -1626,7 +1696,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atnaujinama į Ubuntu 6.06 LTS" +#~ "Atnaujinama į Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1648,21 +1719,21 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "" #~ "Ieškoma galimų atnaujinimų\n" #~ "\n" -#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " -#~ "spragas bei suteikti naujas funkcijas." +#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti " +#~ "saugumo spragas bei suteikti naujas funkcijas." #~ msgid "Oficially supported" #~ msgstr "Prižiūrima oficialiai" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Kai kuriems atnaujinimams reikia pašalinti programinę įrangą. Naudokitės " #~ "funkcija „Žymėti visus atnaujinimus“ paketų tvarkyklėje „Synaptic­“ arba " -#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų sistema " -#~ "būtų visiškai atnaujinta." +#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų " +#~ "sistema būtų visiškai atnaujinta." #~ msgid "The following updates will be skipped:" #~ msgstr "Šie atnaujinimai nebus įdiegti:" @@ -1740,8 +1811,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #, fuzzy #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Skanuojant Jūsų saugyklos informaciją nebuvo rasta tinkamo atnaujinimo " #~ "įrašo.\n" @@ -1753,17 +1824,19 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "Skyriai:" #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Jūs turite patys įkelti naujausią informaciją apie " -#~ "atnaujinimus\n" +#~ "Jūs turite patys įkelti naujausią informaciją apie atnaujinimus\n" #~ "\n" #~ "Jūsų sistema automatiškai neieško atnaujinimų. Šią elgseną galite " -#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos savybės“." +#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos " +#~ "savybės“." #~ msgid "Reload the latest information about updates" -#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" \ No newline at end of file +#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" diff --git a/po/lv.po b/po/lv.po index 874789b6..5b5b8394 100644 --- a/po/lv.po +++ b/po/lv.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: lp-upd-manager-lv\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 19:12+0000\n" "Last-Translator: mixat \n" "Language-Team: Latvian \n" @@ -58,6 +58,7 @@ msgstr "Pēc viena mēneša" msgid "After %s days" msgstr "Pēc %s dienām" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,6 +66,7 @@ msgstr "%s atjauninājumi" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,6 +76,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Galvenais serveris" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Kļūda aizvācot atslēgu" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Jūsu izvēlēto atslēgu nevar noņemt. Lūdzu, ziņojiet par šo kļūdu." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,6 +163,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nevar aprēķināt atjauninājumu" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -195,6 +199,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -254,6 +259,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -310,6 +316,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -372,6 +379,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -382,6 +390,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -432,6 +441,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,6 +469,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -474,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -497,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -546,8 +559,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -593,6 +607,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +627,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -717,6 +733,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -806,14 +823,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -826,33 +846,35 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versija %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -860,73 +882,79 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nekas" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1250,187 +1278,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiāli atbalstītie" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Sabiedrības uzturētie (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Maksas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Saistītie autortiesību" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Select _All" -#~ msgstr "Izvēlēties _Visu" \ No newline at end of file +#~ msgstr "Izvēlēties _Visu" diff --git a/po/mk.po b/po/mk.po index 354dbda5..f9f85504 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -56,13 +56,15 @@ msgstr "После еден месец" msgid "After %s days" msgstr "После %s дена" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Инсталирам надградби..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,8 +128,7 @@ msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." @@ -167,6 +169,7 @@ msgstr "Не може да се надградат потребните мета msgid "A essential package would have to be removed" msgstr "Важен пакет мора да се отстрани" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да се одреди надградбата" @@ -182,6 +185,7 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при автентикација на некои пакети" @@ -209,6 +213,7 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не може да се погоди мета пакетот" @@ -276,6 +281,7 @@ msgstr "" "изберете „Да“, ќе ги надградам '%s' до '%s' записи.\n" "Ако изберете „не“, надградбата ќе прекине." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" @@ -289,8 +295,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за " -"'%s'.\n" +"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за '%" +"s'.\n" "\n" "Дали треба стандардните записи за '%s' да бидат додадени? Ако изберете „Не“, " "надградувањето ќе прекини." @@ -346,6 +352,7 @@ msgstr "" "на %s. Испразнете го ѓубрето и отстранете ги привремените пакети или " "поранешни инсталации со помош на 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Дали сакате да ја започнете надградбата?" @@ -413,6 +420,7 @@ msgstr "" "Се случи некој проблем при расчистувањето. Видете ја пораката подолу за " "повеќе информации. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -423,6 +431,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -479,6 +488,7 @@ msgstr "Барам застарен софтвер" msgid "System upgrade is complete." msgstr "Надградбата на системот е завршена." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -506,6 +516,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -522,6 +533,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -545,13 +557,14 @@ msgstr "Се случи фатална грешка" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -596,8 +609,9 @@ msgstr "" "За да спречите загуба на податоци, затворете ги сите отворени апликации и " "документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" @@ -644,6 +658,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -665,6 +680,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -777,6 +793,7 @@ msgstr "Не можам да ги преземам белешките за из msgid "Please check your internet connection." msgstr "Ве молам проверете ја Вашата интернет врска." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не можам да ја извршам алатката за надградба" @@ -880,15 +897,18 @@ msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Безбедносни надградби за Debian Stable" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -904,95 +924,99 @@ msgstr "Надградби за Убунту 5.10" msgid "Distribution updates" msgstr "Инсталирам надградби..." +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Верзија %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 -#, fuzzy +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, fuzzy, python-format msgid "Download size: %s" msgstr "Преземам промени" -#: ../UpdateManager/UpdateManager.py:617 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:633 +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Инсталирам надградби..." msgstr[1] "Инсталирам надградби..." msgstr[2] "Инсталирам надградби..." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Ве молам, почекајте, ова може да потрае." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Надградбата е завршена" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Проверувам за надградби..." -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Верзија %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Вашата дистрибуција повеќе не е поддржана" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" "Повеќе нема да добивате безбедносни поправки или критични надградби. " -"Надградете го системот на понова верзија на Ubuntu Linux. Видете на " -"http://www.ubuntu.com за повеќе информации за надградувањето." +"Надградете го системот на понова верзија на Ubuntu Linux. Видете на http://" +"www.ubuntu.com за повеќе информации за надградувањето." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Новото издание на дистрибуцијата, '%s', е достапно" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Индексот на софтвер е расипан" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1002,19 +1026,23 @@ msgstr "" "менаџерот за пакети Синаптик или прво извршете „sudo apt-ge install -f“ во " "терминал за да го надминете овој проблем." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1277,8 +1305,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Внесете ја комплетната линија за APT складиштето за да го " -"додадете\n" +"Внесете ја комплетната линија за APT складиштето за да го додадете\n" "\n" "APT линијата го содржи типот, локацијата и содржината на складиштето за на " "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " @@ -1368,209 +1396,253 @@ msgstr "Големината на прозорецот" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Надградби за Убунту 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Додатен софтвер" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Неслободно (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Неслободно (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Безбедносни надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официјално поддржано" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Безбедносни надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Неслободно (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официјално поддржано" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Безбедносни надградби за Убунту 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Надградби за Убунту 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Надградби за Убунту 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Безбедносни надградби за Debian Stable" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian Testing" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian Non-US (Unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-компатибилен софтвер со неслободни зависности" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-компатибилен софтвер" @@ -1598,8 +1670,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " -#~ "како бубачка." +#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го " +#~ "ова како бубачка." #, fuzzy #~ msgid "Hide details" @@ -1705,13 +1777,13 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ "Внесете ја комплетната линија за APT складиштето за да го " #~ "додадете\n" #~ "\n" -#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за на " -#~ "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " -#~ "можете да најдете детален опис на синтаксата." +#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за " +#~ "на пример \"deb http://ftp.debian.org sarge main\". Во " +#~ "документацијата можете да најдете детален опис на синтаксата." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Додајте нова датотека со клуч во доверливиот привезок. Осигурајте се дека " #~ "сте го добиле клучот преку безбеден канал и дека му верувате на неговиот " @@ -1745,8 +1817,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Отстрани го избраниот клуч од доверливиот привезок." #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Врати ги стандардните клучеви на дистрибуцијата. Ова нема да ги смени " #~ "клучевите инсталирани од корисникот." @@ -1781,8 +1853,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Достапни надградби\n" #~ "\n" @@ -1874,7 +1946,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr[2] "Избравте %s пакети за надградба, со големина од %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избравте %s од %s пакет за надградба, со големина од %s" #~ msgstr[1] "Избравте %s од %s пакети за надградба, со големина од %s" #~ msgstr[2] "Избравте %s од %s пакети за надградба, со големина од %s" @@ -1889,11 +1962,11 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Веќе работи друг менаџер за пакети" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Можете да работите само со една апликација за менаџмент на пакети одеднаш. " -#~ "Ве молам прво исклучете ја оваа апликацијата." +#~ "Можете да работите само со една апликација за менаџмент на пакети " +#~ "одеднаш. Ве молам прво исклучете ја оваа апликацијата." #~ msgid "Updating package list..." #~ msgstr "Ја ажурирам листата на пакети..." @@ -1909,17 +1982,17 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Ве молам надградете до понова верзија на Убунту Линукс. Верзијата на која " -#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни поправки " -#~ "и други технички надградби. Ве молам побарајте информации за надградба на " -#~ "http://www.ubuntulinux.org." +#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни " +#~ "поправки и други технички надградби. Ве молам побарајте информации за " +#~ "надградба на http://www.ubuntulinux.org." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Постои ново издание објавено под кодното име '%s'. Ве молам побарајте ги " #~ "инструкциите за надградба на http://www.ubuntulinux.org." @@ -1928,4 +2001,4 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Никогаш пак не ја покажувај поракава" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." \ No newline at end of file +#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." diff --git a/po/ms.po b/po/ms.po index 29126d96..71e50743 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -55,6 +55,7 @@ msgstr "Selepas satu bulan" msgid "After %s days" msgstr "Selepas %s hari" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,14 +124,13 @@ msgid "Error removing the key" msgstr "Ralat semasa mengeluarkan kekunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Kekunci yang anda pilih tidak dapat di keluarkan. Sila laporkan ini sebagai " "ralat pepijat." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -167,6 +169,7 @@ msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" @@ -182,6 +185,7 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ralat mengesahkan sesetengah pakej" @@ -209,6 +213,7 @@ msgstr "" "Pakej yang diperlukan tidak dapat dipasang. Sila laporkan ini sebagai ralat " "pepijat. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." @@ -279,24 +284,25 @@ msgstr "" "mirror telah lapuk.\n" "\n" "Adakah anda tetap mahu menulis semula fail 'Sources.list' anda? Jika anda " -"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada " -"'%s'.\n" +"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada '%" +"s'.\n" "Jika anda memilih 'tidak' kemaskinian akan dibatalkan." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:267 -#, fuzzy +#, fuzzy, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas " -"'sources.list' anda.\n" +"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas 'sources." +"list' anda.\n" "\n" "Adakah kemasukan default untuk '%s' perlu ditambah? Jika anda memilih " "'Tidak' kemaskinian akan dibatalkan." @@ -357,6 +363,7 @@ msgstr "" "cakera keras %s anda. Kosong dan padamkan pakej-pakej sementara dari " "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" @@ -429,6 +436,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -439,6 +447,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -492,6 +501,7 @@ msgstr "Mencari perisian yang lapuk" msgid "System upgrade is complete." msgstr "Naiktaraf sistem sempurna." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,6 +529,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -534,6 +545,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -557,15 +569,16 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" @@ -601,11 +614,11 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." +msgstr "Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -651,6 +664,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -670,6 +684,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -776,6 +791,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -865,14 +881,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -885,106 +904,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1314,188 +1341,233 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Some software no longer officially supported" -#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." \ No newline at end of file +#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." diff --git a/po/nb.po b/po/nb.po index a2e34ea5..9d1ae679 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -55,13 +55,15 @@ msgstr "Etter en måned" msgid "After %s days" msgstr "Etter %s dager" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Installerer oppdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,9 +74,10 @@ msgstr "" msgid "Main server" msgstr "Hovedtjener" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 -#, fuzzy +#, fuzzy, python-format msgid "Server for %s" msgstr "Tjener for %s" @@ -128,13 +131,11 @@ msgid "Error removing the key" msgstr "Kunne ikke fjerne nøkkelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -173,6 +174,7 @@ msgstr "Kan ikke oppgradere nødvendige meta-pakker" msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" @@ -188,6 +190,7 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" @@ -214,6 +217,7 @@ msgid "" msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" @@ -287,6 +291,7 @@ msgstr "" "alle forekomster av '%s' endres til '%s'.\n" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" @@ -360,6 +365,7 @@ msgstr "" "papirkurven og fjern midlertidige pakker fra tidligere installasjoner ved å " "bruke 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" @@ -435,6 +441,7 @@ msgstr "" "Et problem oppstod under opprydningen. Vennligst se meldingen under for mer " "informasjon. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" @@ -445,6 +452,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -474,7 +482,7 @@ msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -502,6 +510,7 @@ msgstr "Søker etter utdatert programvare" msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -513,23 +522,24 @@ msgid "Fetching is complete" msgstr "Oppdateringen er fullført" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Laster ned fil %li av %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Rundt %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Laster ned fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Lagrer endringer" @@ -545,8 +555,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -571,39 +582,40 @@ msgstr "En uopprettelig feil oppsto" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og " -"/var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" +"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og /" +"var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" "Din orginale sources.list ble lagret i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -627,8 +639,9 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" @@ -654,12 +667,12 @@ msgid "Upgrade %s" msgstr "Oppgradér %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Rundt %li dager, %li timer og %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Rundt %li timer og %li minutter gjenstår" @@ -674,6 +687,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -695,6 +709,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -808,6 +823,7 @@ msgstr "Kunne ikke laste ned utgivelsesnotatene" msgid "Please check your internet connection." msgstr "Vennligst kontrollér internettforbindelsen." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke kjøre oppgraderingsverktøyet" @@ -883,12 +899,12 @@ msgstr "" "nettverket eller med tjeneren. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laster ned filen %li av %li med %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Laster ned filen %li av %li med %s/s" @@ -913,16 +929,19 @@ msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 #, fuzzy msgid "Recommended updates" msgstr "Anbefalte oppdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -938,94 +957,98 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Gjenoppta oppgradering" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Installerer oppdateringer" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versjon %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Laster ned listen med endringer..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "Sjekk" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Nedlastingsstørrelse: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installere %s oppdatering" msgstr[1] "Du kan installere %s oppdateringer" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Vennligst vent, dette kan ta litt tid." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Oppdateringen er fullført" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Sjekker for tilgjengelige oppdateringer" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny versjon: %s (Størrelse: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Din distribusjon er ikke lenger støttet" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" "Du vil ikke lenger motta flere sikkerhetsmessige eller kritiske " -"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se " -"http://www.ubuntu.com for mer informasjon om oppgradering." +"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." +"ubuntu.com for mer informasjon om oppgradering." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1035,19 +1058,23 @@ msgstr "" "pakkehåndteringsprogrammet \"Synaptic\" eller kjør kommandoen \"sudo apt-get " "install -f\" i en terminal for å løse denne situasjonen." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1418,206 +1445,250 @@ msgstr "Vindusstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Sett opp programvarekanaler og oppdateringer" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Oppdateringer" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidratt programvare" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Oppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offisielt støttet" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Oppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Noe programvare er ikke lenger offisielt støttet" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhetsoppdateringer" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" @@ -1626,7 +1697,6 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "US eksport begrenset programvare" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Laster ned fil %li av %li ved ukjent hastighet" @@ -1650,7 +1720,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Oppgraderer til Ubuntu 6.06 LTS" +#~ "Oppgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1671,26 +1742,25 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Analyserer systemet\n" #~ "\n" -#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer og " -#~ "gir deg ny funksjonalitet." +#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer " +#~ "og gir deg ny funksjonalitet." #~ msgid "Oficially supported" #~ msgstr "Offisielt støttet" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk funksjonen " -#~ "\"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller " -#~ "kjør kommandoen \"sudo apt-get dist-upgrade\" i en terminal for å oppgradere " -#~ "systemet fullstendig." +#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk " +#~ "funksjonen \"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet " +#~ "\"Synaptic\" eller kjør kommandoen \"sudo apt-get dist-upgrade\" i en " +#~ "terminal for å oppgradere systemet fullstendig." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende pakker vil ikke bli oppgradert:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Rundt %li sekunder gjenstår" @@ -1766,8 +1836,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Backports for Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Fant ikke noen gyldig oppføring for oppgradering ved lesing av " #~ "arkivinformasjon.\n" @@ -1779,8 +1849,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du gjøre " -#~ "dette nå?" +#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du " +#~ "gjøre dette nå?" #~ msgid "Sections" #~ msgstr "Seksjoner" @@ -1832,13 +1902,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Autentiseringsnøkler\n" #~ "\n" -#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. Nøkler " -#~ "gjør det mulig å kontrollere integriteten til programvare som blir lastet " -#~ "ned." +#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. " +#~ "Nøkler gjør det mulig å kontrollere integriteten til programvare som blir " +#~ "lastet ned." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Legg til en ny nøkkelfil til den sikre nøkkelringen. Vær sikker på at du " #~ "mottok nøkkelen over en sikker kanal og at du stoler på eieren. " @@ -1869,8 +1939,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Maksimum størrelse i MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "Gjenoppret nøklene som kom med distri" #~ msgid "Set _maximum size for the package cache" @@ -1900,13 +1970,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Tilgjengelige oppdateringer\n" #~ "\n" -#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke på " -#~ "«Installer»-knappen." +#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke " +#~ "på «Installer»-knappen." #~ msgid "Cancel downloading the changelog" #~ msgstr "Avbryt nedlasting av endringslogg" @@ -1982,7 +2052,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr[1] "Du har valgt alle de %s oppdaterte pakkene, total størrelse %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Du har valgt %s av %s oppdaterte pakker, størrelse %s" #~ msgstr[1] "Du har valgt %s av de %s oppdaterte pakkene, total størrelse %s" @@ -1990,8 +2061,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Oppdateringene blir tilført." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Du kan bare kjøre et pakkehåndteringsprogram samtidig. Lukk det andre " #~ "programmet først." @@ -2007,19 +2078,19 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får ikke " -#~ "sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. Se " -#~ "http://www.ubuntulinux.org for informasjon om oppgradering." +#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får " +#~ "ikke sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. " +#~ "Se http://www.ubuntulinux.org for informasjon om oppgradering." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "En ny versjon med kodenavnet «%s» er tilgjengelig. Se http://www. " #~ "ubuntulinux.org/ for instruksjoner om oppgradering." @@ -2052,8 +2123,9 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "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." \ No newline at end of file +#~ "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." diff --git a/po/ne.po b/po/ne.po index ac095915..57911ef0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -57,13 +57,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,11 +128,8 @@ msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -165,6 +165,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -176,10 +177,9 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,10 +201,9 @@ msgstr "" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस " +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -264,6 +263,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -321,6 +321,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -383,6 +384,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -393,6 +395,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -410,9 +413,7 @@ 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/dist-" "upgrade/ in the bugreport." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -449,6 +450,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -476,6 +478,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -492,6 +495,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -515,13 +519,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -561,8 +566,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" @@ -609,6 +615,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,6 +635,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -735,6 +743,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -743,9 +752,7 @@ msgstr "" #, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #: ../UpdateManager/DistUpgradeFetcher.py:171 #, fuzzy @@ -830,18 +837,20 @@ msgstr "युबन्टुको एउटा नयाँ विमोचन msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "" -"परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -857,110 +866,118 @@ msgstr "युबन्टु ५.०४ अद्यावधिकहरु" msgid "Distribution updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "संस्करण %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 -#, fuzzy +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, fuzzy, python-format msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../UpdateManager/UpdateManager.py:617 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:633 +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" msgstr[1] "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "संस्करण %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "तपाईंको वितरण समर्थित छैन" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1221,12 +1238,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट " -"गर्नुहोस\n" +"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस\n" "\n" -"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि " -"\"deb http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य " -"संरचनाको एउटा विस्तृत विवरण पाउन सक्नुहुन्छ" +"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि \"deb " +"http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य संरचनाको एउटा " +"विस्तृत विवरण पाउन सक्नुहुन्छ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1310,211 +1326,256 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "योगदान गरिएको सफ्टवेयर" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "नन-फ्री (बहुभर्स)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "कार्यालय बाट समर्थित" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "कार्यालय बाट समर्थित" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "निषेधित प्रतिलिपि अधिकार" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1546,8 +1607,7 @@ msgstr "" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -#~ "दिनुहोस" +#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #, fuzzy #~ msgid "Hide details" @@ -1603,11 +1663,11 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप " -#~ "प्रति भण्डारण गरिएको छ. बचत गर्नुहोस. \n" +#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति " +#~ "भण्डारण गरिएको छ. बचत गर्नुहोस. \n" #~ "\n" -#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची " -#~ "फेरि लोड गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" +#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड " +#~ "गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" #, fuzzy #~ msgid "Sections" @@ -1661,18 +1721,16 @@ msgstr "" #~ msgstr "" #~ "प्रमाणीकरण कुञ्जिहरु\n" #~ "\n" -#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले " -#~ "डाउनलोड गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले " -#~ "संभव पार्दछ" +#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले डाउनलोड " +#~ "गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले संभव पार्दछ" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त " -#~ "हुनुहोस कि तपाईंले एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं " -#~ "मालिकलाइ विश्वास गर्नुहुन्छ. " +#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त हुनुहोस कि तपाईंले " +#~ "एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं मालिकलाइ विश्वास गर्नुहुन्छ. " #, fuzzy #~ msgid "Add repository..." @@ -1701,11 +1759,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले " -#~ "प्रयोगकर्ता स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" +#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले प्रयोगकर्ता " +#~ "स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" #~ msgid "Set _maximum size for the package cache" #~ msgstr "प्याकेज क्यासको लागि अधिकतम आकार सेट गर्नुहोस" @@ -1732,13 +1790,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "उपलब्ध अद्यावधिकहरु\n" #~ "\n" -#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना " -#~ "बटन प्रयोग गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" +#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना बटन प्रयोग " +#~ "गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" #~ msgid "Cancel downloading the changelog" #~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस" @@ -1785,11 +1843,11 @@ msgstr "" #~ msgstr "स्तरवृद्धिहरु लागु हुँदैछन" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन " -#~ "सक्नुहुन्छ.कृपया पहिला यो अन्य अनुप्रयोग बन्द गर्नुहोस" +#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन सक्नुहुन्छ.कृपया पहिला " +#~ "यो अन्य अनुप्रयोग बन्द गर्नुहोस" #~ msgid "Updating package list..." #~ msgstr "प्याकेज सुची स्तरवृद्धि गर्दै" @@ -1803,20 +1861,19 @@ msgstr "" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले " -#~ "चलाइरहेको संस्करण ले सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त " -#~ "गर्नेछैन. कृपया स्तरवृद्धि जानकारी को लागि http://www.ubuntulinux.org " -#~ "हेर्नुहोस" +#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले चलाइरहेको संस्करण ले " +#~ "सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त गर्नेछैन. कृपया स्तरवृद्धि जानकारी को " +#~ "लागि http://www.ubuntulinux.org हेर्नुहोस" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को " -#~ "लागि://www.ubuntulinux.org/ हेर्नुहोस." +#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को लागि://" +#~ "www.ubuntulinux.org/ हेर्नुहोस." #~ msgid "Never show this message again" #~ msgstr "यो संदेश फेरि कहिले पनि नदेखाउनुहोस" @@ -1837,8 +1894,8 @@ msgstr "" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया " -#~ "स्थिति ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" +#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया स्थिति " +#~ "ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "सबै प्याकेजहरु स्तरवृद्धि गर्न संभव छैन" @@ -1846,12 +1903,12 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै " -#~ "प्याकेजहरुको स्थापन र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि " -#~ "साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग " -#~ "गर्नुहोस" +#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै प्याकेजहरुको स्थापन " +#~ "र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" " +#~ "अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग गर्नुहोस" #~ msgid "Initializing and getting list of updates..." -#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" \ No newline at end of file +#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" diff --git a/po/nl.po b/po/nl.po index b9ef144a..056cadef 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -54,13 +54,15 @@ msgstr "Na één maand" msgid "After %s days" msgstr "Na %s dagen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hoofdserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,14 +127,13 @@ msgid "Error removing the key" msgstr "Fout bij het verwijderen van de sleutel" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "De door u geselecteerde sleutel kon niet verwijderd worden. Gelieve dit als " "fout te melden." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -170,6 +172,7 @@ msgstr "Kan de vereiste meta-pakketten niet upgraden" msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" @@ -185,6 +188,7 @@ msgstr "" "Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. " "Gelieve dit als fout te rapporteren." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" @@ -213,6 +217,7 @@ msgstr "" "Het was niet mogelijk om een vereist pakket te installeren. Gelieve dit als " "fout te rapporteren. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" @@ -239,7 +244,7 @@ msgid "Failed to add the CD" msgstr "Ophalen is mislukt" #: ../DistUpgrade/DistUpgradeControler.py:75 -#, fuzzy +#, fuzzy, python-format 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" @@ -293,6 +298,7 @@ msgstr "" "zal overal '%s' worden vervangen door '%s'.\n" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" @@ -365,6 +371,7 @@ msgstr "" "vrijgemaakt. Leeg uw prullenbak en verwijder de tijdelijke pakketten van " "vorige installaties via 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" @@ -441,6 +448,7 @@ msgstr "" "Tijdens het opruimen deed zich een probleem voor. Zie onderstaand bericht " "voor meer informatie. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" @@ -451,6 +459,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -480,7 +489,7 @@ msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -508,6 +517,7 @@ msgstr "Zoeken naar overbodige software" msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,23 +529,24 @@ msgid "Fetching is complete" msgstr "De update is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Ongeveer %li minuten resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Downloaden van bestand %li uit %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Wijzigingen worden doorgevoerd" @@ -551,8 +562,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -577,41 +589,42 @@ msgstr "Er is een ernstige fout ontstaan" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapporteer dit als fout en voeg de bestanden /var/log/dist-upgrade.log en " -"/var/log/dist-upgrade-apt.log bij in uw foutrapport. De upgrade zal nu " +"Rapporteer dit als fout en voeg de bestanden /var/log/dist-upgrade.log en /" +"var/log/dist-upgrade-apt.log bij in uw foutrapport. De upgrade zal nu " "worden afgebroken.\n" -"Uw oorspronkelijke sources.list is opgeslagen in " -"/etc/apt/sources.list.distUpgrade." +"Uw oorspronkelijke sources.list is opgeslagen in /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Er zal %s pakket verwijderd worden." msgstr[1] "Er zullen %s pakketten verwijderd worden." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Er zal %s nieuw pakket geïnstalleerd worden." msgstr[1] "Er zullen %s nieuwe pakketten geïnstalleerd worden." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakket zal een upgrade krijgen" msgstr[1] "%s pakketten zullen een upgrade krijgen." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -636,8 +649,9 @@ msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" @@ -663,12 +677,12 @@ msgid "Upgrade %s" msgstr "%s upgraden" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Ongeveer %li dagen %li uur en %li minuten resterend" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Ongeveer %li uur en %li minuten resterend" @@ -683,6 +697,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -703,6 +718,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -815,6 +831,7 @@ msgstr "Kon de versie-informatie niet downloaden" msgid "Please check your internet connection." msgstr "Controleer uw internetverbinding." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kon het upgrade-programma niet uitvoeren" @@ -889,12 +906,12 @@ msgstr "" "met het netwerk of de server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Downloaden van bestand %li uit %li met %s/s" @@ -923,15 +940,18 @@ msgstr "" "Kon de lijst met wijzigingen niet downloaden. Controleer uw " "internetverbinding." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 veiligheidsupdates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aanbevolen updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -947,95 +967,99 @@ msgstr "Ubuntu 5.10 backports" msgid "Distribution updates" msgstr "_Upgrade hervatten" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versie %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Het overzicht van de wijzigingen wordt gedownload..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 #, fuzzy msgid "_Uncheck All" msgstr "Alles deselecteren" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Controleren" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Downloadgrootte: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "U kunt %s update installeren" msgstr[1] "U kunt %s updates installeren" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Een ogenblik geduld, dit kan even duren." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "De update is voltooid" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Up_dates installeren" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nieuwe versie: %s (Grootte: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Versie %s:" -#: ../UpdateManager/UpdateManager.py:816 -#, fuzzy +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 +#, fuzzy, python-format msgid "(Size: %s)" msgstr "(Grootte: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Uw distributie wordt niet langer ondersteund" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" "U zult niet langer veiligheidsupdates of kritieke updates krijgen. Voer een " -"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie " -"http://www.ubuntu.com voor meer informatie over upgraden." +"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." +"com voor meer informatie over upgraden." -#: ../UpdateManager/UpdateManager.py:847 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:863 +#, fuzzy, python-format msgid "New distribution release '%s' is available" msgstr "De nieuwe Ubuntu-versie '%s' is beschikbaar" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Software-index is beschadigd" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1045,19 +1069,23 @@ msgstr "" "Gebruik het pakkettenbeheerprogramma \"Synaptic\" of gebruik \"sudo apt-get " "install -f\" in een terminalvenster om eerst dit probleem te verhelpen." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1332,8 +1360,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Voer de volledige APT-regel in van het kanaal dat u wilt " -"toevoegen\n" +"Voer de volledige APT-regel in van het kanaal dat u wilt toevoegen\n" "\n" "De APT-regel bevat het type, de locatie en de componenten van een kanaal, " "bijvoorbeeld: \"deb http://ftp.debian.org sarge main\"." @@ -1428,214 +1456,257 @@ msgstr "De venstergrootte" msgid "Configure the sources for installable software and updates" msgstr "Software-kanalen en internet-updates configureren" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Door de gemeenschap beheerd (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 #, fuzzy msgid "Proprietary drivers for devices" msgstr "Proprietaire drivers voor apparaten" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Niet-vrij (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom met Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Door de gemeenschap beheerd (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Door de gemeenschap beheerd (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Door de gemeenschap beheerd (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Niet-vrij (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 #, fuzzy msgid "Proprietary drivers for devices " msgstr "Proprietaire drivers voor apparaten " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Niet-vrij (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom met Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officieel ondersteund" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Door de gemeenschap beheerd (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Niet-vrij (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom met Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Bepaalde software wordt niet meer officieel ondersteund" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Beperkte auteursrechten" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" veiligheidsupdates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (onstabiel)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibel met DFSG, maar met niet-vrije afhankelijkheden" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" @@ -1659,8 +1730,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Bezig met upgraden naar Ubuntu 6.06 " -#~ "LTS" +#~ "Bezig met upgraden naar Ubuntu " +#~ "6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1681,8 +1752,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "" #~ "Uw system wordt gecontroleerd\n" #~ "\n" -#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " -#~ "nieuwe mogelijkheden." +#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en " +#~ "leveren nieuwe mogelijkheden." #, fuzzy #~ msgid "Oficially supported" @@ -1690,18 +1761,18 @@ msgstr "Software niet compatibel met DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Enkele updates vereisen dat andere softwarepaketten verwijderd worden. " -#~ "Gebruik de functie \"Pakketten bijwerken\" van het pakkettenbeheerprogramma " -#~ "\"Synaptic\" of gebruik: \"sudo apt-get dist-upgrade\" in een " -#~ "terminalvenster om uw systeem compleet bij te werken met de laatste updates." +#~ "Gebruik de functie \"Pakketten bijwerken\" van het " +#~ "pakkettenbeheerprogramma \"Synaptic\" of gebruik: \"sudo apt-get dist-" +#~ "upgrade\" in een terminalvenster om uw systeem compleet bij te werken met " +#~ "de laatste updates." #~ msgid "The following updates will be skipped:" #~ msgstr "De volgende updates worden overgeslagen:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ongeveer %li seconden resterend" @@ -1765,7 +1836,7 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Ubuntu 6.06 LTS \n" +#~ "Ubuntu 6.06 LTS\r\n" #~ "Ubuntu 6.06 updates" #~ msgid "Ubuntu 6.06 LTS Security Updates" @@ -1775,4 +1846,4 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "Ubuntu 6.06 LTS updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS backports" diff --git a/po/nn.po b/po/nn.po index cbe14d0e..b9646447 100644 --- a/po/nn.po +++ b/po/nn.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-06-19 15:52+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" @@ -55,6 +55,7 @@ msgstr "Etter ein månad" msgid "After %s days" msgstr "Etter %s dagar" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Kunne ikkje fjerne nykjelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Nykjelen du valde kan ikkje fjernast. Ver venleg å rapportere denne feilen." @@ -164,6 +166,7 @@ msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" msgid "A essential package would have to be removed" msgstr "Ein naudsynt pakke vil måtte fjernast" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikkje forberede oppgraderinga" @@ -176,6 +179,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikkje autentisere somme pakkar" @@ -203,6 +207,7 @@ msgstr "" "Ein naudsynt pakke kunne ikkje installerast. Ver venleg og rapporter denne " "feilen. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikkje gjette på meta-pakke" @@ -269,6 +274,7 @@ msgstr "" "vil det oppdatere alle forekomstar av '%s' til '%s'.\n" "Om du veljer \"Nei\" vil oppgraderinga verte avbroten." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vil du opprette standardkjelder?" @@ -281,8 +287,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av " -"\"sources.list\"-fila di.\n" +"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av \"sources." +"list\"-fila di.\n" "\n" "Vil du legge till standard oppføring for \"%s\"? Om du vel \"Nei\" vil " "oppdateringa verte avbroten." @@ -334,6 +340,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -396,6 +403,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -406,6 +414,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -456,6 +465,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -483,6 +493,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -498,6 +509,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -521,13 +533,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -567,8 +580,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -614,6 +628,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -633,6 +648,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -738,6 +754,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -827,14 +844,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -847,106 +867,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1268,184 +1296,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/no.po b/po/no.po index fef7836f..78f578db 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:04+0200\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" diff --git a/po/oc.po b/po/oc.po index c290bdd4..19b234ac 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-09-30 00:43+0000\n" -"Last-Translator: Yannig MARCHEGAY (Kokoyaya) " -"\n" +"Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,6 +56,7 @@ msgstr "Un mes aprèp" msgid "After %s days" msgstr "%s jorns aprèp" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s mesas a jorn" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,13 +126,12 @@ msgid "Error removing the key" msgstr "Error al moment de suprimir la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +167,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" @@ -177,6 +180,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -199,6 +203,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -258,6 +263,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,6 +320,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" @@ -376,6 +383,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -386,6 +394,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -436,6 +445,7 @@ msgstr "Recèrca de logicials obsolets" msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -463,6 +473,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicacion dels cambis" @@ -478,6 +489,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -501,13 +513,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -530,7 +543,7 @@ msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -550,8 +563,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -597,6 +611,7 @@ msgid "%li seconds" msgstr "%li segondas" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -616,6 +631,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -722,6 +738,7 @@ msgstr "Impossible de telecargar las informacions de version" msgid "Please check your internet connection." msgstr "Verificatz vòstra connexion internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible aviar l'esplech de mesa a jorn" @@ -811,14 +828,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -833,109 +853,117 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" msgid "Distribution updates" msgstr "Mesas a jorn per internet" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Mesas a jorn per internet" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Version %s : \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Verificar" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Talha de la descarga : %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Podètz installar %s mesa a jorn" msgstr[1] "Podètz installar %s mesas a jorn" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "La mesa a jorn es terminada" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Mesas a jorn per internet" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Version %s :" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Talha : %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1270,200 +1298,244 @@ msgstr "La talha de la fenèstra" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Pas liure (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM que conten Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Pas liure (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pas liure (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM que conten Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM que conten Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pas liure (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mesas a jorn de securitat per Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (en tèst)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1489,4 +1561,4 @@ msgstr "" #~ msgstr "_Personalisar" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS" diff --git a/po/pa.po b/po/pa.po index 92afc9b8..7b3574df 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -56,13 +56,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,6 +162,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -172,6 +175,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -194,6 +198,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -253,6 +258,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -309,6 +315,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -371,6 +378,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -381,6 +389,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -432,6 +441,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,6 +469,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -474,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -497,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -543,8 +556,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -590,6 +604,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -609,6 +624,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,6 +734,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -809,15 +826,18 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -832,108 +852,116 @@ msgstr "" msgid "Distribution updates" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:633 +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." msgstr[1] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1271,184 +1299,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1501,4 +1574,4 @@ msgstr "" #, fuzzy #~ msgid "Sections:" -#~ msgstr "ਵੇਰਵਾ" \ No newline at end of file +#~ msgstr "ਵੇਰਵਾ" diff --git a/po/pl.po b/po/pl.po index bdff1fad..cbd79878 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-09-02 19:44+0000\n" "Last-Translator: White Eagle \n" "Language-Team: Polish \n" @@ -55,6 +55,7 @@ msgstr "Po miesiącu" msgid "After %s days" msgstr "Po %s dniach" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s aktualizacji" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serwer główny" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -164,6 +166,7 @@ msgstr "Nie można zaktualizować wymaganych meta-pakietów" msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" @@ -180,6 +183,7 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" @@ -203,9 +207,9 @@ msgstr "Nie można zainstalować \"%s\"" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" @@ -282,10 +286,11 @@ msgstr "" "lustrzanego dla aktualizacji. To może się zdarzyć, jeśli używasz wewnętrzny " "serwer lustrzany lub informacje o serwerze są nieaktualne.\n" "\n" -"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz " -"\"Tak\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" +"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz \"Tak" +"\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" @@ -298,8 +303,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla " -"\"%s\".\n" +"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla \"%s" +"\".\n" "\n" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." @@ -327,8 +332,8 @@ msgid "" "synaptic." msgstr "" "Niektóre kanały osób trzecich w pliku sources.list zostały wyłączone. Możesz " -"ponownie je włączyć po aktualizacji używając narzędzia \"software-" -"properties\" lub programu Synaptic." +"ponownie je włączyć po aktualizacji używając narzędzia \"software-properties" +"\" lub programu Synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -353,10 +358,11 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na " -"%s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji " -"używając \"sudo apt-get clean\"." +"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na %" +"s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji używając " +"\"sudo apt-get clean\"." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" @@ -428,6 +434,7 @@ msgstr "" "Wystąpił problem podczas oczyszczania. Więcej informacji znajduje się w " "poniższych wiadomościach. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" @@ -438,6 +445,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -473,8 +481,8 @@ msgid "" msgstr "" "Po aktualizacji informacji o pakietach niezbędny pakiet \"%s\" nie może " "zostać odnaleziony.\n" -"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-" -"manager\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." +"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-manager" +"\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -492,6 +500,7 @@ msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,6 +528,7 @@ msgstr "Pobieranie pliku %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Zatwierdzanie zmian" @@ -536,6 +546,7 @@ msgstr "" "Aktualizacja zostaje przerwana. Prosimy o wysłanie raportu o błędzie pakietu " "'update-manager' dołączając pliki w /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -561,18 +572,19 @@ msgstr "Wystąpił błąd krytyczny" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosimy o wysłanie raportu o tym błędzie i dołączeniu plików /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log w swoim raporcie. " "Aktualizacja zostaje przerwana.\n" -"Pierwotny plik sources.list został zapisany w " -"/etc/apt/sources.list.distUpgrade." +"Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -622,8 +634,9 @@ msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" @@ -669,6 +682,7 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -690,6 +704,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -800,6 +815,7 @@ msgstr "Pobranie informacji o wydaniu było niemożliwe" msgid "Please check your internet connection." msgstr "Proszę sprawdzić swoje połączenie internetowe." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nie można było uruchomić narzędzia aktualizacji" @@ -833,8 +849,7 @@ msgstr "Pobranie nie powiodło się" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " +msgstr "Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -896,14 +911,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Ważne aktualizacje bezpieczeństwa" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aktualizacje polecane" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aktualizacje proponowane" @@ -916,33 +934,35 @@ msgstr "Backporty" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Inne aktualizacje" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Wersja %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "Odznacz wszystkie" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "Zaznacz wszystkie" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Rozmiar do pobrania: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -950,38 +970,39 @@ msgstr[0] "Ilość dostępnych aktualizacji: %s" msgstr[1] "Ilość dostępnych aktualizacji: %s" msgstr[2] "Ilość dostępnych aktualizacji: %s" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Proszę czekać, to może chwilę potrwać." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Aktualizacja została ukończona." -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Sprawdzanie dostępności aktualizacji" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Wersja %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Rozmiar: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Twoja dystrybucja nie jest już wspierana" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -991,16 +1012,17 @@ msgstr "" "krytycznych aktualizacji. Zaktualizuj do nowszej wersji Ubuntu Linux. " "Odwiedź http://www.ubuntu.com po więcej informacji." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Nowe wydanie dystrybucji \"%s\" jest dostępne" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1010,19 +1032,23 @@ msgstr "" "Proszę użyć \"Synaptic Menedżer Pakietów\" lub wydać polecenie \"sudo apt-" "get install -f\" w terminalu, aby naprawić ten problem." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Brak" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1042,8 +1068,7 @@ msgstr "Utrzymuj system w pełni zaktualizowany" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"Nie wszystkie aktualizacje mogą zostać zainstalowane" +msgstr "Nie wszystkie aktualizacje mogą zostać zainstalowane" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1379,190 +1404,233 @@ msgstr "Rozmiar okna" msgid "Configure the sources for installable software and updates" msgstr "Konfiguruj źródła pakietów oprogramowania i aktualizacji" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Pod opieką społeczeństwa" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Własnościowe sterowniki dla urządzeń" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ograniczone oprogramowanie" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM z Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Obsługiwane przez społeczność (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Oprogramowanie Open Source pod opieką społeczeństwa" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Sterowniki nie-wolnodostępne" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Własnościowe sterowniki dla urządzeń " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Oprogramowanie nie-wolnodostępne (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM z Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aktualizacje backportowane" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM z Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Wspierane oficjalnie" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aktualizacje dla Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Aktualizacje dla Ubuntu 5.04 (backporty)" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·4.10·\"Warty·Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Utrzymywane przez społeczność (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM z Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Już nieobsługiwane" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "O ograniczonych prawach kopiowania" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aktualizacje dla Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Aktualizacje dla Ubuntu 4.10 (backporty)" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Debiana 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (wersja testowa)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (wersja unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1573,21 +1641,22 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" -#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " -#~ "zgłosić to jako błąd. " +#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. " +#~ "Proszę zgłosić to jako błąd. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop lub " -#~ "edubuntu-desktop. Nie jest możliwe określenie używanej wersji Ubuntu.\n" +#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop " +#~ "lub edubuntu-desktop. Nie jest możliwe określenie używanej wersji " +#~ "Ubuntu.\n" #~ " Przed kontynuowaniem proszę zainstalować jeden z powyższych pakietów." #~ msgid "" @@ -1600,8 +1669,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "lub za pomocą Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" #~ "Aktualizacja została przerwana. System może znajdować się w stanie " #~ "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" @@ -1623,7 +1692,6 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " #~ "zasugerowane ich usunięcie. " -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1633,37 +1701,30 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "być odnaleziony.\n" #~ "To wskazuje na poważny problem, proszę zgłosić ten błąd." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Około %li dni %li godzin %li minut pozostało" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Około %li godzin %li minut pozostało" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Około %li minut pozostało" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Około %li sekund pozostało" #~ msgid "Download is complete" #~ msgstr "Pobieranie zostało zakończone." -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Pobieranie pliku %li z %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Aktualizacja została przerwana. Proszę zgłosić ten błąd." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1672,42 +1733,40 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log oraz " -#~ "~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" -#~ "Pierwotny plik sources.list został zapisany w " -#~ "/etc/apt/sources.list.distUpgrade." +#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log " +#~ "oraz ~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" +#~ "Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pakiet zostanie usunięty." #~ msgstr[1] "%s pakiety zostaną usunięte." #~ msgstr[2] "%s pakietów zostanie usuniętych." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nowy pakiet zostanie zainstalowany." #~ msgstr[1] "%s nowe pakiety zostaną zainstalowane." #~ msgstr[2] "%s nowy pakietów zostanie zainstalowane." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pakiet zostanie zaktualizowany." #~ msgstr[1] "%s pakiety zostaną zaktualizowane." #~ msgstr[2] "%s pakietów zostanie zaktualizowanych." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Konieczne pobranie ogółem %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" #~ "Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." @@ -1729,17 +1788,15 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacja Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy lub " -#~ "z serwerem. " +#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy " +#~ "lub z serwerem. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" @@ -1773,13 +1830,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Niektóre aktualizacje wymagają dalszego usuwania oprogramowania. Aby " -#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji\" " -#~ "w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade\" w " -#~ "terminalu." +#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji" +#~ "\" w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade" +#~ "\" w terminalu." #~ msgid "The following updates will be skipped:" #~ msgstr "Następujące pakiety zostaną pominięte:" @@ -1793,17 +1850,18 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Select _All" #~ msgstr "Zaznacz w_szystkie" -#, python-format #~ msgid "From version %s to %s" #~ msgstr "Z wersji %s do %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" +#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" #~ "\n" #~ "System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie " #~ "można to zmienić w \"System\" -> \"Administracja\" -> \"Software " @@ -1817,8 +1875,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Sprawdzanie systemu\n" #~ "\n" -#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " -#~ "bezpieczeństwa i dostarczyć nowe funkcje." +#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe " +#~ "punkty bezpieczeństwa i dostarczyć nowe funkcje." #~ msgid "Cancel _Download" #~ msgstr "_Przerwij pobieranie" @@ -1826,8 +1884,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1839,31 +1897,33 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Aby kontynuować potrzebne jest działające połączenie internetowe." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the source that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" +#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" #~ "\n" -#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo \"deb " -#~ "http://ftp.debian.org sarge main\"." +#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo " +#~ "\"deb http://ftp.debian.org sarge main\"." #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" -#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone to " -#~ "koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na ukrycie " -#~ "pokazywanego w tym przypadku.powiadamiania." +#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone " +#~ "to koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na " +#~ "ukrycie pokazywanego w tym przypadku.powiadamiania." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych aktualizacji" +#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych " +#~ "aktualizacji" #~ msgid "" #~ "OpenSource software that is officially supported by Canonical Ltd. (main)" @@ -1876,7 +1936,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Proprietary drivers for devices (restricted) " #~ msgstr "Własnościowe sterowniki dla urządzeń (restricted) " -#~ msgid "Software that is restricted by copyright or legal issues (multiverse)" +#~ msgid "" +#~ "Software that is restricted by copyright or legal issues (multiverse)" #~ msgstr "" #~ "Oprogramowanie ograniczone prawami kopiowania lub wątpliowściami prawnymi " #~ "(multiverse)" @@ -1953,8 +2014,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje dla Ubuntu 6.06 LTS (Backporty)" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Podczas skanowania informacji o repozytoriach nie odnaleziono poprawnych " #~ "wpisów potrzebnych do aktualizacji.\n" @@ -2021,13 +2082,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " -#~ "przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " +#~ "klikając przycisk Instaluj." #~ msgid "Repository" #~ msgstr "Repozytorium" @@ -2047,20 +2108,21 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Klucze autentykacyjne\n" #~ "\n" -#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. Klucz " -#~ "pozwala na sprawdzenie integralności oprogramowania które jest pobierane z " -#~ "sieci." +#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. " +#~ "Klucz pozwala na sprawdzenie integralności oprogramowania które jest " +#~ "pobierane z sieci." #~ msgid "A_uthentication" #~ msgstr "A_utentykacja" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Dodaje plik z kluczem do listy zaufanych kluczy. Należy upewnić sie, że " -#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego źródła. " +#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego " +#~ "źródła. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Usuwaj _tymczasowe pliki z pakietami" @@ -2082,11 +2144,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to na " -#~ "klucze zainstalowane przez użytkownika." +#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to " +#~ "na klucze zainstalowane przez użytkownika." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Maksymalny rozmiar pamięci podręcznej" @@ -2110,8 +2172,9 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione.Aby " -#~ "rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-get\"." +#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione." +#~ "Aby rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-" +#~ "get\"." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Nie można uaktualnić wszystkich pakietów" @@ -2119,12 +2182,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "Oznacza to, że do aktualizacji wymagane sa dodatkowe działania (takie jak " -#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać z " -#~ "funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać polecenie " -#~ "\"apt-get dist-upgrade\"." +#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać " +#~ "z funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać " +#~ "polecenie \"apt-get dist-upgrade\"." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2135,11 +2199,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje są teraz instalowane." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " -#~ "najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " +#~ "Należy najpierw zamknąć aplikację która teraz działa." #~ msgid "Updating package list..." #~ msgstr "Aktualizacja listy pakietów..." @@ -2149,13 +2213,14 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna wersja " -#~ "nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych krytycznych " -#~ "uaktualnień. Informacje o tym jak uaktualnić dystrybucję można znaleźć na " -#~ "stronie http://www.ubuntulinux.org (Witryna w języku angielskim)" +#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna " +#~ "wersja nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych " +#~ "krytycznych uaktualnień. Informacje o tym jak uaktualnić dystrybucję " +#~ "można znaleźć na stronie http://www.ubuntulinux.org (Witryna w języku " +#~ "angielskim)" #, fuzzy #~ msgid "There is a new release of Ubuntu available!" @@ -2166,11 +2231,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " -#~ "najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " +#~ "Należy najpierw zamknąć aplikację która teraz działa." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicjowanie i pobieranie listy aktualizacji..." @@ -2208,13 +2273,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " -#~ "przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " +#~ "klikając przycisk Instaluj." #~ msgid "CD disk" -#~ msgstr "Płyta CD" \ No newline at end of file +#~ msgstr "Płyta CD" diff --git a/po/pt.po b/po/pt.po index ec8da300..227583eb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-06 18:27+0000\n" "Last-Translator: Susana \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -53,6 +53,7 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Depois de %s dias" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -60,6 +61,7 @@ msgstr "actualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -69,6 +71,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Erro ao remover a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." @@ -165,6 +167,7 @@ msgstr "Não foi possível actualizar os meta-pacotes necessários" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" @@ -181,6 +184,7 @@ msgstr "" "Por favor reporte este erro no pacote 'update-manager' e inclua os ficheiros " "contidos em /var/log/dist-upgrade/ no seu relatório de erro." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" @@ -207,6 +211,7 @@ msgid "" msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" @@ -288,6 +293,7 @@ msgstr "" "Se escolher 'Sim' ele vai actualizar todos os '%s' para '%s' pacotes.↵\n" "Se escolher \"não\" a actualização irá ser cancelada." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" @@ -356,10 +362,11 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A actualização abortará agora. Por favor liberte %s de espaço em disco em " -"%s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " +"A actualização abortará agora. Por favor liberte %s de espaço em disco em %" +"s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " "usando 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" @@ -437,6 +444,7 @@ msgstr "" "Ocorreu algum problema durante a limpeza. Por favor verifique a mensagem " "abaixo para mais informação. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" @@ -447,6 +455,7 @@ msgid "Fetching backport of '%s'" msgstr "A obter backport de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -505,6 +514,7 @@ msgstr "À procura de software obsoleto" msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -532,6 +542,7 @@ msgstr "A obter o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando alterações" @@ -547,9 +558,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "A actualização será agora abortada. Por favor relate a ocorrência deste erro " -"no pacote 'update-manager' e inclua os ficheiros que se encontram em " -"/var/log/dist-upgrade/ no relatório de erro." +"no pacote 'update-manager' e inclua os ficheiros que se encontram em /var/" +"log/dist-upgrade/ no relatório de erro." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -577,18 +589,19 @@ msgstr "Ocorreu um erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate este erro e inclua os ficheiros /var/log/dist-" -"upgrade/main.log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A " -"actualização abortará agora.\n" -"O ficheiro original sources.list foi guardado em " -"/etc/apt/sources.list.distUpgrade." +"Por favor relate este erro e inclua os ficheiros /var/log/dist-upgrade/main." +"log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A actualização " +"abortará agora.\n" +"O ficheiro original sources.list foi guardado em /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -611,7 +624,7 @@ msgstr[0] "%d pacote será actualizado." msgstr[1] "%d pacotes serão actualizados." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -635,8 +648,9 @@ msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" @@ -684,6 +698,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -706,6 +721,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -815,6 +831,7 @@ msgstr "Impossível de descarregar as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor verifique a sua ligação à internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossível de executar a ferramenta de actualização" @@ -832,8 +849,7 @@ msgstr "A descarregar a ferramenta de actualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" -"A ferramenta de actualização guiá-lo-á pelo processo de actualização." +msgstr "A ferramenta de actualização guiá-lo-á pelo processo de actualização." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -917,14 +933,17 @@ msgstr "" "Falha a descarregar a lista de alterações. \n" "Por favor verifique a sua ligação à internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizações de segurança importantes" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizações recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizações propostas" @@ -937,71 +956,74 @@ msgstr "Backports" msgid "Distribution updates" msgstr "_Actualizações de Distribuição" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizações" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versão %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "A descarregar a lista de alterações..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Desmarcar Todos" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Verificar Todos" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Pode instalar %s actualização" msgstr[1] "Pode instalar %s actualizações" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Por favor aguarde, isto pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "A actualização está completa" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Verificar por actualizações disponíveis" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Da versão: %(old_version)s para %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versão %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "A sua distribuição já não é suportada" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1011,16 +1033,17 @@ msgstr "" "versão mais recente do Ubuntu Linux. Veja http://www.ubuntu.com para mais " "informação em como actualizar." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponível a nova versão '%s' da distribuição" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "O índice de software está quebrado" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1030,19 +1053,23 @@ msgstr "" "gestor de pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" numa " "consola para corrigir este problema em primeiro lugar." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1069,8 +1096,8 @@ msgstr "Mantenha o seu sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Não é possível instalar todas as actualizações \n" -" \n" +"Não é possível instalar todas as actualizações\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1413,192 +1440,235 @@ msgstr "Tamanho da Janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os repositórios de software e actualizações instaláveis" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Drivers proprietários para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software Restrito" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com o Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software de Código Aberto suportado pela Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela comunidade (universal)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Fonte Aberto mantido pela comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores não-livres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Drivers proprietários para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Não-livre (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright ou questões legais" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 #, fuzzy msgid "Backported updates" msgstr "Actualizações dos repositórios \"backport\"" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Actualizações" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado Oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizações do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sem mais suporte oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Direitos de autor restritos" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizações do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Actualizações de Segurança" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatível-DFSG com Dependências Não-Livres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" @@ -1621,7 +1691,8 @@ msgstr "Software compatível-DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "A actualizar para Ubuntu 6.10" +#~ "A actualizar para Ubuntu 6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Actualizações de segurança importantes do Ubuntu" @@ -1648,17 +1719,16 @@ msgstr "Software compatível-DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas actualizações requerem a remoção de software. Utilize a função " -#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade\" " -#~ "numa consola para actualizar completamente o seu sistema." +#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade" +#~ "\" numa consola para actualizar completamente o seu sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes actualizações serão ignoradas:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Cerca de %li segundos restantes" @@ -1679,12 +1749,14 @@ msgstr "Software compatível-DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo tempo" +#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo " +#~ "tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou 'Synaptic'." +#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Repositórios" @@ -1734,8 +1806,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Ubuntu 6.06 LTS Backports" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Ao pesquisar o seu repositório de informação não foi encontrada nenhuma " #~ "entrada válida de actualização.\n" @@ -1754,15 +1826,15 @@ msgstr "Software compatível-DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "A efectuar download de " -#~ "alterações\n" +#~ "A efectuar download de alterações\n" #~ "\n" #~ "É necessário obter as alterações de um servidor central" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" #~ "Não existe espaço suficiente no seu sistema para descarregar os pacotes " #~ "necessários. Por favor liberte algum espaço antes de tentar novamente por " @@ -1775,8 +1847,8 @@ msgstr "Software compatível-DFSG" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" -#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de um " -#~ "problema de rede. Por favor verifique a rede e tente novamente. " +#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de " +#~ "um problema de rede. Por favor verifique a rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1801,8 +1873,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Tem a certeza que pretende cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " #~ msgstr "" #~ "Cancelar durante uma actualização pode deixar o seu sistema num estado " #~ "instável. É fortemente aconselhado a prosseguir a operação. " @@ -1817,4 +1889,4 @@ msgstr "Software compatível-DFSG" #~ msgstr "Nunca exibir esta mensagem novamente" #~ msgid "CD" -#~ msgstr "CD" \ No newline at end of file +#~ msgstr "CD" diff --git a/po/pt_BR.po b/po/pt_BR.po index 60893d45..def6479d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-02 11:49+0000\n" "Last-Translator: Andre Noel \n" "Language-Team: Ubuntu-BR \n" @@ -54,6 +54,7 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Após %s dias" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "Atualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Erro removendo a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave selecionada não pode ser removida. Por favor reporte isto como um " "bug." @@ -167,6 +169,7 @@ msgstr "Não foi possível atualizar os meta-pacotes requeridos" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Não foi possível processar a atualização" @@ -184,6 +187,7 @@ msgstr "" "Por favor reporte esse erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" @@ -211,6 +215,7 @@ msgstr "" "Não foi possível instalar um pacote requerido. Por favor relate isto como um " "erro. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Não foi possível determinar o meta-pacote" @@ -291,6 +296,7 @@ msgstr "" "'Sim' atualizará todas '%s' para '%s' entradas.\n" "Se você selecionar 'não' a atualização será cancelada." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar fontes padrão?" @@ -364,6 +370,7 @@ msgstr "" "de disco no %s. Esvazie sua lixeira e remova pacotes temporários de " "instalações anteriores usando 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" @@ -435,6 +442,7 @@ msgstr "" "Alguns problemas ocorreram durante a limpeza. Por favor veja a mensagem " "abaixo para maiores informações. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurando o estado original do sistema" @@ -445,6 +453,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -478,8 +487,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Depois que a sua informação do pacote foi atualizada, o pacote essencial " -"'%s' não pôde mais ser encontrado.\n" +"Depois que a sua informação do pacote foi atualizada, o pacote essencial '%" +"s' não pôde mais ser encontrado.\n" "Isso indica uma falha grave, por favor reporte isso como um erro no pacote " "do 'update-manager' e inclua os arquivos contidos em /var/log/dist-upgrade/ " "no relatório de erros." @@ -500,6 +509,7 @@ msgstr "Buscando programas obsoletos" msgid "System upgrade is complete." msgstr "A atualização do sistema está completa." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -528,6 +538,7 @@ msgstr "Obtendo arquivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando mudanças" @@ -546,6 +557,7 @@ msgstr "" "'update-manager' e inclua os arquivos em /var/log/dist-upgrade/ no relatório " "de erros." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -571,17 +583,18 @@ msgstr "Ocorreu um erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-" -"upgrade.log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização " -"será abortada agora.\n" +"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-upgrade." +"log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização será " +"abortada agora.\n" "Seu sources.list original foi salvo em /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -626,8 +639,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" @@ -675,6 +689,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -696,6 +711,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -715,8 +731,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicie o seu sistema para finalizar a atualização" +msgstr "Reinicie o seu sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -806,6 +821,7 @@ msgstr "Não foi possível obter as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor, verifique sua conexão de internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Não foi possível executar a ferramenta de atualização" @@ -904,14 +920,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Principais Atualizações de Segurança" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Atualizações recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Atualizações sugeridas" @@ -924,71 +943,74 @@ msgstr "Backports" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras atualizações" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versão %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Desmarcar Todos" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Marcar Todos" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Tamanho do download: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Você pode instalar %s atualização" msgstr[1] "Você pode instalar %s atualizações" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Aguarde por favor, isso pode levar algum tempo." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "A atualização está completa" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Verificando por atualizações" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versão %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Tamanho: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Sua distribuição não é mais suportada" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -998,16 +1020,17 @@ msgstr "" "falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. " "Veja http://www.ubuntu-br.org para mais informações." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Uma nova versão da distribuição '%s' está disponível" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "O index do software está quebrado" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1017,19 +1040,23 @@ msgstr "" "Gerenciador de Pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" " "em um terminal para resolver esse problema primeiro." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1261,8 +1288,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação sobre programas disponíveis está " -"desatualizada\n" +"A informação sobre programas disponíveis está desatualizada\n" "\n" "Para instalar programas e atualizações de fontes recentemente adicionadas ou " "alteradas, você tem que recarregar as informações sobre programas " @@ -1372,8 +1399,7 @@ msgstr "Exibir detalhes de uma atualização" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" -"Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" +msgstr "Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1390,190 +1416,233 @@ msgstr "O tamanho da janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os canais de software e atualizações via internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores proprietários para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restrito" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela Comunidade (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Programa de Código Aberto mantido pela Comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Drivers Não-livres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores proprietários para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Programas restritos (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Atualizações \"Backport\"" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Atualizações do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Atualizações do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela Comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livres (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Não é mais suportado oficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrito" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Atualizações do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testando)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instável)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programa compatível com a DFSG mas com Dependências Não-Livres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1587,22 +1656,22 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "A unresolvable problem occured while calculating the upgrade.\n" #~ "\n" -#~ "Please report this bug against the 'update-manager' package and include the " -#~ "files in /var/log/dist-upgrade/ in the bugreport." +#~ "Please report this bug against the 'update-manager' package and include " +#~ "the files in /var/log/dist-upgrade/ in the bugreport." #~ msgstr "" -#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por favor " -#~ "relate isto como um erro." +#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por " +#~ "favor relate isto como um erro." #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "O seu sistema não possui um pacote ubuntu-desktop, kubuntu-desktop ou " -#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você está " -#~ "executando.\n" +#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você " +#~ "está executando.\n" #~ "Por favor instale um desses pacotes primeiro usando o Synaptic ou apt-get " #~ "antes de continuar." @@ -1611,9 +1680,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. Você " -#~ "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " -#~ "programa' ou com o synaptic." +#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. " +#~ "Você poderá reabilitá-las depois de atualizar com a ferramenta " +#~ "'propriedades do programa' ou com o synaptic." #~ msgid "Some software no longer officially supported" #~ msgstr "Alguns softwares não são mais oficialmente suportado." @@ -1631,7 +1700,6 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " #~ "sugeridos à remoção no próximo passo. " -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1639,19 +1707,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Substituir arquivo de configuração\n" #~ "'%s' ?" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pacote será removido." #~ msgstr[1] "%s pacotes serão removidos." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s novo pacote será instalado." #~ msgstr[1] "%s novos pacotes serão instalados." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pacote será atualizado." @@ -1663,10 +1728,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "Seu sistema já foi atualizado." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" #~ "Este download demorará cerca de %s com um modem 56k e cerca de %s com uma " #~ "conexão 1Mbit DSL." @@ -1674,27 +1738,26 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atualizando para o Ubuntu 6.10" +#~ "Atualizando para o Ubuntu 6.10" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" #~ "Falha na verificação da atualização. Pode haver um problema com a rede ou " #~ "com o servidor. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Obtendo arquivo %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de alterações não está disponível ainda. Por favor, tente novamente " -#~ "mais tarde." +#~ "A lista de alterações não está disponível ainda. Por favor, tente " +#~ "novamente mais tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1730,21 +1793,21 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Select _All" #~ msgstr "Selecion_ar Todos" -#, python-format #~ msgid "From version %s to %s" #~ msgstr "Da versão %s para %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Você deve verificar por atualizações manualmente\n" #~ "\n" #~ "O seu sistema não procura por atualizações automaticamente. Você pode " -#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> \"Propriedades " -#~ "de Programas\"." +#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> " +#~ "\"Propriedades de Programas\"." #~ msgid "" #~ "Examining your system\n" @@ -1754,8 +1817,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Verificando as Atualizações Disponíveis\n" #~ "\n" -#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " -#~ "segurança, e prover novas funcionalidades para você." +#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades " +#~ "de segurança, e prover novas funcionalidades para você." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _Download" @@ -1763,8 +1826,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1776,8 +1839,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Você necessita uma conexão de internet para continuar." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the source that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1790,8 +1853,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "Se a verificação automática de atualizações for desativada, você terá que " #~ "recarregar manualmente a lista de canais. Esta opção perminte que você " @@ -1818,18 +1881,17 @@ msgstr "Programas não compatíveis com a DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas atualizações requerem a remoção de outros pacotes.Use a função " -#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou rode " -#~ "\"sudo apt-get dist-upgrade\" em um terminal para atualizar seu sistema " -#~ "completamente." +#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou " +#~ "rode \"sudo apt-get dist-upgrade\" em um terminal para atualizar seu " +#~ "sistema completamente." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes atualizações serão puladas:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Aproximadamente %li segundos restando" @@ -1850,7 +1912,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo tempo" +#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo " +#~ "tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1909,8 +1972,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Backports do Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Enquanto analisava as informações de repositórios não foi encontrada uma " #~ "entrada válida para a atualização.\n" @@ -1961,12 +2024,12 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" #~ "Não há espaço suficiente no seu sistema para obter os pacotes requeridos. " -#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-get " -#~ "clean'" +#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-" +#~ "get clean'" #~ msgid "Error fetching the packages" #~ msgstr "Erro ao obter os pacotes" @@ -1976,8 +2039,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" #~ "Alguns problemas ocorreram durante a obtenção dos pacotes. Isso é bem " -#~ "provável que seja por problemas de rede. Por favor verifique a sua conexão " -#~ "de rede e tente novamente. " +#~ "provável que seja por problemas de rede. Por favor verifique a sua " +#~ "conexão de rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -2002,11 +2065,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Tem certeza que deseja cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " #~ msgstr "" -#~ "Cancelar durante a atualização pode deixar o sistema em um estado instável. " -#~ "É fortemente recomendável que a operação continue. " +#~ "Cancelar durante a atualização pode deixar o sistema em um estado " +#~ "instável. É fortemente recomendável que a operação continue. " #, fuzzy #~ msgid "Sources" @@ -2029,13 +2092,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -2055,16 +2118,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -2089,11 +2152,11 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -2126,11 +2189,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -2139,11 +2204,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -2153,33 +2218,33 @@ msgstr "Programas não compatíveis com a DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "There is a new release of Ubuntu available!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -2211,10 +2276,10 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." \ No newline at end of file +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." diff --git a/po/qu.po b/po/qu.po index 38609208..d8a39c96 100644 --- a/po/qu.po +++ b/po/qu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Quechua \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -251,6 +256,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -307,6 +313,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -369,6 +376,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -379,6 +387,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -429,6 +438,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -540,8 +553,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -711,6 +727,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -800,14 +817,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -820,106 +840,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1241,184 +1269,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/ro.po b/po/ro.po index 9335d302..e11b90cb 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: " -"nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?1:2)\n" +"Plural-Forms: nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?" +"1:2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "După o lună" msgid "After %s days" msgstr "După %s zile" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s actualizări" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "Server principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,12 +125,11 @@ msgid "Error removing the key" msgstr "Eroare la ştergerea cheii." #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -167,6 +169,7 @@ msgstr "Este imposibilă actualizarea meta-pachetelor cerute" msgid "A essential package would have to be removed" msgstr "Un pachet esenţial ar trebui şters" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Imposibil de calculat actualizarea" @@ -179,6 +182,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -207,6 +211,7 @@ msgstr "" "Nu am reuşit să instalez pachetul cerut. Vă rugăm raportaţi acest lucru ca " "bug (eroare). " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Imposibl de ghicit meta-pachet" @@ -285,6 +290,7 @@ msgstr "" "Doriţi să rescrieţi fişierul 'sources.list' oricum? Dacă selectaţi 'Da' se " "vor modifica toate intrările din '%s' în '%s'." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generez surse implicite?" @@ -353,6 +359,7 @@ msgstr "" "pe disc pe %s. Goliţi coşul de gunoi şi ştergeţi pachetele temporare de la " "instalările vechi folosind 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" @@ -424,6 +431,7 @@ msgstr "" "O problemă a apărut în timpul acţiunii de curăţenie. Vă rugăm vedeţi mesajul " "de mai jos pentru informaţii suplimentare. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 #, fuzzy msgid "Restoring original system state" @@ -435,6 +443,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -469,8 +478,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"După ce informaţiile despre pachete au fost actualizate pachetul esenţial " -"'%s' nu mai poate fi găsit.\n" +"După ce informaţiile despre pachete au fost actualizate pachetul esenţial '%" +"s' nu mai poate fi găsit.\n" "Aceasta indică o eroare serioasă, vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." @@ -490,6 +499,7 @@ msgstr "Caut software învechit" msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -517,6 +527,7 @@ msgstr "Se descarcă fişierul %li din %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Se aplică modificările" @@ -534,6 +545,7 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -557,18 +569,19 @@ msgstr "S-a produs o eroare fatală" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Vă rugăm raportaţi aceasta ca eroare şi includeţi fişierele /var/log/dist-" "upgrade/main.log şi /var/log/dist-upgrade/apt.log în raportul dumneavoastră. " "Actualizarea se orpeşte acum.\n" -"Fişierul iniţial sources.list a fost salvat în " -"/etc/apt/sources.list.distUpgrade." +"Fişierul iniţial sources.list a fost salvat în /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -618,8 +631,9 @@ msgstr "" "Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi " "documentele." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" @@ -665,6 +679,7 @@ msgid "%li seconds" msgstr "%li secunde" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -686,6 +701,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -797,6 +813,7 @@ msgstr "Nu pot descărca notiţele de lansare" msgid "Please check your internet connection." msgstr "Verificaţi conexiunea internet" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nu pot rula utilitarul de actualizare" @@ -896,14 +913,17 @@ msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizări importante de securitate" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizări recomandate" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Pachete propuse" @@ -918,34 +938,36 @@ msgstr "Actualizări de securitate Ubuntu 5.04" msgid "Distribution updates" msgstr "_Continuă Actualizarea" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Alte actualizări" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Versiunea %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Se descarcă listă schimbărilor..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Dimensiune descărcare: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -953,39 +975,40 @@ msgstr[0] "Puteţi instala actualizarea %s" msgstr[1] "Puteţi instala actualizarea %s" msgstr[2] "Puteţi instala actualizarea %s" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Vă rugăm aşteptaţi, ar putea dura." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Actualizare completă." -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "_Instalează actualizarile" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versiunea nouă: %s (Mărime: %s)" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versiunea %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Dimensiune: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Distribuţia dvs. nu mai este asistată" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -995,16 +1018,17 @@ msgstr "" "Instalaţi o versiune mai nouă a Ubuntu Linux. Vedeţi http://www.ubuntu.com " "pentru mai multe informaţii legate de actualizare." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Noua versiune '%s' este disponibilă" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Indexul software este deteriorat" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1014,19 +1038,23 @@ msgstr "" "managerul de pachete \"Synaptic\" sau rulaţi \"sudo apt-get install -f\" " "într-un terminal pentru a remedia această problemă." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nimic" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1294,9 +1322,9 @@ msgstr "" "Introduceţi linia APT completă a locaţiei pe care doriţi să o " "adăugaţi\n" "\n" -"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de " -"exemplu\"deb http://ftp.debian.org sarge main\". Puteţi găsi o " -"descriere detaliată a sintaxei în documentaţie." +"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de exemplu" +"\"deb http://ftp.debian.org sarge main\". Puteţi găsi o descriere " +"detaliată a sintaxei în documentaţie." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1379,191 +1407,235 @@ msgstr "Dimensiunea ferestrei" msgid "Configure the sources for installable software and updates" msgstr "Configurează sursele pentru software instalabil şi actualizări" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Software în contribuţie" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom cu Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pachete non-libere" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restricţionat (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom cu Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizări portate înapoi" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizări Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom cu Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Pachete suportate oficial" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizări Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pachete non-libere (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom cu Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Pachete suportate oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrictiv" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizări de securitate Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizări Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizări de securitate Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibil DFSG cu dependenţe negratuite" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software incompatibil DFSG" @@ -1681,13 +1753,13 @@ msgstr "Software incompatibil DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " -#~ "pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " +#~ "apăsând pe butonul Instalează." #~ msgid "Repository" #~ msgstr "Locaţie" @@ -1707,8 +1779,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "" #~ "Chei autentificare\n" #~ "\n" -#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul unei " -#~ "chei estede a permite verificarea integrităţii unui pachet software " +#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul " +#~ "unei chei estede a permite verificarea integrităţii unui pachet software " #~ "descărcat." #~ msgid "A_uthentication" @@ -1716,8 +1788,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Adăugaţi o nouă cheie în keyring-ul de încredere. Asiguraţi-vă că aţi " #~ "obţinut cheia printr-un canal sigur şi că aveţi încredere în proprietarul " @@ -1734,8 +1806,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Restaurează cheile implicite furnizate împreună cu distribuţia. Această " #~ "acţiune nu va influenţa cheile instalate ca utilizator." @@ -1760,8 +1832,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "Actualizările sunt în curs de aplicare." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1771,8 +1843,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1795,13 +1867,13 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " -#~ "pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " +#~ "apăsând pe butonul Instalează." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/ru.po b/po/ru.po index ff5f15bb..8274052c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-03 02:07+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -18,7 +18,6 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" msgstr "Ежедневно" @@ -57,6 +56,7 @@ msgstr "Через месяц" msgid "After %s days" msgstr "Через %s дней" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +64,7 @@ msgstr "%s обновлений" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Основной сервер" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +124,7 @@ msgid "Error removing the key" msgstr "Ошибка при удалении ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." @@ -167,6 +168,7 @@ msgstr "Невозможно обновить требуемые мета-пак msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" @@ -183,6 +185,7 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" @@ -210,6 +213,7 @@ msgstr "" "Невозможно установить необходимый пакет. Пожалуйста, отправьте отчет об " "ошибке. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" @@ -289,6 +293,7 @@ msgstr "" "обновлены все записи '%s' на '%s'.\n" "Ответ 'Нет' отменит обновление." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" @@ -301,8 +306,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"В результате просмотра 'sources.list' не найдена действующая запись для " -"'%s'.\n" +"В результате просмотра 'sources.list' не найдена действующая запись для '%" +"s'.\n" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." @@ -359,6 +364,7 @@ msgstr "" "%s. Очистите вашу корзину и удалите временные пакеты, оставшиеся от " "предыдущих установок с помощью команды 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" @@ -435,6 +441,7 @@ msgstr "" "При очистке возникла проблема. Более полная информация приведена в сообщении " "ниже. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" @@ -445,6 +452,7 @@ msgid "Fetching backport of '%s'" msgstr "Загрузка '%s' из репозитария backports" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -498,6 +506,7 @@ msgstr "Поиск устаревших программ" msgid "System upgrade is complete." msgstr "Обновление системы завершено." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -525,6 +534,7 @@ msgstr "Загрузка файла %li из %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Применение изменений" @@ -542,6 +552,7 @@ msgstr "" "Обновление прервано. Пожалуйста сообщите об ошибке в пакете 'update-manager' " "и включите файлы, находящиеся в /var/log/dist-upgrade/ в сообщение об ошибке" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -567,17 +578,18 @@ msgstr "Произошла неисправимая ошибка" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Пожалуйста, отправьте отчет об ошибке и включите в него файлы /var/log/dist-" "upgrade.log и /var/log/dist-upgrade-apt.log. Обновление прервано.\n" -"Оригинальный файл sources.list был сохранен как " -"/etc/apt/sources.list.distUpgrade." +"Оригинальный файл sources.list был сохранен как /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -626,8 +638,9 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" @@ -674,6 +687,7 @@ msgid "%li seconds" msgstr "%li секунд" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -688,12 +702,12 @@ msgstr "Требуется перезагрузка" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" +msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -803,6 +817,7 @@ msgstr "Не могу загрузить сведения о релизе" msgid "Please check your internet connection." msgstr "Пожалуйста, проверьте соединение с интернет." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Невозможно запустить утилиту обновления" @@ -900,14 +915,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Важные обновления безопасности" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Рекомендованые обновления" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Предлагаемые обновления" @@ -920,33 +938,35 @@ msgstr "Бэкпорты" msgid "Distribution updates" msgstr "Обновления дистрибутива" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Прочие обновления" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Версия %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "Загрузка списка изменений..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "Сбросить все" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "Проверить все" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Размер загружаемых данных: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -954,38 +974,39 @@ msgstr[0] "Вы можете установить %s обновление" msgstr[1] "Вы можете установить %s обновления" msgstr[2] "Вы можете установить %s обновлений" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Пожалуйста подождите, это может занять некоторое время." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Обновление завершено" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Проверка наличия обновлений" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "С версии %(old_version)s на %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Версия %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Размер: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Ваша версия Ubuntu больше не поддерживается" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -995,16 +1016,17 @@ msgstr "" "обновления. Обновите систему до более поздней версии Ubuntu Linux. Для " "получения информации об обновлении посетите http://www.ubuntu.com" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Индекс программ поврежден" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1014,19 +1036,23 @@ msgstr "" "используйте менеджер пакетов \"Synaptic\" или запустите в терминале \"sudo " "apt-get install -f\"." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Нет" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Кб" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Кб" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1387,207 +1413,251 @@ msgstr "Размер окна" msgid "Configure the sources for installable software and updates" msgstr "Настроить источники установки программ и обновлений" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Поддерживается сообществом" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Проприетарные драйвера устройств" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Несвободное ПО" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM с Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Поддерживается сообществом (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Поддерживаемое сообществом свободное ПО" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Несвободные драйвера" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Проприетарные драйвера устройств " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Несвободное обеспечение (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD с Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Обновления в бэкпортах" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD с Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Обновления Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 бэкпорты" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официально поддерживается" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Обновления безопасности Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Обновления Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 бэкпорты" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддерживается сообществом (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободное (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Официально больше не поддерживается" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограниченные авторские права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Обновления безопасности Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Обновления Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 бэкпорты" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Обновления безопасности Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-совместимое ПО с зависимостями от несвободного ПО" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." #~ msgstr "" #~ "Если вы замените файл его поздней версией, вы потеряете все изменения " #~ "сделанные вами или скриптами." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" #~ "Скачивание займёт примерно %s при 56к модеме и примерно %s при 1Мбит DSL-" #~ "подключении" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." +#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте " +#~ "позднее." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1604,7 +1674,6 @@ msgstr "Не-DFSG-совместимое ПО" #~ "Программное обеспечение, ограниченное копирайтом или другими правовыми " #~ "проблемами" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Загрузка файла %li из %li с неизвестной скоростью" @@ -1655,17 +1724,17 @@ msgstr "Не-DFSG-совместимое ПО" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Некоторые обновления требуют удаления других приложений. Для полного " -#~ "обновления системы используйте функцию \"Пометить все обновления\" менеджера " -#~ "пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get dist-upgrade\"." +#~ "обновления системы используйте функцию \"Пометить все обновления\" " +#~ "менеджера пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get " +#~ "dist-upgrade\"." #~ msgid "The following updates will be skipped:" #~ msgstr "Следующие обновления будут пропущены:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Осталось приблизительно %li секунд" @@ -1741,4 +1810,4 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgstr "Обновления Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/rw.po b/po/rw.po index d3e86628..4d7d8978 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -63,13 +63,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Kwinjiza porogaramu" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -79,6 +81,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -133,8 +136,7 @@ msgstr "i Urufunguzo" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -171,6 +173,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -184,6 +187,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -207,6 +211,7 @@ msgid "" "bug. " msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -266,6 +271,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -323,6 +329,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -385,6 +392,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -395,6 +403,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -448,6 +457,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -475,6 +485,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -491,6 +502,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -514,13 +526,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -557,8 +570,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" @@ -605,6 +619,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -624,6 +639,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -734,6 +750,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -829,15 +846,18 @@ msgid "" msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "5" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -853,109 +873,117 @@ msgstr "5" msgid "Distribution updates" msgstr "Byarangiye" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:462 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:478 +#, fuzzy, python-format msgid "Version %s: \n" msgstr "Verisiyo \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Iyimura... i" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:633 +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Kwinjiza porogaramu" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Verisiyo" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Ikwirakwiza... ni Oya" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1300,207 +1328,252 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Kohereza Nta gukoresha bisesuye" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Kigenga" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Kigenga" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 #, fuzzy msgid "Non-free (Multiverse)" msgstr "Kigenga" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "Uburenganzira bw'umuhimbyi" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "5" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "4. 10" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1631,8 +1704,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "> Ukoresha: Utubuto" @@ -1719,7 +1792,8 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "i Bya i Igikorwa Nka gukora iyinjizaporogaramu:%s Cyangwa ni Bya ngombwa " #~ "Gukoresha Cyangwa Kubona Kuri i" @@ -1734,8 +1808,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1750,16 +1824,16 @@ msgstr "" #, fuzzy #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi Ibyangombwa " -#~ "HTTP www org kugirango Ibisobanuro" +#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi " +#~ "Ibyangombwa HTTP www org kugirango Ibisobanuro" #, fuzzy #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "A Gishya Na: i ni Bihari HTTP www org kugirango Amabwiriza" #, fuzzy @@ -1768,8 +1842,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1798,4 +1872,4 @@ msgstr "" #, fuzzy #~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "com" \ No newline at end of file +#~ msgstr "com" diff --git a/po/sk.po b/po/sk.po index f8f2a15c..34c34f09 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -55,15 +55,17 @@ msgstr "Po mesiaci" msgid "After %s days" msgstr "Po %s dňoch" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Nainštalovať _aktualizácie" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy +#, fuzzy, python-format msgid "%s (%s)" msgstr "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,12 +126,11 @@ msgid "Error removing the key" msgstr "Chyba pri odstraňovaní kľúča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Nemôžem aktualizovať požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" @@ -181,6 +184,7 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" @@ -206,6 +210,7 @@ msgid "" "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." @@ -278,6 +283,7 @@ msgstr "" "nahradené všetky '%s' záznamy '%s' záznamami.\n" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" @@ -290,8 +296,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre " -"'%s'.\n" +"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre '%" +"s'.\n" "\n" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." @@ -350,6 +356,7 @@ msgstr "" "vyprázdnením svojho kôša, prípadne odstránením dočasných inštalačných " "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" @@ -425,6 +432,7 @@ msgstr "" "Počas čistenia sa vyskytli problémy. Pre viac informácií si pozrite nižšie " "uvedené správy. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" @@ -435,6 +443,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -464,7 +473,7 @@ msgid "Invalid package information" msgstr "Neplatná informácia o balíku" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -472,8 +481,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík " -"'%s'.\n" +"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík '%" +"s'.\n" "To znamená závažný problém. Nahláste to ako chybu." #: ../DistUpgrade/DistUpgradeControler.py:733 @@ -492,6 +501,7 @@ msgstr "Vyhľadávanie zastaraného softvéru" msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -503,23 +513,24 @@ msgid "Fetching is complete" msgstr "Aktualizácia je dokončená" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Zostáva %li minút" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Sťahujem %li súbor z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikujem zmeny" @@ -535,8 +546,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -561,20 +573,21 @@ msgstr "Nastala závažná chyba" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nahláste to ako chybu a k svojmu hláseniu priložte súbory /var/log/dist-" "upgrade.log a /var/log/dist-upgrade-apt.log. Aktualizácia bude teraz " "prerušená.\n" -"Váš pôvodný súbor 'sources.list' bol uložený ako " -"/etc/apt/sources.list.distUpgrade." +"Váš pôvodný súbor 'sources.list' bol uložený ako /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bude odstránený %s balík." @@ -582,7 +595,7 @@ msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bude nainštalovaný %s nový balík." @@ -590,7 +603,7 @@ msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bude aktualizovaný %s balík." @@ -598,7 +611,7 @@ msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -613,16 +626,16 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." +msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" @@ -648,12 +661,12 @@ msgid "Upgrade %s" msgstr "Aktualizovať %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Zostáva %li dní %li hodín %li minút" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Zostáva %li hodín %li minút" @@ -668,6 +681,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -689,6 +703,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -801,6 +816,7 @@ msgstr "Nebolo možné stiahnuť poznámky k vydaniu" msgid "Please check your internet connection." msgstr "Skontrolujte si internetové pripojenie." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nebolo možné spustiť aktualizačný program" @@ -874,12 +890,12 @@ msgstr "" "problémom alebo nedostupňosťou servera. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Sťahovanie súboru %li z %li pri %s/s" @@ -904,15 +920,18 @@ msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -928,36 +947,38 @@ msgstr "Ubuntu 5.10 - backporty" msgid "Distribution updates" msgstr "_Pokračovať v aktualizácii" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Nainštalovať _aktualizácie" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Verzia %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Získava sa zoznam zmien..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Skontrolovať" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Veľkosť na stiahnutie: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -965,39 +986,40 @@ msgstr[0] "Môžete nainštalovať %s aktualizáciu" msgstr[1] "Môžete nainštalovať %s aktualizácie" msgstr[2] "Môžete nainštalovať %s aktualizácií" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Čakajte prosím, toto môže chvíľu trvať." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Aktualizácia je dokončená" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Kontrolujem aktualizácie..." -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verzia: %s (veľkosť: %s)" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Verzia %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Vaša distribúcia už nie je podporovaná" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1005,19 +1027,20 @@ msgid "" msgstr "" "Nebudete mať k dispozícii žiadne nové bezpečnostné ani kritické " "aktualizácie. Prejdite preto na najnovšiu verziu distribúcie Ubuntu Linux. " -"Pre viac informácií o prechode na novšiu verziu si pozrite " -"http://www.ubuntu.com.\"" +"Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." +"com.\"" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "K dispozícii je nové vydanie distribúcie '%s'" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Index softvéru je poškodený" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1027,20 +1050,24 @@ msgstr "" "Na odstránenie tohto problému použite správcu balíkov 'Synaptic' alebo " "spustite 'sudo apt-get install -f' v termáli." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "Žiadna" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1317,11 +1344,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " -"pridať\n" +"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete pridať\n" "\n" -"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " -"\"deb·http://ftp.debian.org·sarge·main\"." +"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " +"\"deb·http://ftp.debian.org·sarge·main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1413,206 +1440,250 @@ msgstr "Veľkosť okna" msgid "Configure the sources for installable software and updates" msgstr "Nastaviť zdroje softvéru a internetové aktualizácie" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 - aktualizácie" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Udržiavané komunitou (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Softvér závislý na neslobornom softvéri" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Udržiavané komunitou (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neslobodné (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neslobodné (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 - aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 - backporty" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálne podporované" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 - aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 - backporty" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodné (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Niektoré programy už nie sú viac oficiálne podporované" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "S obmedzujúcou licenciou" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 - backporty" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Softvér kompatibilný s DFSG bez závislostí na neslobodnom softvére" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" @@ -1621,7 +1692,6 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Softvér s obmedzených exportom pre USA" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" @@ -1645,8 +1715,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Prebieha aktualizácia na Ubuntu 6.06 " -#~ "LTS" +#~ "Prebieha aktualizácia na Ubuntu " +#~ "6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1675,18 +1745,17 @@ msgstr "Softvér nekompatibilný s DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste vykonali " -#~ "úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie\" správcu " -#~ "balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade\" v " -#~ "termináli." +#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste " +#~ "vykonali úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie" +#~ "\" správcu balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade" +#~ "\" v termináli." #~ msgid "The following updates will be skipped:" #~ msgstr "Nasledujúce balíky nebudú aktualizované:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zostáva %li sekúnd" @@ -1769,15 +1838,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Nebol nájdený žiadny platný záznam" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na použitie " -#~ "pre upgrade.\n" +#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na " +#~ "použitie pre upgrade.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Upgrade neočakávane skončil. Váš systém môže byt v nestabilnom stave. Pre " #~ "opravu skúste teraz spustiť (dpkg --configure -a)." @@ -1786,8 +1855,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log a " -#~ "~/dist-upgrade-apt.log. Upgrade teraz skončí. " +#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log " +#~ "a ~/dist-upgrade-apt.log. Upgrade teraz skončí. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1802,14 +1871,14 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených vo " -#~ "vašich zdrojoch softvéru. Chcete to urobiť teraz?" +#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených " +#~ "vo vašich zdrojoch softvéru. Chcete to urobiť teraz?" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analyzuje sa váš systém\n" #~ "\n" @@ -1817,8 +1886,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Softvérové aktualizácie môžu opravovať chyby, odstraňovať bezpečnostné " #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." @@ -1829,15 +1898,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "installed therefor" #~ msgstr "" #~ "Automaticky budú inštalované len bezpečnostné aktualizácie z oficiálnych " -#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček 'unattended-" -#~ "upgrades'." +#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček " +#~ "'unattended-upgrades'." #~ msgid "Sections" #~ msgstr "Sekcie:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1845,8 +1914,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " #~ "pridať\n" #~ "\n" -#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " -#~ "\"deb·http://ftp.debian.org·sarge·main\"." +#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " +#~ "\"deb·http://ftp.debian.org·sarge·main\"." #~ msgid "Sections:" #~ msgstr "Sekcie:" @@ -1878,8 +1947,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "umožňuje overiť integritu stiahnutého softvéru." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Pridať nový kľúč do zväzku dôveryhodných kľúčov. Uistite sa, že ste kľúč " #~ "dostali bezpečnou cestou, a že môžete veriť jeho vydavateľovi. " @@ -1909,8 +1978,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Maximálna veľkosť archívu na disku (v MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Obnoví pôvodné kľúče dodávané s vašou distribúciou. Toto neovplyvní " #~ "používateľom nainštalovnané kľúče." @@ -1942,8 +2011,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostupné aktualizácie\n" #~ "\n" @@ -2024,7 +2093,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr[2] "Vybrali ste %s balíkov na aktualizáciu, veľkosť %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[1] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[2] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" @@ -2033,8 +2103,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Práve prebieha aktualizácia." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Môžete mať spustenú najviac jednu aplikáciu na správu balíkov. Prosím, " #~ "najprv zavrite druhú aplikáciu." @@ -2047,8 +2117,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Prejdite prosím, na novšiu verziu distribúcie Ubuntu Linux. Verzia, ktorú " #~ "používate nie je viac podporovaná. To znamená, že už nie sú k dispozícii " @@ -2059,12 +2129,12 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Bola nájdená novšia verzia Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". Pre " -#~ "viac informácií o prechode na vyššiu verziu si pozrite " -#~ "http://www.ubuntulinux.org." +#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". " +#~ "Pre viac informácií o prechode na vyššiu verziu si pozrite http://www." +#~ "ubuntulinux.org." #~ msgid "Never show this message again" #~ msgstr "Už viac nezobrazovať toto upozornenie" @@ -2077,4 +2147,4 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "A_utentifikácia" #~ msgid "Packages to install:" -#~ msgstr "Balíky na inštaláciu:" \ No newline at end of file +#~ msgstr "Balíky na inštaláciu:" diff --git a/po/sl.po b/po/sl.po index dc01145c..a5582fbc 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-08-01 13:08+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%" +"100==4 ? 2 : 3\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Po enem mesecu" msgid "After %s days" msgstr "Po %s dnevih" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Napaka pri odstranitvi kluča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Kluč, katerega ste izbrali, se ne more odstraniti. Prosim, javite to kot " "napako." @@ -153,7 +155,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Vaš sistem vsebuje pokvarjene pakete, ki se ne morejo obnoviti s to " -"programsko opremo. \n" +"programsko opremo.\r\n" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." @@ -165,6 +167,7 @@ msgstr "Ne morem nadgraditi zahtevanih meta-paketov" msgid "A essential package would have to be removed" msgstr "Bistven paket se bo moral odstraniti" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ne morem izračunati nadgradnje" @@ -177,6 +180,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Napaka pristnosti nekaterih paketov" @@ -192,7 +196,7 @@ msgstr "" "paketov." #: ../DistUpgrade/DistUpgradeCache.py:312 -#, fuzzy +#, fuzzy, python-format msgid "Can't install '%s'" msgstr "Ne morem namestiti '%s'" @@ -203,6 +207,7 @@ msgid "" msgstr "" "Nemogoče je bilo namestiti zahtevani paket. Prosim, javite to kot napaka. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ne morem ugibati meta-paketa" @@ -270,6 +275,7 @@ msgstr "" "izberete 'Yes', vam bo posodobilo vse vhode iz '%s' v '%s'.\n" "Če izberete 'no', se bo posodobitev prekinila." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Proizvedem pomanjkljive izvore?" @@ -337,6 +343,7 @@ msgstr "" "prostora na %s. Izpraznite koš in odstranite začasne pakete prejšnjih " "namesitev z uporabo 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Želite pričeti z nadgradnjo?" @@ -403,6 +410,7 @@ msgstr "" "Med čiščenjem je prišlo do problema. Prosim, poglejte sporočilo spodaj za " "več informacij. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -413,6 +421,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -463,6 +472,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "Nadgrajevanje sistema je dokončano" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -490,6 +500,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -505,6 +516,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -528,13 +540,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -580,8 +593,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -627,6 +641,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -646,6 +661,7 @@ msgstr "Nadgrajevanje je končano in potreben je ponoven zagon" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -751,6 +767,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -840,14 +857,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -860,33 +880,35 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Različica %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Velikost prenosa: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -895,73 +917,79 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1283,184 +1311,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sq.po b/po/sq.po index 42f6ef44..10e0f7bb 100644 --- a/po/sq.po +++ b/po/sq.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-09-30 21:20+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" @@ -55,6 +55,7 @@ msgstr "Pas një muaji" msgid "After %s days" msgstr "Pas %s ditësh" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s përmirësimet" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Gabim gjatë largimit të çelësit" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Çelësi i zgjedhur nuk mund të largohet.Ju lutemi krijoni këtu një raport për " "gabimin." @@ -168,6 +170,7 @@ msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." msgid "A essential package would have to be removed" msgstr "Një paketë themelore u deshtë të largohej" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Aktualizimi nuk mund të llogaritej" @@ -182,6 +185,7 @@ msgstr "" "Një problem i pazgjidhshëm ndodhi gjatë aktualizimit.Ju lutemi krijoni një " "raport për këtë gabim." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." @@ -209,6 +213,7 @@ msgstr "" "Një paketë i nevojshëm nuk mundi të instalohet.Ju lutemi raportoni këtë " "problem. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -273,6 +278,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -329,6 +335,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -391,6 +398,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -401,6 +409,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -451,6 +460,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -478,6 +488,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -493,6 +504,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -516,13 +528,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -562,8 +575,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -609,6 +623,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,6 +643,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,6 +749,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -822,14 +839,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -842,106 +862,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1263,184 +1291,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sr.po b/po/sr.po index 9583ee0a..d433222d 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-06-01 10:04+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Posle jednog meseca" msgid "After %s days" msgstr "Posle %s dana" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgstr "Грешка у уклањању кључа" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Кључ који сте изабрали није могуће уклонити. Молим вас пријавите ово као " "грешку." @@ -171,6 +173,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -183,6 +186,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -205,6 +209,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -264,6 +269,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,16 +320,17 @@ msgid "Not enough free disk space" msgstr "Нема довољно места на диску" #: ../DistUpgrade/DistUpgradeControler.py:369 -#, fuzzy +#, fuzzy, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску " -"%s. Испразните канту за отпаtке и уклоните привремене пакете предходних " +"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску %" +"s. Испразните канту за отпаtке и уклоните привремене пакете предходних " "инсталација користећи команду 'sudo apt-get clean'." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -386,6 +393,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -396,6 +404,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -447,6 +456,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "Унапређење система је завршено" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -474,6 +484,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -489,6 +500,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -513,13 +525,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -564,8 +577,9 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Да би спречили губитак података затворите све активне програме и документа." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -611,6 +625,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -631,6 +646,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -737,6 +753,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -826,14 +843,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -846,33 +866,35 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -880,73 +902,79 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1268,184 +1296,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sv.po b/po/sv.po index a6bc08ea..61bc47ff 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-06 03:32+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -56,6 +56,7 @@ msgstr "Efter en månad" msgid "After %s days" msgstr "Efter %s dagar" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "Uppdateringar för %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Huvudserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Fel vid borttagning av nyckeln" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nyckeln du valde kan inte tas bort. Rapportera detta som ett fel." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -166,6 +168,7 @@ msgstr "Kan inte uppdatera de obligatoriska meta-paketen" msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppgraderingen" @@ -182,6 +185,7 @@ msgstr "" "Rapportera det här felet mot paketet \"update-manager\" och inkludera " "filerna i /var/log/dist-upgrade/ i felrapporten." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" @@ -209,6 +213,7 @@ msgstr "" "Det var inte möjligt att installera ett nödvändigt paket. Rapportera detta " "som ett fel. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" @@ -291,6 +296,7 @@ msgstr "" "här kommer det att uppdatera alla \"%s\" till \"%s\".\n" "Om du väljer \"Nej\" kommer uppdateringen avbrytas." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generera standardkällor?" @@ -362,6 +368,7 @@ msgstr "" "papperskorg och ta bort temporära paket från tidigare installationer genom " "att använda \"sudo apt-get clean\"." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppgraderingen?" @@ -381,8 +388,8 @@ msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " "En återhämtning kördes (dpkg --configure -a).\n" "\n" -"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i " -"/var/log/dist-upgrade/ i felrapporten." +"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i /" +"var/log/dist-upgrade/ i felrapporten." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -438,6 +445,7 @@ msgstr "" "Något fel inträffade vid upprensningen. Se meddelandet nedan för mer " "information. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Återställer ursprungligt systemtillstånd" @@ -448,6 +456,7 @@ msgid "Fetching backport of '%s'" msgstr "Hämtar bakåtportering av \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -464,8 +473,8 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Förberedelse av systemet för uppgraderingen misslyckades. Rapportera det här " -"som ett fel mot paketet \"update-manager\" och inkludera filerna i " -"/var/log/dist-upgrade/ i felrapporten." +"som ett fel mot paketet \"update-manager\" och inkludera filerna i /var/log/" +"dist-upgrade/ i felrapporten." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -506,6 +515,7 @@ msgstr "Söker efter föråldrad programvara" msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -533,6 +543,7 @@ msgstr "Hämtar fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Verkställer ändringar" @@ -547,9 +558,10 @@ 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 bugreport." msgstr "" -"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-" -"manager\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." +"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-manager" +"\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -577,17 +589,18 @@ msgstr "Ett ödesdigert fel uppstod" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapportera detta som ett fel och bifoga filerna /var/log/dist-" -"upgrade/main.log och /var/log/dist-upgrade/apt.log i din rapport. " -"Uppgraderingen avbryts nu.\n" +"Rapportera detta som ett fel och bifoga filerna /var/log/dist-upgrade/main." +"log och /var/log/dist-upgrade/apt.log i din rapport. Uppgraderingen avbryts " +"nu.\n" "Din ursprungliga sources.list sparades som /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -632,8 +645,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" @@ -681,6 +695,7 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -703,6 +718,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -813,6 +829,7 @@ msgstr "Det gick inte att hämta versionsfaktan" msgid "Please check your internet connection." msgstr "Kontrollera din Internetanslutning." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Det gick inte att köra uppgraderingsverktyget" @@ -916,14 +933,17 @@ msgstr "" "Misslyckades med att hämta listan över ändringar. \n" "Kontrollera din Internetanslutning." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Viktiga säkerhetsuppdateringar" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rekommenderade uppdateringar" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Föreslagna uppdateringar" @@ -936,71 +956,74 @@ msgstr "Bakåtporteringar" msgid "Distribution updates" msgstr "Uppdateringar för utgåva" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Övriga uppdateringar" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Version %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "Hämtar lista över ändringar..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "_Avmarkera allt" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Kontrollera alla" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Hämtningsstorlek: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Du kan installera %s uppdatering" msgstr[1] "Du kan installera %s uppdateringar" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Var god vänta, det här kan ta lite tid." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Uppdateringen är färdig" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Letar efter uppdateringar" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Från version %(old_version)s till %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Version %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Storlek: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Din distribution stöds inte längre" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -1010,16 +1033,17 @@ msgstr "" "Uppgradera till en senare version av Ubuntu Linux. Se http://www.ubuntu.com " "för mer information om hur man uppgraderar." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny distributionsutgåva \"%s\" finns tillgänglig" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Programindexet är trasigt" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1029,19 +1053,23 @@ msgstr "" "pakethanteraren \"Synaptic\" eller kör \"sudo apt-get install -f\" i en " "terminal för att rätta till det här problemet först." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1402,193 +1430,235 @@ msgstr "Fönsterstorleken" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" -"Konfigurera källorna för installerbara programvaror och uppdateringar" +msgstr "Konfigurera källorna för installerbara programvaror och uppdateringar" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Gemenskapsunderhållen" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Properitära drivrutiner för enheter" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Inskränkt programvara" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Öppen källkodsprogramvara som stöds av Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Gemenskapsunderhållen (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Öppen källkodsprogramvara underhållen av gemenskapen" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ickefria drivrutiner" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Properitära drivrutiner för enheter " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Inskränkt programvara (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Programvara begränsad av upphovsrätt eller juridiska avtal" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Bakåtporterade uppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Stöds officiellt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Uppdateringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Bakåtporteringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Gemenskapsunderhållen (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ickefri (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Stöds inte längre officiellt" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begränsad upphovsrätt" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Uppdateringar för Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Bakåtporteringar för Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Säkerhetsuppdateringar" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://ftp.se.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel programvara med icke-fria beroenden" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Icke-DFSG-kompatibel programvara" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1599,22 +1669,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Ett problem uppstod som inte gick att lösa när uppgraderingen beräknades. " #~ "Rapportera detta som ett fel. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller edubuntu-" -#~ "desktop och det gick inte att identifiera vilken version av Ubuntu du " -#~ "använder.\n" +#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller " +#~ "edubuntu-desktop och det gick inte att identifiera vilken version av " +#~ "Ubuntu du använder.\n" #~ " Installera ett av dessa paket först med synaptic eller apt-get innan du " #~ "fortsätter." @@ -1624,15 +1694,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "synaptic." #~ msgstr "" #~ "Vissa tredjepartskällor i din sources.list blev inaktiverade. Du kan " -#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " -#~ "eller med synaptic." +#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties" +#~ "\" eller med synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " -#~ "En återhämtning kördes (dpkg --configure -a)." +#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart " +#~ "tillstånd. En återhämtning kördes (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Viss programvara stöds inte officiellt längre" @@ -1644,14 +1714,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "If you don't have 'universe' enabled these packages will be suggested for " #~ "removal in the next step. " #~ msgstr "" -#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " -#~ "gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" aktiverat " -#~ "kommer dessa paket föreslås för borttagning i nästa steg. " +#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu " +#~ "enbart gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" " +#~ "aktiverat kommer dessa paket föreslås för borttagning i nästa steg. " #~ msgid "Restoring originale system state" #~ msgstr "Återställer ursprunglig systemstatus" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1661,37 +1730,30 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "nödvändiga paketet \"%s\" längre.\n" #~ "Det här tyder på ett allvarligt fel, rapportera detta som ett fel." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Ungefär %li dagar, %li timmar och %li minuter återstår" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Ungefär %li timmar och %li minuter återstår" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Ungefär %li minuter återstår" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefär %li sekunder återstår" #~ msgid "Download is complete" #~ msgstr "Hämtningen är färdig" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Hämtar fil %li av %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Uppdateringen avbryts nu. Rapportera detta som ett fel." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1700,38 +1762,38 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade.log " -#~ "och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen avbryts nu.\n" -#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." +#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade." +#~ "log och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen " +#~ "avbryts nu.\n" +#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s paket kommer att tas bort." #~ msgstr[1] "%s paket kommer att tas bort." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nytt paket kommer att installeras." #~ msgstr[1] "%s nya paket kommer att installeras." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s paket kommer att uppgraderas." #~ msgstr[1] "%s paket kommer att uppgraderas." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Du behöver hämta totalt %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" #~ "Uppgraderingen kan ta flera timmar och kan inte avbrytas under tiden." @@ -1744,8 +1806,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Uppgraderar till Ubuntu 6.06 " -#~ "LTS" +#~ "Uppgraderar till Ubuntu 6.06 LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Hämtar och installerar uppgraderingarna" @@ -1754,17 +1816,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgraderar Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem med " -#~ "nätverket eller med servern. " +#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem " +#~ "med nätverket eller med servern. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Hämtar fil %li av %li med okänd hastighet" @@ -1783,13 +1843,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Vissa uppdateringar kräver att andra program avinstalleras. Använd " -#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic eller " -#~ "kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera ditt " -#~ "system helt och hållet." +#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic " +#~ "eller kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera " +#~ "ditt system helt och hållet." #~ msgid "The following updates will be skipped:" #~ msgstr "Följande uppdateringar kommer att hoppas över:" @@ -1803,7 +1863,6 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Show details" #~ msgstr "Visa detaljer" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Ny version: %s (storlek: %s)" @@ -1818,13 +1877,14 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Du måste leta efter uppdateringar manuellt\n" #~ "\n" -#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan konfigurera " -#~ "detta beteende i \"System\" -> \"Administration\" -> " +#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan " +#~ "konfigurera detta beteende i \"System\" -> \"Administration\" -> " #~ "\"Programvaruinställningar\"." #~ msgid "" @@ -1865,8 +1925,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1884,16 +1944,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Komponenter" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" +#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" #~ "\n" -#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till exempel " -#~ "\"deb http://ftp.debian.org sarge main\"." +#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till " +#~ "exempel \"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Lägg till kanal" @@ -1911,12 +1972,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "Om automatisk kontroll av uppdateringar är inaktiverad behöver du läsa om " -#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja påminnelser " -#~ "som visas i det här läget." +#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja " +#~ "påminnelser som visas i det här läget." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1948,12 +2009,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" #~ "Uppdateringen avbryter nu. Vänligen frigör minst %s diskutrymme. Töm din " -#~ "papperskorg och ta bort temporära paket från tidigare installationer genom " -#~ "att köra \"sudo apt-get clean\"." +#~ "papperskorg och ta bort temporära paket från tidigare installationer " +#~ "genom att köra \"sudo apt-get clean\"." #~ msgid "%s remaining" #~ msgstr "%s återstår" @@ -1962,15 +2023,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Ingen giltig källa funnen" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Ingen giltig källa för uppdatering hittades när din förrådsinformation " #~ "söktes igenom.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Uppdateringen avbryts nu. Ditt system kan vara i ett oanvändbart läge. En " #~ "återställning körs nu (dpkg --configure -a)." @@ -1980,8 +2041,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" #~ "Var vänlig rapportera detta som en bugg och inkludera filerna ~/dist-" -#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts " -#~ "nu. " +#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen " +#~ "avbryts nu. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -2001,17 +2062,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analyserar ditt system\n" #~ "\n" -#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dig " -#~ "nya funktioner." +#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge " +#~ "dig nya funktioner." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Programuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dina " #~ "program nya funktioner." @@ -2021,22 +2082,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "automatically. The software package \"unattended-upgrades\" needs to be " #~ "installed therefor" #~ msgstr "" -#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer att " -#~ "installeras automatiskt. Programpaketet \"unattended-upgrades\" behöver " -#~ "därför installeras" +#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer " +#~ "att installeras automatiskt. Programpaketet \"unattended-upgrades\" " +#~ "behöver därför installeras" #~ msgid "Sections" #~ msgstr "Avdelningar:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga " -#~ "till\n" +#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga till\n" #~ "\n" #~ "APT-raden innehåller typ, plats och avdelningar för kanalen, till exempel " #~ "\"deb http://ftp.debian.org sarge main\"." @@ -2072,8 +2133,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Need to get the changes from the central server" #~ msgstr "" #~ "Nätverksinställningar\n" -#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer åt " -#~ "andra datorer" +#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer " +#~ "åt andra datorer" #~ msgid "Show available updates and choose which to install" #~ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras" @@ -2154,7 +2215,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Det går inte att uppgradera alla paket." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." +#~ msgstr "" +#~ "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." #~ msgid "The updates are being applied." #~ msgstr "Uppdateringarna verkställs." @@ -2163,11 +2225,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgradering slutförd" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " -#~ "programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " +#~ "andra programmet först." #, fuzzy #~ msgid "Updating package list..." @@ -2189,11 +2251,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " -#~ "programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " +#~ "andra programmet först." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initierar och hämtar lista med uppdateringar..." @@ -2349,16 +2411,18 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Försäkra dig om att du angav e-postadressen och aktiveringskoden korrekt" #~ msgid "" -#~ "Unable to show help because the help files were missing. Please report this " -#~ "to your vendor." +#~ "Unable to show help because the help files were missing. Please report " +#~ "this to your vendor." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till din " -#~ "leverantör." +#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till " +#~ "din leverantör." #~ msgid "" -#~ "Unable to show help because there are no applications available to view help." +#~ "Unable to show help because there are no applications available to view " +#~ "help." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är tillgängliga." +#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är " +#~ "tillgängliga." #~ msgid "Are you sure you want to open %d package information windows?" #~ msgstr "Är du säker på att du vill öppna %d fönster med paketinformation?" @@ -2599,10 +2663,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Löser beroenden" #~ msgid "" -#~ "You must agree to the licenses covering this software before installing it." +#~ "You must agree to the licenses covering this software before installing " +#~ "it." #~ msgstr "" -#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan du " -#~ "kan installera den." +#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan " +#~ "du kan installera den." #~ msgid "I Agree" #~ msgstr "Jag accepterar" @@ -3103,8 +3168,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Kanalprenumerationer på kanal %s" #~ msgid "" -#~ "You do not have permission to subscribe or unsubscribe from channels. You " -#~ "will be unable to make any changes to the subscriptions." +#~ "You do not have permission to subscribe or unsubscribe from channels. " +#~ "You will be unable to make any changes to the subscriptions." #~ msgstr "" #~ "Du har inte rättighet att prenumerera eller säga upp prenumerationer på " #~ "kanaler. Du kommer inte att kunna göra ändringar i prenumerationer." @@ -3125,8 +3190,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Privilegium" #~ msgid "" -#~ "If you remove superuser privileges from yourself, you will be unable to re-" -#~ "add them.\n" +#~ "If you remove superuser privileges from yourself, you will be unable to " +#~ "re-add them.\n" #~ "\n" #~ "Are you sure you want to do this?" #~ msgstr "" @@ -3248,8 +3313,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Information" #~ msgid "" -#~ "Unable to show help because it was not found or because you don't have any " -#~ "help viewers available." +#~ "Unable to show help because it was not found or because you don't have " +#~ "any help viewers available." #~ msgstr "" #~ "Kan inte visa hjälp eftersom den inte hittades eller eftersom du inte har " #~ "några hjälpvisare tillgängliga." @@ -3359,8 +3424,10 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Executive Summary" #~ msgstr "Sammanfattning" -#~ msgid "Update packages individually (NOTE: This is an unsupported operation)" -#~ msgstr "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" +#~ msgid "" +#~ "Update packages individually (NOTE: This is an unsupported operation)" +#~ msgstr "" +#~ "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" #~ msgid "Actual widget tag" #~ msgstr "Riktig widgettagg" @@ -3504,7 +3571,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Städar upp..." #~ msgid "" -#~ "The packages you requested are being downloaded and installed on your system." +#~ "The packages you requested are being downloaded and installed on your " +#~ "system." #~ msgstr "" #~ "Paketen du begärde håller på att hämtas och installeras på ditt system." @@ -3610,9 +3678,9 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "packages. You must free up some disk space before you can continue. Some " #~ "options include:" #~ msgstr "" -#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta de " -#~ "begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. Det " -#~ "finns en del alternativ:" +#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta " +#~ "de begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. " +#~ "Det finns en del alternativ:" #~ msgid "Removing some packages from your system" #~ msgstr "Tar bort en del paket från ditt system" @@ -3624,13 +3692,14 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Töm din cache." #~ msgid "" -#~ "Warning! There may not be sufficient disk space " -#~ "to install this package, and installation of this package may fail. You " -#~ "should free up some disk space before continuing." +#~ "Warning! There may not be sufficient disk " +#~ "space to install this package, and installation of this package may fail. " +#~ "You should free up some disk space before continuing." #~ msgstr "" #~ "Varning! Det kan finnas otillräckligt med " -#~ "diskutrymme för att installera detta paket, och installation av detta paket " -#~ "kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du fortsätter." +#~ "diskutrymme för att installera detta paket, och installation av detta " +#~ "paket kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du " +#~ "fortsätter." #~ msgid "1 Package" #~ msgstr "1 paket" @@ -3648,24 +3717,25 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "nödvändiga installationer" #~ msgid "Please wait, loading page..." -#~ msgstr "Var vänlig vänta, läser in sidan..." +#~ msgstr "" +#~ "Var vänlig vänta, läser in sidan..." #~ msgid "" #~ "You have no packages from this channel currently installed on your system." #~ msgstr "" -#~ "Du har för närvarande inte några paket från denna kanal installerade på ditt " -#~ "system." +#~ "Du har för närvarande inte några paket från denna kanal installerade på " +#~ "ditt system." #~ msgid "" -#~ "You can visit the channel's about page to " -#~ "get more information about what software is available, or you can go " +#~ "You can visit the channel's about page " +#~ "to get more information about what software is available, or you can go " #~ "directly to the install page to " #~ "install software." #~ msgstr "" -#~ "Du kan besöka kanalens om-sida för att få " -#~ "mer information om vilken programvara som är tillgänglig, eller gå direkt " -#~ "till installationssidan för att " -#~ "installera program." +#~ "Du kan besöka kanalens om-sida för att " +#~ "få mer information om vilken programvara som är tillgänglig, eller gå " +#~ "direkt till installationssidan för " +#~ "att installera program." #~ msgid "View the about page." #~ msgstr "Visa om-sidan." @@ -3677,8 +3747,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Gå tillbaka till sammanfattningen." #~ msgid "" -#~ "You don't have any packages installed from this channel. The following pre-" -#~ "defined sets of packages are available, or you may select individual " +#~ "You don't have any packages installed from this channel. The following " +#~ "pre-defined sets of packages are available, or you may select individual " #~ "packages from the Install page." #~ msgstr "" #~ "Du har inga paket installerade från denna kanal. Följande fördefinierade " @@ -3686,37 +3756,37 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "href=updater:available_page>installationssidan." #~ msgid "" -#~ "To install new software from this channel, visit the install page." +#~ "To install new software from this channel, visit the install page." #~ msgstr "" -#~ "För att installera ny programvara går du till installationssidan." +#~ "För att installera ny programvara går du till installationssidan." #~ msgid "" -#~ "To remove already installed software from this channel, visit the remove page." +#~ "To remove already installed software from this channel, visit the remove page." #~ msgstr "" -#~ "För att ta bort redan installerad programvara från denna kanal går du till " -#~ "borttagningssidan." +#~ "För att ta bort redan installerad programvara från denna kanal går du " +#~ "till borttagningssidan." #~ msgid "Unsubscribe from this channel." #~ msgstr "" -#~ "Säg upp prenumerationen på denna " -#~ "kanal." +#~ "Säg upp prenumerationen på " +#~ "denna kanal." #~ msgid "" -#~ "There is 1 update available in this channel, totalling %s of " -#~ "data to be downloaded." +#~ "There is 1 update available in this channel, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" #~ "Det finns 1 uppdatering tillgänglig i denna kanal, som kräver att " #~ "%s data hämtas." #~ msgid "" -#~ "There are %s updates available in this channel, totalling %s " -#~ "of data to be downloaded." +#~ "There are %s updates available in this channel, totalling %s of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver att " -#~ "%s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver " +#~ "att %s data hämtas." #~ msgid "Essential Updates" #~ msgstr "Nödvändiga uppdateringar" @@ -3748,34 +3818,36 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "ditt system.

" #~ msgid "" -#~ "

You can go to the Update page to view " -#~ "available updates for your software in this channel, or return to the Summary to view all available updates.

" +#~ "

You can go to the Update page to " +#~ "view available updates for your software in this channel, or return to " +#~ "the Summary to view all available updates." +#~ "

" #~ msgstr "" -#~ "

Du kan gå till uppdateringssidan för " -#~ "att se de uppdateringar till din programvara som finns i denna kanal, eller " -#~ "gå tillbaka till sammanfattningen för att se " -#~ "alla tillgängliga uppdateringar.

" +#~ "

Du kan gå till uppdateringssidan " +#~ "för att se de uppdateringar till din programvara som finns i denna kanal, " +#~ "eller gå tillbaka till sammanfattningen " +#~ "för att se alla tillgängliga uppdateringar.

" #~ msgid "" #~ "

You can go to the Summary to view all " #~ "available updates for your system.

" #~ msgstr "" -#~ "

Du kan gå till sammanfattningen för att " -#~ "se alla uppdateringar som är tillgängliga för ditt system.

" +#~ "

Du kan gå till sammanfattningen för " +#~ "att se alla uppdateringar som är tillgängliga för ditt system.

" #~ msgid "" #~ "The following packages from this channel are available for " #~ "installation." #~ msgstr "" -#~ "Följande paket från denna kanal är tillgängliga för installation." +#~ "Följande paket från denna kanal är tillgängliga för " +#~ "installation." #~ msgid "" -#~ " Package names that are in gray indicate that " -#~ "a newer version of this package is already installed." +#~ " Package names that are in gray indicate " +#~ "that a newer version of this package is already installed." #~ msgstr "" -#~ " Paketnamn som är grå indikerar att en nyare " -#~ "version av detta paket redan är installerat." +#~ " Paketnamn som är grå indikerar att en " +#~ "nyare version av detta paket redan är installerat." #~ msgid "Name:" #~ msgstr "Namn:" @@ -3817,18 +3889,18 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Du prenumererar för närvarande på alla tillgängliga kanaler!" #~ msgid "" -#~ "There is one update available for your system, totalling %s of " -#~ "data to be downloaded." +#~ "There is one update available for your system, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver att " -#~ "%s data hämtas." +#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver " +#~ "att %s data hämtas." #~ msgid "" -#~ "There are %s updates available for your system, totalling %s " -#~ "of data to be downloaded." +#~ "There are %s updates available for your system, totalling %s of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga för ditt system, som kräver " -#~ "att %s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga för ditt system, som " +#~ "kräver att %s data hämtas." #~ msgid " Of these updates, one is urgent." #~ msgstr " Utav dessa uppdateringar är en brådskande." @@ -3846,7 +3918,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Synlig felsökningsnivå, går från 0 (ingenting) till 6 (allting)" #~ msgid "Log file debugging level, ranges from 0 (nothing) to 6 (everything)" -#~ msgstr "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" +#~ msgstr "" +#~ "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" #~ msgid "The XAuthority file (usually from GDM)" #~ msgstr "XAuthority-filen (vanligtvis från GDM)" @@ -3865,11 +3938,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Hämtar kanalgrafik..." #~ msgid "" -#~ "An error occurred trying to parse the channel list. You should ensure that " -#~ "you are running a supported distribution and try again later." +#~ "An error occurred trying to parse the channel list. You should ensure " +#~ "that you are running a supported distribution and try again later." #~ msgstr "" -#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig om " -#~ "att du använder en distribution som stöds och försöka igen senare." +#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig " +#~ "om att du använder en distribution som stöds och försöka igen senare." #~ msgid "Navigation" #~ msgstr "Navigering" @@ -4075,4 +4148,4 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "translator-credits" #~ msgstr "" #~ "Christian Rose\n" -#~ "Skicka synpunkter på översättningen till sv@li.org" \ No newline at end of file +#~ "Skicka synpunkter på översättningen till sv@li.org" diff --git a/po/ta.po b/po/ta.po index cf08e19a..5766fa79 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-08-04 02:52+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -55,6 +55,7 @@ msgstr "ஒரு மாதத்திற்க்கு பின்" msgid "After %s days" msgstr "%s நாட்களுக்கு பிறகு" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -251,6 +256,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -309,6 +315,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -371,6 +378,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -381,6 +389,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -433,6 +442,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -499,13 +511,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -545,8 +558,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -592,6 +606,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +627,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -717,6 +733,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -806,14 +823,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -826,106 +846,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1247,184 +1275,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/th.po b/po/th.po index 1d64a830..17a80581 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -54,6 +54,7 @@ msgstr "หลังจาก 1 เดือน" msgid "After %s days" msgstr "หลังจาก %s วัน" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s ปรับปรุง" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "เซิร์ฟเวอร์หลัก" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "มีปัญหาขณะลบกุจแจ" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -151,8 +153,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ " -"กรุณาซ่อมโดยใช้โปรแกรม synaptic หรือ apt-get ก่อนดำเนินการต่อไป" +"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " +"หรือ apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -162,6 +164,7 @@ msgstr "ไม่สามารถปรับปรุง meta แพกเก msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" @@ -178,6 +181,7 @@ msgstr "" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" @@ -188,9 +192,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ " -"นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย คุณอาจจะลองอีกครั้งภายหลังก็ได้ " -"กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" +"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " +"คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -203,6 +206,7 @@ msgid "" "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" @@ -217,8 +221,8 @@ msgid "" msgstr "" "ระบบของคุณไม่มีอูบันตูเดสก์ท็อป คูบันตูเดสก์ท็อป หรือ เอ็ดดูบันตูเดกส์ท็อป " "แพกเกจและไม่สามารถที่จะตรวจสอบได้ว่าคุณใช้อูบันตูรุ่นไหนอยู่\n" -" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic " -"หรือโปรแกรม apt-get ก่อนดำเนินการต่อไป" +" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic หรือโปรแกรม apt-get " +"ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -233,8 +237,7 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก " -"กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" +"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" "\n" "ปัญหาคือ : \n" "'%s'" @@ -254,10 +257,9 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ " -"่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" -"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ " -"'ตกลง' ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" +"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ ่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" +"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ 'ตกลง' " +"ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -275,14 +277,13 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "ไม่เจอรายการของเซิรฟ์เวอร์เสริมสำหรับปรับปรุงขณะที่ตรวจสอบแหล่งข้อมูลของคุณ " -"นี" -"่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริม" -"ล้าสมัย\n" +"นี่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริมล้าสมัย\n" "\n" -"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก " -"'Yes' ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" +"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก 'Yes' " +"ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "สร้าง default sources?" @@ -307,8 +308,7 @@ msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" +msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -348,9 +348,9 @@ msgid "" "apt-get clean'." msgstr "" "การปรับปรุงถูกยกเลิกแล้ว กรุณาฟรีอย่างน้อย %s ของดิสก์พื้นที่บน %s " -"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-" -"get clean'" +"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" @@ -367,8 +367,8 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง " -"โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --configure -a)\n" +"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" +"configure -a)\n" "\n" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" @@ -382,8 +382,8 @@ msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ " -"installation mediaและลองอีกครั้ง " +"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " +"mediaและลองอีกครั้ง " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -397,9 +397,8 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"" -"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจาก" -"ชุมชน แต่เพียงอย่างเดียว\n" +"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจากชุมชน " +"แต่เพียงอย่างเดียว\n" "\n" "ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป" @@ -423,10 +422,9 @@ msgstr "เกิดข้อผิดพลาดขณะแก้ไขปร msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"เกิดปัญหาขึ้นขณะทำการเก็บกวาด " -"กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " +msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "คืนระบบสู่สถานะแรกเริ่ม" @@ -437,6 +435,7 @@ msgid "Fetching backport of '%s'" msgstr "ดึงพอร์ตย้อนหลังของ '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -453,9 +452,7 @@ 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/dist-" "upgrade/ in the bugreport." -msgstr "" -"ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง " -"กรุณารายงานว่านี่เป็นปัญหา" +msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา" #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -494,6 +491,7 @@ msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -521,6 +519,7 @@ msgstr "กำลังดึงไฟล์ %li จาก %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "กำลังเปลี่ยนแปลง" @@ -535,9 +534,10 @@ 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 bugreport." msgstr "" -"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" -"manager' และ กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และ " +"กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -563,17 +563,17 @@ msgstr "เกิดข้อผิดพลาดอย่างร้ายแ #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and " -"/var/log/dist-upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" -"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ " -"/etc/apt/sources.list.distUpgrade" +"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and /var/log/dist-" +"upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" +"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ /etc/apt/sources.list.distUpgrade" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -593,7 +593,7 @@ msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -607,16 +607,15 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง " -"และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" +msgstr "ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" @@ -662,6 +661,7 @@ msgid "%li seconds" msgstr "%li วินาที" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -676,13 +676,12 @@ msgstr "ต้องเริ่มระบบใหม่" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ " -"คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" +msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -697,8 +696,7 @@ msgid "" msgstr "" "ต้องการยกเลิกการปรับปรุงที่กำลังทำอยู่หรือไม่?\n" "\n" -"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง " -"ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" +"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -794,6 +792,7 @@ msgstr "ไม่สามารถดาวน์โหลดบันทึก msgid "Please check your internet connection." msgstr "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ไม่สามารถเรียกใช้เครื่องมือปรับปรุง" @@ -835,9 +834,7 @@ msgstr "ไม่สามารถเอาออกมาได้" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ " -"อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -847,8 +844,7 @@ msgstr "ไม่สามารถตรวจเช็คความถูก msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " +msgstr "ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -858,15 +854,13 @@ msgstr "ไม่สามารถยืนยันว่าเป็นขอ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว " -"%(speed)s/s" +"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -890,17 +884,19 @@ msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง " -"กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +"ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "ปรับปรุงด้านความปลอดภัยที่สำคัญ" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "การปรับปรุงที่แนะนำให้ทำ" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "การปรับปรุงที่เสนอให้ทำ" @@ -913,71 +909,74 @@ msgstr "พอร์ตย้อนหลัง" msgid "Distribution updates" msgstr "ปรับปรุงชุดเผยแพร่" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "_ปรับปรุงอื่นๆ" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "รุ่น %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "กำลังดาวน์โหลดรายการของการเปลี่ยนแปลง..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "ไ_ม่เลือกทั้งหมด" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "เ_ลือกทั้งหมด" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "ขนาดดาวน์โหลด: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "คุณสามารถติดตั้ง %s รายการปรับปรุง" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "กรุณารอสักครู่ นี่อาจจะใช้เวลาสักหน่อย" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "ปรับปรุงเสร็จสิ้นแล้ว" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "กำลังตรวจหาข้อมูลปรับปรุง" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "จากรุ่นเก่า: %(old_version)s ไปสู่รุ่นใหม่ %(new_version)s" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "รุ่น %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(ขนาด: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "ชุดเผยแพร่(distribution)ของคุณไม่มีบริการสนับสนุนแล้ว" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -987,38 +986,42 @@ msgstr "" "ปรับปรุงขึ้นไปรุ่นถัดไปของอูบันตูลีนุกซ์ กรุณาอ่าน http://www.ubuntu.com " "สำหรับรายละเอียดเพิ่มเติมในการปรับปรุงรุ่น" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "มีชุดแจกจ่ายใหม่ '%s' " -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" -"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ " -"\"Synaptic\" หรือ คำสั่ง \"sudo apt-get install -f\" " -"ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ \"Synaptic\" หรือ " +"คำสั่ง \"sudo apt-get install -f\" ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "ไม่มี" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1033,8 +1036,8 @@ msgid "" msgstr "" "คุณต้องตรวจหารายการปรับปรุงด้วยตนเอง\n" "\n" -"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื " -"คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" +"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1081,8 +1084,8 @@ msgid "" msgstr "" "ดำเนินการปรับปรุงชุดเผยแพร่ ทำการติดตั้งปรับปรุงมากที่สุดเท่าที่จะทำได้ \n" "\n" -"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น " -"ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" +"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ " +"หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1096,8 +1099,7 @@ msgstr "ซอฟต์แวร์ปรับปรุง" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" +msgstr "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1158,8 +1160,7 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู " -"กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " +"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " "รายการของซอฟต์แวร์ที่ติดตั้งและความถี่ในการเรียกใช้งานจะถูกเก็บไว้ " "และส่งโดยไม่ระบุชื่อไปที่โครงการอูบันตูอาทิตย์ละครั้ง\n" "\n" @@ -1194,10 +1195,7 @@ msgstr "ปรัปรุงทางอินเทอร์เน็ต" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "" -"" -"การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเ" -"ท่านั้น" +msgstr "การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเท่านั้น" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1288,11 +1286,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"กรุณาเติมให้ครบบรรทัด APT " -"ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" +"กรุณาเติมให้ครบบรรทัด APT ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" "\n" -"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb " -"http://ftp.debian.org sarge main\"" +"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb http://ftp." +"debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1335,9 +1332,7 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"" -"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่น" -"ได้(ถ้าเป็นไปได้)" +"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่นได้(ถ้าเป็นไปได้)" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1349,8 +1344,7 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ " -"คุณจะต้องโหลดช่องรายการใหม่เอง " +"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ คุณจะต้องโหลดช่องรายการใหม่เอง " "ตัวเลือกนี้ทำให้ซ่อนคำเตือนที่จะแสดงในกรณีนี้ได้" #: ../data/update-manager.schemas.in.h:4 @@ -1379,192 +1373,235 @@ msgstr "ขนาดของหน้าต่าง" msgid "Configure the sources for installable software and updates" msgstr "ปรับแต่งแหล่งสำหรับซอฟต์แวร์และปรับปรุงที่ติดตั้งได้" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "อูบันตู 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "ชุมชนดูแล" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "ซอฟต์แวร์จำกัดการใช้งาน" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "ซีดีรอมที่มีอูบันตู 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "ชุมชนดูแล (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "ชุมชนดูแล (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "ชุมชนดูแล ซอฟต์แวร์แบบเปิดเผย" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "ไดรเวอร์ที่ไม่ฟรี" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์ " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "ซอฟต์แวร์จำกัดการใช้งาน(Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "ซีดีรอมที่มีอูบันตู 6.06 LST 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "การปรับปรุงแบบย้อนหลัง" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "อูบันตู 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "อูบันตู 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "อูบันตู 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "ซีดีรอมที่มีอูบันตู 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "สนับสนุนอย่างเป็นทางการ" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "อูบันตู 5.04 ปรับปรุง" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "อูบันตู 5.04 พอร์ตย้อนหลัง" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "อูบันตู 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "ชุมชนดูแล (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "ซีดีรอมที่มีอูบันตู 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "ไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "จำกัดลิขสิทธิ์" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "อูบันตู 4.10 ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "อูบันตู 4.10 ปรับปรุง" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "อูบันตู 4.10 พอร์ตย้อนหลัง" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "เดเบียน 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "เดเบียน 3.1 \"Sarge\" ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "เดเบียน \"Etch\" (กำลังทดสอบ)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "เดเบียน \"Sid\" (ผันผวน)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอยู่กับไม่ฟรี" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" @@ -1616,17 +1653,16 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All " -#~ "Upgrades\" ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get " -#~ "dist-upgrade\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" +#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All Upgrades\" " +#~ "ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get dist-upgrade" +#~ "\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" #~ msgid "The following updates will be skipped:" #~ msgstr "การปรับปรุงต่อไปนี้จะถูกข้ามไป:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "เหลือประมาณ %li วินาที" @@ -1700,12 +1736,12 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" #~ "การปรับปรุงถูกยกเลิก กรุณาทำให้มีพื้นที่ว่างในดิสก์อย่างน้อย %s " -#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo " -#~ "apt-get clean'." +#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get " +#~ "clean'." #~ msgid "%s remaining" -#~ msgstr "%s เหลืออีก" \ No newline at end of file +#~ msgstr "%s เหลืออีก" diff --git a/po/tr.po b/po/tr.po index 6d03541f..7eb08d54 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-09-27 21:59+0000\n" "Last-Translator: Kayra Akman \n" "Language-Team: Turkish \n" @@ -55,6 +55,7 @@ msgstr "Bir ay sonra" msgid "After %s days" msgstr "%s gün sonra" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s güncellemeleri" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Ana sunucu" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -113,21 +116,18 @@ msgstr "Seçili dosyayı aktarmada hata" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." +msgstr "Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Anahtar kaldırmada hata" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +165,7 @@ msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" msgid "A essential package would have to be removed" msgstr "Gerekli bir paketin kaldırılması gerekmekte" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Güncelleme hesaplanamadı" @@ -181,6 +182,7 @@ msgstr "" "Lütfen bu hatayı 'update-manager' için bildirin, hata raporuna /var/log/dist-" "upgrade/ konumundaki dosyaları da ekleyin." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulamasında hata" @@ -204,9 +206,9 @@ msgstr "'%s' yüklenemiyor" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Meta-paket kestirilemedi" @@ -287,6 +289,7 @@ msgstr "" "'Evet'i seçersiniz '%s'den '%s'e kadar olan girdiler güncellenecek.\n" "'Hayır'ı seçerseniz güncelleme iptal edilecek." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Öntanımlı depolar kaydedilsin mi??" @@ -357,6 +360,7 @@ msgstr "" "Çöpünüzü boşaltın ve 'sudo apt-get clean' kullanarak önceden kurulumların " "geçici paketlerini kaldırın." +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" @@ -376,8 +380,8 @@ msgstr "" "Yükseltmeden şimdi iptal ediliyor. Sisteminiz kararsız bir durumda olabilir. " "Bir kurtarma işlemi gerçekleştirildi. (dpkg --configure -a).\n" "\n" -"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine " -"/var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." +"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine /" +"var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -428,6 +432,7 @@ msgstr "" "Temizleme sırasında bazı sorunlar oluştu. Bilgi için lütfen aşağıdaki mesaja " "bakın. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Orijinal sistem durumuna geri dönülüyor" @@ -438,6 +443,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -493,6 +499,7 @@ msgstr "Kullanılmayan yazılımlar aranıyor" msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -521,6 +528,7 @@ msgstr "Dosyalar inidiriliyor. İnen: %li Toplam: %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Değişiklikler uygulanıyor" @@ -539,6 +547,7 @@ msgstr "" "bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki dosyaları da " "ekleyin." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -564,9 +573,9 @@ msgstr "Giderilemez bir hata oluştu" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bu hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ " @@ -575,6 +584,7 @@ msgstr "" "kaydedildi." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -617,8 +627,9 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sisteminiz güncel" @@ -666,6 +677,7 @@ msgid "%li seconds" msgstr "%li saniye" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -687,6 +699,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -706,8 +719,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Yükseltmeyi tamamlamak için sistemi yeniden başlatın" +msgstr "Yükseltmeyi tamamlamak için sistemi yeniden başlatın" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -784,7 +796,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" -"Suggestions: \t\t \n" +"Suggestions: \t\t\r\n" "Yayın notları bulunamadı" #: ../UpdateManager/DistUpgradeFetcher.py:69 @@ -799,6 +811,7 @@ msgstr "Yayın notları indirilemedi" msgid "Please check your internet connection." msgstr "İnternet bağlantınızı kontrol ediniz." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Yükseltme aracı çalıştırılamadı." @@ -841,8 +854,7 @@ msgstr "Çıkarılamadı" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " +msgstr "Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -892,14 +904,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Önemli güvenlik güncelleştirmeleri" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Önerilen güncellemeler" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Teklif edilmiş güncellemeler" @@ -912,70 +927,73 @@ msgstr "Backport edilmiş yazılımlar" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Diğer güncellemeler" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Sürüm %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "Hiç_birini Seçme" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "_Hepsini Seç" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "İndirme boyutu: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "%s güncelleme kurabilirsiniz" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Lütfen bekleyin, bu işlem biraz zaman alabilir." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Güncelleme tamamlandı" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "Güncellemeler denetleniyor" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Sürüm %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(Büyüklük:%s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Kullandığınız dağıtım artık desteklenmiyor" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " @@ -986,16 +1004,17 @@ msgstr "" "Daha fazla bilgi ve yükseltme için http://www.ubuntu.com adresini ziyaret " "edin." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Yeni dağıtım yayını '%s' ulaşılabilir" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "Yazılım dizini bozulmuş" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " @@ -1005,19 +1024,23 @@ msgstr "" "durumu düzeltmek için öncelikle \"Synaptic\" paket yöneticisini kullanın ya " "da uçbirim penceresine \"sudo apt-get install -f\" komutunu yazıp çalıştırın." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Hiçbiri" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1039,8 +1062,8 @@ msgstr "Sisteminizi güncel tutun" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"CD taramada hata \n" -" \n" +"CD taramada hata\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1368,185 +1391,229 @@ msgstr "Pencere boyutu" msgid "Configure the sources for installable software and updates" msgstr "Kurulabilir yazılım ve güncellemeler için kaynakları yapılandır" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Topluluk tarafından bakılan" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Aygıtlar için kapalı kaynak sürücüler" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Kısıtlı yazılımlar" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Topluluk tarafından bakılan (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Topluluk tarafından bakılan Açık Kaynak Kodlu yazılımlar" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Özgür olmayan sürücüler" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Aygıtlar için lisanslı sürücüler " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Kısıtlı yazılımlar (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Geritaşınmış (backported) güncellemeler" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Geritaşınmış Yazılımlar (Backports)" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog' Cdrom'u" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi olarak desteklenenler" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Geritaşınmış Yazılımlar (Backports)" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Topluluk tarafından bakılan (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Özgür olmayan (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' Cdrom'u" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Artık resmi olarak desteklenmiyor" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Sınırlı telif hakkı" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Geritaşınmış Yazılımlar (Backports)" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (test)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (kararsız)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Özgür Olmayan Bağımlılığı Bulunan DFSG Uyumlu Yazılım" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG Uyumlu Olmayan Yazılım" @@ -1584,4 +1651,4 @@ msgstr "DFSG Uyumlu Olmayan Yazılım" #~ msgstr "Ubuntu 6.06 Güvenlik Güncelleştirmeleri" #~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" diff --git a/po/uk.po b/po/uk.po index 9b91ef6d..6c21a38d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-08-20 22:36+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: KBabel 1.11.2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 @@ -56,6 +56,7 @@ msgstr "Через місяць" msgid "After %s days" msgstr "Через %s днів" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Помилка видалення ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,6 +164,7 @@ msgstr "Не можливо поновити необхідні meta-пакун msgid "A essential package would have to be removed" msgstr "Це призведе до видалення !essential! пакунку системи" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" @@ -200,6 +204,7 @@ msgid "" msgstr "" "Неможливо встановити необхідний пакунок. Сповістіть про це як про помилку. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" @@ -259,6 +264,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Створити джерела за замовчуванням?" @@ -318,6 +324,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати оновлення системи?" @@ -385,6 +392,7 @@ msgstr "" "При очищенні системи виникли проблеми. Прочитайте детальнішу інформацію " "нижче. " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -395,6 +403,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -445,6 +454,7 @@ msgstr "Пошук програм, що не використовуються" msgid "System upgrade is complete." msgstr "Оновлення системи завершено." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -472,6 +482,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -488,6 +499,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -511,13 +523,14 @@ msgstr "Виникла невиправна помилка" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -558,11 +571,11 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Для запобігання втраті інформації закрийте усі програми та документи." +msgstr "Для запобігання втраті інформації закрийте усі програми та документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" @@ -574,12 +587,12 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:535 -#, fuzzy +#, fuzzy, python-format msgid "Remove %s" msgstr "Видалити %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:537 -#, fuzzy +#, fuzzy, python-format msgid "Install %s" msgstr "Встановити %s" @@ -609,6 +622,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -630,6 +644,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -740,6 +755,7 @@ msgstr "Не вдалося завантажити примітки випуск msgid "Please check your internet connection." msgstr "Будь ласка, перевірте ваше з'єднання з Інтернетом." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 #, fuzzy msgid "Could not run the upgrade tool" @@ -833,14 +849,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -853,33 +872,35 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Версія %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Розмір завантаження: %s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" @@ -887,76 +908,82 @@ msgstr[0] "Ви можете встановити %s оновлення" msgstr[1] "Ви можете встановити %s оновлення" msgstr[2] "Ви можете встановити %s оновлень" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "Будь ласка, зачекайте, це може зайняти деякий час." -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "Оновлення завершено" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "Ваш дистрибутив більше не підтримується" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" "Ви більше не будете отримувати оновлень критичних оновлень та оновлень " -"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на " -"http://www.ubuntu.com для подальшої інформації про оновлення." +"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на http://www." +"ubuntu.com для подальшої інформації про оновлення." -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1289,190 +1316,233 @@ msgstr "Розмір вікна" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Офіційно підтримуються" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Підтримується спільнотою (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Не-вільний (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Обмежені авторські права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Оновлення безпеки Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестовий)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабільний)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1483,32 +1553,32 @@ msgstr "" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Під час розрахунку оновлення виникла невиправна помилка. Будь ласка, " #~ "повідомте про це як про помилку програми. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "Ваша система не містить пакунків ubuntu-desktop, kubuntu-desktop або " #~ "edubuntu-desktop, через що не вдалося встановити, яку версію ubuntu Ви " #~ "використовуєте.\n" -#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи synaptic " -#~ "або apt-get." +#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи " +#~ "synaptic або apt-get." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" #~ "Оновлення системи щойно зупинено. Внаслідок цього система може працювати " -#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або скористайтесь " -#~ "програмою Synaptic для налаштування системи." +#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або " +#~ "скористайтесь програмою Synaptic для налаштування системи." #~ msgid "Some software no longer officially supported" #~ msgstr "Деяке програмне забезпечення більше офіційно не підтримується" @@ -1517,14 +1587,12 @@ msgstr "" #~ msgid "Restoring originale system state" #~ msgstr "Перезавантаження системи" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Залишилось близько %li хвилин" #~ msgid "Download is complete" #~ msgstr "Завантадення пакунків завершено" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Завантажується файл %li of %li at %s/s" @@ -1532,7 +1600,6 @@ msgstr "" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1542,43 +1609,41 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Будь ласка, повідмте це я помилку, включивши в повідомлення файли ~/dist-" #~ "upgrade.log and ~/dist-upgrade-apt.log . Апргрейд щойно перервано." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s пакунків буде видалено." #~ msgstr[1] "" #~ msgstr[2] "" -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s пакунків буде встановлено." #~ msgstr[1] "" #~ msgstr[2] "" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "буде проведено оновлення %s пакунка." #~ msgstr[1] "буде проведено оновлення %s пакунків." #~ msgstr[2] "буде проведено оновлення %s пакунків." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Потрібно завантажити всього %s пакунків." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може бути " -#~ "перервано протягом усього часу." +#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може " +#~ "бути перервано протягом усього часу." #~ msgid "Could not find any upgrades" #~ msgstr "Не знайдено пакунків для оновлення" @@ -1626,7 +1691,6 @@ msgstr "" #~ msgid "Show details" #~ msgstr "Показати деталі" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Нова версія: %s (Розмір: %s)" @@ -1661,16 +1725,17 @@ msgstr "" #~ msgstr "Компоненти" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" +#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" #~ "\n" -#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb " -#~ "http://ftp.debian.org sarge main\". Докладні приклади можна знайти у " +#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb http://" +#~ "ftp.debian.org sarge main\". Докладні приклади можна знайти у " #~ "документації." #~ msgid "Add Channel" @@ -1701,4 +1766,4 @@ msgstr "" #~ msgstr "Оновлення Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" diff --git a/po/update-manager.pot b/po/update-manager.pot index 6845de02..1e9dcf1b 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:04+0200\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/ur.po b/po/ur.po index d031acf9..4d127f41 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -55,6 +55,7 @@ msgstr "ایک ماھ باد" msgid "After %s days" msgstr "بعد %s دن" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -252,6 +257,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -308,6 +314,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -370,6 +377,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -380,6 +388,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -430,6 +439,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -541,8 +554,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -588,6 +602,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -607,6 +622,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +728,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -821,106 +841,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1243,187 +1271,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/urd.po b/po/urd.po index b8c3c023..978beca6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:04+0200\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" diff --git a/po/vi.po b/po/vi.po index 8fba050d..50355c11 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -54,6 +54,7 @@ msgstr "Sau một tháng" msgid "After %s days" msgstr "Sau %s ngày" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -115,16 +118,14 @@ msgstr "Gặp lỗi khi nhập tâp tin đã chọn" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." +msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -163,6 +164,7 @@ msgstr "Không thể nâng cấp các gói gốc được yêu cầu" msgid "A essential package would have to be removed" msgstr "Một gói quan trọng cần phải bị gỡ bỏ" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Không thể tính được dung lượng cần nâng cấp" @@ -176,6 +178,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gặp lỗi khi đang xác thực một số gói" @@ -202,6 +205,7 @@ msgid "" "bug. " msgstr "Không thể cài đặt được gói yêu cầu. Vui lòng thông báo lỗi này. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Không thể đoán được gói gốc" @@ -261,6 +265,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -318,6 +323,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -380,6 +386,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -390,6 +397,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -444,6 +452,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -471,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -487,6 +497,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -510,13 +521,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -553,8 +565,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." @@ -601,6 +614,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -620,6 +634,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -727,6 +742,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -824,15 +840,18 @@ msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -848,109 +867,117 @@ msgstr "Bản cập nhật Ubuntu 5.10" msgid "Distribution updates" msgstr "Đang cài đặt bản cập nhật..." +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "Phiên bản %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "Đang tải các thay đổi" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:830 +#, fuzzy, python-format msgid "Version %s" msgstr "Phiên bản %s:" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "Không còn hỗ trợ lại bản phát hành của bạn." -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1296,211 +1323,256 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Bản cập nhật Ubuntu 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Phần mềm đã đóng góp" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Không tự do (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Không tự do (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Được hỗ trợ một cách chính thức" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Không tự do (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Được hỗ trợ một cách chính thức" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Bản quyền bị giới hạn" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Bản cập nhật Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 « Sarge »" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Bản cập nhật bảo mặt ổn định Debian" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Thử ra Debian" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Không Mỹ Debian (Bất định)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1629,12 +1701,12 @@ msgstr "" #~ msgstr "" #~ "Khóa xác thực\n" #~ "\n" -#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép bạn " -#~ "thẩm tra toàn vẹn của phần mềm đã tải về." +#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép " +#~ "bạn thẩm tra toàn vẹn của phần mềm đã tải về." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Thêm tập tin khóa mới vào vòng khóa tin cây. Hãy đảm bảo bạn đã nhận khóa " #~ "này qua kênh bảo mật, và bạn tin cây người sở hữu khóa này. " @@ -1664,11 +1736,11 @@ msgstr "" #~ msgstr "Cỡ tối đa, theo MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành động " -#~ "này sẽ không sửa đổi khóa nào tự cài đặt." +#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành " +#~ "động này sẽ không sửa đổi khóa nào tự cài đặt." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Đặt cỡ tối _đa cho bộ nhớ tạm gói" @@ -1697,13 +1769,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Bản nâng cấp công bố\n" #~ "\n" -#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn giản " -#~ "hãy sử dụng nút « Cài đặt »." +#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn " +#~ "giản hãy sử dụng nút « Cài đặt »." #~ msgid "Cancel downloading the changelog" #~ msgstr "Thôi tải về Bản ghi đổi..." @@ -1759,18 +1831,19 @@ msgstr "" #~ msgstr[0] "Bạn đã chọn tất cả %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Bạn đã chọn %s trong %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "The updates are being applied." #~ msgstr "Đang áp dụng những bản cập nhật." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. Vui " -#~ "lòng đóng ứng dụng khác trước khi tiếp tục." +#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. " +#~ "Vui lòng đóng ứng dụng khác trước khi tiếp tục." #~ msgid "Updating package list..." #~ msgstr "Đạng cập nhật danh sách gói..." @@ -1783,22 +1856,22 @@ msgstr "" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản hiện " -#~ "thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " +#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản " +#~ "hiện thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " #~ " để tìm thông tin nâng cấp." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "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 " -#~ " để 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 để 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." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." \ No newline at end of file +#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." diff --git a/po/xh.po b/po/xh.po index beb100c7..8c711614 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -252,6 +257,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -308,6 +314,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -370,6 +377,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -380,6 +388,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -430,6 +439,7 @@ msgstr "" msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -541,8 +554,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" @@ -588,6 +602,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -607,6 +622,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +728,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -803,15 +820,18 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bonisa izihlaziyo" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -826,108 +846,116 @@ msgstr "" msgid "Distribution updates" msgstr "Bonisa izihlaziyo" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "" msgstr[1] "" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 #, fuzzy msgid "Checking for updates" msgstr "Bonisa izihlaziyo" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1257,184 +1285,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1502,8 +1575,8 @@ msgstr "" #~ msgstr "" #~ "Ulwazi oluhlaziyiweyo\n" #~ "\n" -#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda funda " -#~ "olu lwazi lulandelayo ngocoselelo." +#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda " +#~ "funda olu lwazi lulandelayo ngocoselelo." #~ msgid "Run now" -#~ msgstr "Phumeza inkqubo ngoku" \ No newline at end of file +#~ msgstr "Phumeza inkqubo ngoku" diff --git a/po/zh_CN.po b/po/zh_CN.po index 29018664..26a20108 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-10-05 20:36+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -54,6 +54,7 @@ msgstr "一月后" msgid "After %s days" msgstr "%s天后" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主服务器" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "删除密钥时候出错" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -150,7 +152,9 @@ msgstr "破损的软件包" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者apt-get修复它们。" +msgstr "" +"你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" +"apt-get修复它们。" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -160,6 +164,7 @@ msgstr "不能升级要求的元包" msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "无法计算升级" @@ -173,8 +178,10 @@ msgid "" msgstr "" "在计算升级时遇到一个无法解决的问题。\n" "\n" -"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文件包含在错误报告中。" +"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文" +"件包含在错误报告中。" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" @@ -184,7 +191,9 @@ 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 a list of " "unauthenticated packages." -msgstr "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软件包的列表。" +msgstr "" +"无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" +"件包的列表。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -197,6 +206,7 @@ msgid "" "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "无法猜出元包" @@ -209,8 +219,8 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-" -"desktop软件包所以无法确定你运行的ubuntu的版本。\n" +"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-desktop软件包所以无法" +"确定你运行的ubuntu的版本。\n" " 请先用新立得或apt-get安装以上所举软件包中的一个。" #: ../DistUpgrade/DistUpgradeControler.py:74 @@ -264,10 +274,12 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像或镜像信息过时了.\n" +"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像" +"或镜像信息过时了.\n" "一定要重写您的'sources.list'吗?如果选'Yes'将会更新所有'%s'到'%s'条目.\n" "如果选'no'更新将被取消." +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "生成默认的源?" @@ -303,7 +315,9 @@ 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 " "synaptic." -msgstr "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得包管理器来重新启用它们." +msgstr "" +"sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得" +"包管理器来重新启用它们." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -326,8 +340,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-get clean'命令来删除之前安装的临时软件包。" +"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-" +"get clean'命令来删除之前安装的临时软件包。" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" @@ -344,9 +360,11 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -a)。\n" +"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" +"a)。\n" "\n" -"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文件。" +"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文" +"件。" #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -397,6 +415,7 @@ msgid "" "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" @@ -407,6 +426,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -444,7 +464,8 @@ msgid "" msgstr "" "包信息被更新后核心包'%s'没有找到。\n" "\n" -"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/dist-upgrade/中的文件。" +"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/" +"dist-upgrade/中的文件。" #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -462,6 +483,7 @@ msgstr "寻找陈旧的软件包" msgid "System upgrade is complete." msgstr "系统更新完毕" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -489,6 +511,7 @@ msgstr "下载第 %li 个文件(共 %li 个文件)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在应用更新" @@ -502,8 +525,11 @@ msgstr "无法安装'%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 bugreport." -msgstr "升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-upgrade/中的文件。" +msgstr "" +"升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-" +"upgrade/中的文件。" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -530,15 +556,17 @@ msgstr "出现致命错误" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt.log。升级现在取消。\n" +"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt." +"log。升级现在取消。\n" "你原始的sources.list已保存在/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -578,8 +606,9 @@ msgstr "下载及升级会持续几个小时,且不可取消。" msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "您的系统已为最新" @@ -625,6 +654,7 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -644,6 +674,7 @@ msgstr "升级已经完成并需要重启。你要现在重启么?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -754,6 +785,7 @@ msgstr "无法下载发行说明" msgid "Please check your internet connection." msgstr "请检查你的互联网连接。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "不能运行升级工具" @@ -819,12 +851,12 @@ msgid "" msgstr "认证升级信息失败。可能是网络或服务器的问题。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下载文件 %li/%li 速度是 %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "正在下载文件 %li/%li 速度是 %s/s" @@ -846,14 +878,17 @@ msgid "" "Please check your Internet connection." msgstr "无法下载更新列表。请检查您的网络连接。" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建议更新" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "建议更新" @@ -867,109 +902,119 @@ msgstr "Backports" msgid "Distribution updates" msgstr "继续升级(_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其它更新" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 #, fuzzy msgid "Downloading list of changes..." msgstr "正在下载更新列表..." -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "取消全部(_U)" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "选中全部(_C)" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "下载文件大小:%s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "你可以安装 %s 个更新" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "请稍等,这需要花一些时间。" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "检查更新" -#: ../UpdateManager/UpdateManager.py:810 -#, fuzzy +#: ../UpdateManager/UpdateManager.py:826 +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "新版本:%s(大小:%s)" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "版本 %s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(大小:%s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "您的发行版不再被支持" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见 \n" +"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见" +"\r\n" "http://www.ubuntu.com 来获取更多有关升级的信息。" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "软件索引已被破坏" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" -"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-get install -f\"来修正这个问题。" +"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-" +"get install -f\"来修正这个问题。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "无" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -985,7 +1030,8 @@ msgid "" msgstr "" "你必须手动检测升级\n" "\n" -"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改变." +"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改" +"变." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1106,7 +1152,8 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度每周会被匿名发送给Unbuntu。\n" +"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度" +"每周会被匿名发送给Unbuntu。\n" "\n" "其结果用于流行软件支持及应用软件搜索排名。" @@ -1231,7 +1278,8 @@ msgid "" "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "输入你想增加的完整的频道 APT 命令行\n" -"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org sarge main\"。" +"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org " +"sarge main\"。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1285,7 +1333,9 @@ 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 this " "case." -msgstr "如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下要出现的提醒语。" +msgstr "" +"如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下" +"要出现的提醒语。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1314,188 +1364,232 @@ msgstr "窗口大小" msgid "Configure the sources for installable software and updates" msgstr "设定可安装和升级的源" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "社区维护(Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "设备的专有驱动" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "受限软件" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "社区维护(Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "社区维护(universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "社区维护开源软件" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "非自由驱动" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "设备的属性驱动 " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "受限软件(Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported 更新" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 移植" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'光盘" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支持" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "社区维护" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'光盘" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "官方不再支持" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版权限制" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" 安全更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (测试)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (非稳定)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "带有非自由依赖关系的DFSG兼容软件" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" @@ -1503,7 +1597,6 @@ msgstr "非DFSG兼容软件" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "受到版权或法律问题限制的软件" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下载文件 %li/%li 速度未知" @@ -1525,7 +1618,8 @@ msgstr "非DFSG兼容软件" #, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" -#~ msgstr "正在升级到 Ubuntu 6.06 LTS" +#~ msgstr "" +#~ "正在升级到 Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1553,16 +1647,15 @@ msgstr "非DFSG兼容软件" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并运行 “sudo apt-get dist-" -#~ "upgrade”来彻底更你新的系统。" +#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并" +#~ "运行 “sudo apt-get dist-upgrade”来彻底更你新的系统。" #~ msgid "The following updates will be skipped:" #~ msgstr "将跳过以下的升级包" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大约还要%li秒" @@ -1635,8 +1728,8 @@ msgstr "非DFSG兼容软件" #~ msgstr "Ubuntu 6.06 LTS 后备支持" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "在检查你的源的信息时未能找到有效的升级记录\n" #~ msgid "Repositories changed" @@ -1748,4 +1841,4 @@ msgstr "非DFSG兼容软件" #~ msgstr "CD" #~ msgid "Non-free software" -#~ msgstr "非自由软件" \ No newline at end of file +#~ msgstr "非自由软件" diff --git a/po/zh_HK.po b/po/zh_HK.po index cbf7101e..50e902bc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-06-16 01:18+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -53,6 +53,7 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 日後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -60,6 +61,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -69,6 +71,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -118,8 +121,7 @@ msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -146,7 +148,9 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復套件。" +msgstr "" +"系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" +"套件。" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -156,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級過程" @@ -168,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -177,7 +183,9 @@ 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 a list of " "unauthenticated packages." -msgstr "有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套件。" +msgstr "" +"有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套" +"件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -190,6 +198,7 @@ msgid "" "bug. " msgstr "有必須的套件無法安裝,請匯報問題。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -249,6 +258,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -305,6 +315,7 @@ msgid "" "apt-get clean'." msgstr "" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" @@ -367,6 +378,7 @@ msgid "" "more information. " msgstr "" +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -377,6 +389,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -427,6 +440,7 @@ msgstr "正在搜尋過時的軟件" msgid "System upgrade is complete." msgstr "已完成系統升級。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,6 +468,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -470,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -493,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -536,8 +553,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" @@ -583,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -602,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,6 +727,7 @@ msgstr "無法下載發行通告" msgid "Please check your internet connection." msgstr "請檢查網絡連線是否正常。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -796,14 +817,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -816,106 +840,114 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "下載大小:%s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "你可以安裝 %s 個更新套件" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "完成更新" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 #, fuzzy msgid "Your distribution is not supported anymore" msgstr "已經不再支援你用的發行版本" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1242,190 +1274,233 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "正式支援" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟件 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟件 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1「Sarge」" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1「Sarge」安全性更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian 「Etch」(測試版)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "ftp://ftp.hk.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian 「Sid」(不穩定版)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟件,但依賴於非自由軟件" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "和 DFSG 不相容的軟件" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1436,19 +1511,19 @@ msgstr "和 DFSG 不相容的軟件" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因此無法偵測正在執行哪一個版本的 " -#~ "ubuntu。\n" +#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因" +#~ "此無法偵測正在執行哪一個版本的 ubuntu。\n" #~ "請先使用 synaptic 或 apt-get 安裝上述其中一個套件。" #~ msgid "" @@ -1456,13 +1531,15 @@ msgstr "和 DFSG 不相容的軟件" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用「software-properties」工具或 synaptic " -#~ "重新啟用這些來源。" +#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用" +#~ "「software-properties」工具或 synaptic 重新啟用這些來源。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." -#~ msgstr "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." +#~ msgstr "" +#~ "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --" +#~ "configure -a)。" #~ msgid "Some software no longer officially supported" #~ msgstr "某些軟件不會再有正式支援" @@ -1470,33 +1547,27 @@ msgstr "和 DFSG 不相容的軟件" #~ msgid "Restoring originale system state" #~ msgstr "恢復原來的系統狀態" -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" #~ msgid "Download is complete" #~ msgstr "下載完成" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "升級現正中止,請匯報問題。" -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1504,17 +1575,14 @@ msgstr "和 DFSG 不相容的軟件" #~ "取代設定檔\n" #~ "「%s」?" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "準備移除 %s 個套件。" -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "準備安裝 %s 個新套件。" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "準備升級 %s 個套件。" @@ -1526,15 +1594,13 @@ msgstr "和 DFSG 不相容的軟件" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "檢驗升級套件失敗。可能是因為網路或伺服器出現問題。 " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1551,11 +1617,12 @@ msgstr "和 DFSG 不相容的軟件" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」的「標記所有升級」功能或在終端機中執行「sudo apt-get " -#~ "dist-upgrade」來更新整個系統。" +#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」" +#~ "的「標記所有升級」功能或在終端機中執行「sudo apt-get dist-upgrade」來更新" +#~ "整個系統。" #~ msgid "The following updates will be skipped:" #~ msgstr "會略過更新以下套件:" @@ -1598,16 +1665,16 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" #~ "請輸入整行你想加入的 APT 軟件庫位置\n" #~ "\n" -#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp.debian.org sarge " -#~ "main\"。你可以在文件中尋找有關該行的格式的詳細描述。" +#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp." +#~ "debian.org sarge main\"。你可以在文件中尋找有關該行的格式的詳細描述。" #~ msgid "Edit Channel" #~ msgstr "修改套件來源" @@ -1636,4 +1703,4 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 5.10 更新" \ No newline at end of file +#~ msgstr "Ubuntu 5.10 更新" diff --git a/po/zh_TW.po b/po/zh_TW.po index b1e583d0..203074cd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-04 20:51+0000\n" +"POT-Creation-Date: 2006-10-06 23:18+0200\n" "PO-Revision-Date: 2006-09-14 07:29+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" @@ -49,6 +49,7 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 天過後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -56,8 +57,9 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy +#, fuzzy, python-format msgid "%s (%s)" msgstr "%s (%s)" @@ -65,6 +67,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主要伺服器" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -114,8 +117,7 @@ msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -142,7 +144,9 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 synaptic 或 apt-get 來修恢它們。" +msgstr "" +"您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " +"synaptic 或 apt-get 來修恢它們。" #: ../DistUpgrade/DistUpgradeCache.py:207 msgid "Can't upgrade required meta-packages" @@ -152,6 +156,7 @@ msgstr "無法升級須要的元套件 (meta-package)" msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級" @@ -164,6 +169,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" @@ -173,7 +179,9 @@ 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 a list of " "unauthenticated packages." -msgstr "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證的套件。" +msgstr "" +"一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" +"的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -186,6 +194,7 @@ msgid "" "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" @@ -212,7 +221,8 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉報為臭蟲。\n" +"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉" +"報為臭蟲。\n" "\n" "錯誤訊息為:\n" "「%s」" @@ -248,11 +258,14 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror 資訊已經過時的時候發生。\n" +"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror " +"資訊已經過時的時候發生。\n" "\n" -"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' 到 '%s'。\n" +"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' " +"到 '%s'。\n" "如果選擇「否」,則更新會被取消。" +#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "產生預設的來源?" @@ -311,8 +324,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get clean'來移除先前安裝套件時的暫存檔。" +"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get " +"clean'來移除先前安裝套件時的暫存檔。" +#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" @@ -375,6 +390,7 @@ msgid "" "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " +#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "回覆原有系統狀態" @@ -385,6 +401,7 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -435,6 +452,7 @@ msgstr "尋搜不再使用的套件" msgid "System upgrade is complete." msgstr "系統升級完成。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -462,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在套用變更" @@ -477,6 +496,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:202 #, python-format msgid "" @@ -500,13 +520,14 @@ msgstr "發生嚴重錯誤" #: ../DistUpgrade/DistUpgradeViewGtk.py:356 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:487 #, python-format msgid "%d package is going to be removed." @@ -546,8 +567,9 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:518 -#: ../UpdateManager/UpdateManager.py:606 +#: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" @@ -593,6 +615,7 @@ msgid "%li seconds" msgstr "%li秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +635,7 @@ msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -720,6 +744,7 @@ msgstr "無法下載發行說明" msgid "Please check your internet connection." msgstr "請檢查您的網路連線。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -809,14 +834,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要的安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建議的安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -829,108 +857,118 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其他更新" -#: ../UpdateManager/UpdateManager.py:462 +#: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" msgstr "版本 %s: \n" -#: ../UpdateManager/UpdateManager.py:523 +#: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." msgstr "" -#: ../UpdateManager/UpdateManager.py:550 +#: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" -#: ../UpdateManager/UpdateManager.py:556 +#: ../UpdateManager/UpdateManager.py:572 msgid "_Check All" msgstr "" -#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621 +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "下載大小:%s" -#: ../UpdateManager/UpdateManager.py:617 +#: ../UpdateManager/UpdateManager.py:633 #, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "您可以安裝 %s 個更新" -#: ../UpdateManager/UpdateManager.py:650 +#: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." msgstr "請稍候,這可能需要一點時間。" -#: ../UpdateManager/UpdateManager.py:652 +#: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "更新完成" -#: ../UpdateManager/UpdateManager.py:703 +#: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" msgstr "" -#: ../UpdateManager/UpdateManager.py:810 +#: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "" -#: ../UpdateManager/UpdateManager.py:814 +#: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "版本%s" -#: ../UpdateManager/UpdateManager.py:816 +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" msgstr "(大小: %s)" -#: ../UpdateManager/UpdateManager.py:827 +#: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" msgstr "您正使用的發行版本已不再支援" -#: ../UpdateManager/UpdateManager.py:828 +#: ../UpdateManager/UpdateManager.py:844 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 " "information on upgrading." msgstr "" -"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 http://www.ubuntu.com以取得更多升級資訊。" +"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " +"http://www.ubuntu.com以取得更多升級資訊。" -#: ../UpdateManager/UpdateManager.py:847 +#: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" -#: ../UpdateManager/UpdateManager.py:882 +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:898 msgid "Software index is broken" msgstr "軟體索引損壞" -#: ../UpdateManager/UpdateManager.py:883 +#: ../UpdateManager/UpdateManager.py:899 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 terminal to fix " "this issue at first." msgstr "" -"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo apt-get install -f”來修正問題。" +"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo " +"apt-get install -f”來修正問題。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "無下載" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1254,185 +1292,229 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "設置可安裝的軟體及更新部份之來源。" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'的光碟" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "含Ubuntu 6.06 LTS 'Dapper Drake'之光碟" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'的光碟" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10更新" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'的光碟" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支援" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04更新" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟體 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟體 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "含Ubuntu 4.10 'Warty Warthog'之光碟" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限制" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10更新" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 “Sarge”" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 “Sarge” 安全性更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian “Etch”(測試版)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian “Sid”(不穩定版)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" @@ -1440,17 +1522,14 @@ msgstr "不符合 DFSG 的軟體" #~ msgid " " #~ msgstr " " -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s 個新套件將會安裝。" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s 個套件將會移除。" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s 個套件將會升級。" @@ -1458,26 +1537,29 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "套件來源的資料已經過期\n" #~ "\n" -#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套件。\n" +#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套" +#~ "件。\n" #~ "\n" #~ "您須要連線到網際網路繼續。" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "您必須自行檢查更新\n" #~ "\n" -#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。" +#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設" +#~ "定。" #~ msgid "Channel" #~ msgstr "套件來源" @@ -1492,8 +1574,8 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "金鑰" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1501,10 +1583,9 @@ msgstr "不符合 DFSG 的軟體" #~ "請輸入您想加入的完整的 APT 來源列\n" #~ "\n" #~ "\n" -#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp.debian.org sarge " -#~ "main\"。" +#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp." +#~ "debian.org sarge main\"。" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1526,26 +1607,23 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" -#~ msgstr "升級至 Ubuntu 6.06 LTS" +#~ msgstr "" +#~ "升級至 Ubuntu 6.06 LTS" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" @@ -1555,7 +1633,6 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Add _Cdrom" #~ msgstr "加入光碟(_C)" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1582,19 +1659,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Downloading and installing the upgrades" #~ msgstr "正在下載及安裝升級" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "正在下載檔案 %li/%li,速度在 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1614,14 +1687,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." -#~ msgstr "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許關閉更新提示" +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." +#~ msgstr "" +#~ "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許" +#~ "關閉更新提示" #~ msgid "Installation Media" #~ msgstr "安裝媒體" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "新版本:%s (大小:%s)" @@ -1633,15 +1707,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "請先關閉其它程式,如‘aptitude’ 或‘Synaptic’。" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/log/dist-upgrade-" -#~ "apt.log 這兩個檔案。 現在取消更新。\n" +#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/" +#~ "log/dist-upgrade-apt.log 這兩個檔案。 現在取消更新。\n" #~ "您的原始 sources.list 已被存到 /etc/apt/sources.list.distUpgrade。" -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1669,16 +1743,16 @@ msgstr "不符合 DFSG 的軟體" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-properties' 工具或 " -#~ "synaptic升級後,你可以重新啟用它。" +#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" +#~ "properties' 工具或 synaptic升級後,你可以重新啟用它。" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」功能或在終端機中執行“sudo apt-get dist-" -#~ "upgrade”來完整地更新您的系統。" +#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」" +#~ "功能或在終端機中執行“sudo apt-get dist-upgrade”來完整地更新您的系統。" #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1695,12 +1769,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "升級現正中止,請匯報問題。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." -#~ msgstr "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." +#~ msgstr "" +#~ "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" +#~ "configure -a)。" #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "升級可能需要數小時及無法在稍後任何時間取消。" #~ msgid "" @@ -1730,23 +1807,22 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "檢驗升級套件失敗。可能是因為跟伺服器的網路連接出現問題。 " -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "您總共需要下載 %s。" #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop " -#~ "套件,因此無法偵測正在執行那個版本的 ubuntu。\n" +#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop 套" +#~ "件,因此無法偵測正在執行那個版本的 ubuntu。\n" #~ " 請進行操作前使用 synaptic 或 apt-get安裝上述其中一個套件" #~ msgid "Your system has already been upgraded." @@ -1756,4 +1832,4 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "自訂(_C)" #~ msgid "_Download updates in the background, but do not install them" -#~ msgstr "在背景下載更新套件,但無須安裝(_D)" \ No newline at end of file +#~ msgstr "在背景下載更新套件,但無須安裝(_D)" -- cgit v1.2.3 From f12c7850941f961c9b176248e81479cf7332ab6d Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Mon, 9 Oct 2006 16:25:54 +0200 Subject: * fix two non translatable buttons --- data/glade/SoftwarePropertiesDialogs.glade | 2 +- data/glade/UpdateManager.glade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/glade/SoftwarePropertiesDialogs.glade b/data/glade/SoftwarePropertiesDialogs.glade index 7334d67a..f60d8a24 100644 --- a/data/glade/SoftwarePropertiesDialogs.glade +++ b/data/glade/SoftwarePropertiesDialogs.glade @@ -928,7 +928,7 @@ You need a working internet connection to continue. True True True - _Replace + _Replace True GTK_RELIEF_NORMAL True diff --git a/data/glade/UpdateManager.glade b/data/glade/UpdateManager.glade index a11a5a43..48388a12 100644 --- a/data/glade/UpdateManager.glade +++ b/data/glade/UpdateManager.glade @@ -784,7 +784,7 @@ True True True - _Upgrade + _Upgrade True GTK_RELIEF_NORMAL True -- cgit v1.2.3 From ba0fc9a5fc32bc7f43aa6043a7f05a5145e432f8 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 10 Oct 2006 18:57:13 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - run the postUpgradeRules() after the upgrade and before trying to install any missing meta-packages --- DistUpgrade/DistUpgradeCache.py | 8 ++++---- debian/changelog | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 7d0d27e0..2e21d05d 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -202,16 +202,16 @@ class MyCache(apt.Cache): # upgrade (and make sure this way that the cache is ok) self.upgrade(True) - # then see if meta-pkgs are missing - if not self._installMetaPkgs(view): - raise SystemError, _("Can't upgrade required meta-packages") - # see if our KeepInstalled rules are honored self.keepInstalledRule() # and if we have some special rules self.postUpgradeRule() + # then see if meta-pkgs are missing + if not self._installMetaPkgs(view): + raise SystemError, _("Can't upgrade required meta-packages") + # see if it all makes sense if not self._verifyChanges(): raise SystemError, _("A essential package would have to be removed") diff --git a/debian/changelog b/debian/changelog index 721ed39b..4f9c7dd0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ update-manager (0.44.17) edgy; urgency=low * memory leak fixed (lp: #43096) - -- + -- Michael Vogt Mon, 9 Oct 2006 15:24:40 +0200 update-manager (0.44.16) edgy; urgency=low -- cgit v1.2.3 From 6dd632f5233fc6c6ffe04dd2d15b633f23c5e457 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 10 Oct 2006 20:39:01 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - calculate the time spend in the ui as well (lp: #48733) * po/*: - make update-po --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeViewGtk.py | 8 ++++++-- po/am.po | 8 ++++---- po/ar.po | 8 ++++---- po/be.po | 8 ++++---- po/bg.po | 8 ++++---- po/bn.po | 8 ++++---- po/br.po | 8 ++++---- po/ca.po | 8 ++++---- po/cs.po | 8 ++++---- po/da.po | 8 ++++---- po/de.po | 8 ++++---- po/el.po | 8 ++++---- po/en_AU.po | 8 ++++---- po/en_CA.po | 8 ++++---- po/en_GB.po | 8 ++++---- po/eo.po | 8 ++++---- po/es.po | 8 ++++---- po/et.po | 8 ++++---- po/eu.po | 8 ++++---- po/fa.po | 8 ++++---- po/fi.po | 8 ++++---- po/fr.po | 8 ++++---- po/fur.po | 8 ++++---- po/gl.po | 8 ++++---- po/he.po | 8 ++++---- po/hi.po | 8 ++++---- po/hr.po | 8 ++++---- po/hu.po | 8 ++++---- po/id.po | 8 ++++---- po/it.po | 8 ++++---- po/ja.po | 8 ++++---- po/ka.po | 8 ++++---- po/ko.po | 8 ++++---- po/ku.po | 8 ++++---- po/lt.po | 8 ++++---- po/lv.po | 8 ++++---- po/mk.po | 8 ++++---- po/ms.po | 8 ++++---- po/nb.po | 8 ++++---- po/ne.po | 8 ++++---- po/nl.po | 8 ++++---- po/nn.po | 8 ++++---- po/no.po | 8 ++++---- po/oc.po | 8 ++++---- po/pa.po | 8 ++++---- po/pl.po | 8 ++++---- po/pt.po | 8 ++++---- po/pt_BR.po | 8 ++++---- po/qu.po | 8 ++++---- po/ro.po | 8 ++++---- po/ru.po | 8 ++++---- po/rw.po | 8 ++++---- po/sk.po | 8 ++++---- po/sl.po | 8 ++++---- po/sq.po | 8 ++++---- po/sr.po | 8 ++++---- po/sv.po | 8 ++++---- po/ta.po | 8 ++++---- po/th.po | 8 ++++---- po/tr.po | 8 ++++---- po/uk.po | 8 ++++---- po/update-manager.pot | 8 ++++---- po/ur.po | 8 ++++---- po/urd.po | 8 ++++---- po/vi.po | 8 ++++---- po/xh.po | 8 ++++---- po/zh_CN.po | 8 ++++---- po/zh_HK.po | 8 ++++---- po/zh_TW.po | 8 ++++---- 70 files changed, 281 insertions(+), 274 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index ece5feda..77682ef0 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,6 @@ +2006-10-10: + - fix time calculation + - fix kubuntu upgrade case 2006-10-06: - fix source.list rewrite corner case bug (#64159) 2006-10-04: diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index e77fe858..11b3e041 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -198,6 +198,7 @@ class GtkInstallProgressAdapter(InstallProgress): def conffile(self, current, new): logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current) + start = time.time() #self.expander.set_expanded(True) prim = _("Replace the customized configuration file\n'%s'?") % current sec = _("You will lose any changes you have made to this " @@ -216,6 +217,7 @@ class GtkInstallProgressAdapter(InstallProgress): self.parent.textview_conffile.get_buffer().set_text(_("The 'diff' command was not found")) res = self.parent.dialog_conffile.run() self.parent.dialog_conffile.hide() + self.time_ui += time.time() - start # if replace, send this to the terminal if res == gtk.RESPONSE_YES: self.term.feed_child("y\n") @@ -242,9 +244,11 @@ class GtkInstallProgressAdapter(InstallProgress): self.last_activity = time.time() self.activity_timeout_reported = False delta = self.last_activity - self.start_time + # time wasted in conffile questions (or other ui activity) + delta -= self.time_ui time_per_percent = (float(delta)/percent) eta = (100.0 - self.percent) * time_per_percent - # only show if we have some sensible data + # only show if we have some sensible data (60sec < eta < 2days) if eta > 61.0 and eta < (60*60*24*2): self.progress.set_text(_("About %s remaining") % FuzzyTimeToStr(eta)) else: @@ -588,11 +592,11 @@ if __name__ == "__main__": fp = GtkFetchProgressAdapter(view) ip = GtkInstallProgressAdapter(view) - cache = apt.Cache() for pkg in sys.argv[1:]: cache[pkg].markInstall() cache.commit(fp,ip) + sys.exit(0) #sys.exit(0) ip.conffile("TODO","TODO~") diff --git a/po/am.po b/po/am.po index 7bb6aaf2..86dfd3b5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-11 10:15+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" @@ -156,7 +156,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -924,11 +924,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ar.po b/po/ar.po index c38adbbd..a5b1cddc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-05 12:39+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" @@ -156,7 +156,7 @@ msgstr "" "هذا النظام يحتوي على رزم مكسورة لا يمكن إصلاحها من هذا البرنامج, الرجاء " "العمل على إصلاحها أولا بواسطة apt-get أو synaptic قبل الإستمرار" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "لا يمكن تحديث الرزم العليا المطلوبة" @@ -954,11 +954,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "فهرس البرامج تالف" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/be.po b/po/be.po index d53002d6..0f693ff0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-07-06 06:10+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -157,7 +157,7 @@ msgstr "" "выправіць у гэтай праграме. Калі ласка, спачатку выпраўце іх з дапамогай " "synaptic ці apt-get перш чым працягваць." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Немагчыма абнавіць неабходныя мэтапакеты" @@ -958,11 +958,11 @@ msgid "New distribution release '%s' is available" msgstr "Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Пашкоджаны індэкс праграм" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/bg.po b/po/bg.po index d630f54b..8ca2c38c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -163,7 +163,7 @@ msgstr "" "този софтуер. Моля, поправете ги със synaptic или apt-get преди да " "продължите!" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Не може да бъдат надградени изисквани мета-пакети" @@ -1033,11 +1033,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/bn.po b/po/bn.po index e2eec2cf..edb3c9f2 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -156,7 +156,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "দরকারী meta-packages আপগ্রেড করতে পারে নি" @@ -964,11 +964,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/br.po b/po/br.po index cda3200d..daab1fb3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -156,7 +156,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -924,11 +924,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ca.po b/po/ca.po index 0ce2d339..e92100ae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -163,7 +163,7 @@ msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb " "aquesta aplicació. Utilitzeu el Synaptic o apt-get abans de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" @@ -1010,11 +1010,11 @@ msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/cs.po b/po/cs.po index 43bb25e7..b2d57499 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" @@ -160,7 +160,7 @@ msgstr "" "opraveny. Před pokračováním je prosím opravte použitím programu synaptic " "nebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Nemohu aktualizovat požadované meta-balíky" @@ -1054,11 +1054,11 @@ msgid "New distribution release '%s' is available" msgstr "Nové vydání distribuce '%s' je k dispozici" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Seznam softwaru je poškozen" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/da.po b/po/da.po index ee6d9106..1d1b4a93 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -158,7 +158,7 @@ msgstr "" "Dit system indeholder ødelagte pakker som ikke kunne repareres med dette " "program. Reparér dem venligst med synaptic eller apt-get, før du fortsætter." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke opgradere de krævede metapakker" @@ -1039,11 +1039,11 @@ msgid "New distribution release '%s' is available" msgstr "Ny distributionsudgivelse \"%s\" er tilgængelig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Softwareindekset er ødelagt" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/de.po b/po/de.po index 94bfb9aa..66fd6195 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -164,7 +164,7 @@ msgstr "" "werden können. Bitte reparieren Sie diese mit Synaptic oder apt-get, bevor " "Sie fortfahren." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" @@ -1065,11 +1065,11 @@ msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/el.po b/po/el.po index 152bc4a7..bd4c7c91 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -161,7 +161,7 @@ msgstr "" "διορθωθούν με αυτό το λογισμικό. Παρακαλώ διορθώστε τα μέσω synaptic ή apt-" "get για να συνεχίσετε." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετα-πακέτων" @@ -1050,11 +1050,11 @@ msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/en_AU.po b/po/en_AU.po index f3bc426b..a4122117 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-11 09:53+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" @@ -155,7 +155,7 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" @@ -994,11 +994,11 @@ msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/en_CA.po b/po/en_CA.po index 11810e63..85c1ba9d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:42+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -157,7 +157,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -958,11 +958,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/en_GB.po b/po/en_GB.po index e35595ad..7c3c08e1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 04:33+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" @@ -157,7 +157,7 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" @@ -1029,11 +1029,11 @@ msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/eo.po b/po/eo.po index 5e05fe52..5bc93b67 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-07-24 21:11+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" @@ -154,7 +154,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -937,11 +937,11 @@ msgid "New distribution release '%s' is available" msgstr "Nova distribua eldono '%s' estas disponebla" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/es.po b/po/es.po index 84169464..746fbaa7 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 21:00+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -164,7 +164,7 @@ msgstr "" "software. Por favor, arréglelos primero usando Synaptic o apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "No se han podido actualizar los meta-paquetes requeridos" @@ -1051,11 +1051,11 @@ msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "El índice de software está dañado" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/et.po b/po/et.po index 42f76dd0..3feaf17f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-10 17:42+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" @@ -155,7 +155,7 @@ msgstr "" "parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" "\" enne jätkamist." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Ei suuda uuendada nõutud metapakette" @@ -928,11 +928,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/eu.po b/po/eu.po index 3b20b887..0a434468 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-08 23:53+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" @@ -164,7 +164,7 @@ msgstr "" "Zure sistemak hautsitako paketeak ditu eta ezin izan dira konpondu aplikazio " "honekin. Konpon itzazu lehenbait lehen snaptic edo apt-get erabiliz." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "Ezin izan dira berritu beharrezko meta-paketeak" @@ -936,11 +936,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/fa.po b/po/fa.po index 89d56969..838bf5ef 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-08 13:47+0000\n" "Last-Translator: Pedram Ganjeh Hadidi \n" @@ -153,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -917,11 +917,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/fi.po b/po/fi.po index a4844337..7e1cb3cc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 07:42+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -160,7 +160,7 @@ msgstr "" "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get -komentoa ennen " "jatkamista." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Tarvittavia metapaketteja ei voi päivittää" @@ -1033,11 +1033,11 @@ msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/fr.po b/po/fr.po index 8603e1f8..d6a281bd 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 17:26+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" @@ -162,7 +162,7 @@ msgstr "" "ce logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou d'apt-get " "avant de continuer." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Les meta-paquets désirés n'ont pu être mis à jour" @@ -1050,11 +1050,11 @@ msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/fur.po b/po/fur.po index fbf9b393..e06a067b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/gl.po b/po/gl.po index 6e2f5b3b..8c3220fb 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-25 21:24+0000\n" "Last-Translator: Xosé \n" "Language-Team: galician\n" @@ -164,7 +164,7 @@ msgstr "" "software. Por favor, arránxeos primeiro usando Synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Non se puideron actualizar os meta-paquetes necesarios" @@ -1027,11 +1027,11 @@ msgid "New distribution release '%s' is available" msgstr "Está dispoñible a nova versión '%s' da distribución" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está danado" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/he.po b/po/he.po index 3199ed27..7ff0ef36 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-30 14:09+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -161,7 +161,7 @@ msgstr "" "במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " "באמצעות synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" @@ -971,11 +971,11 @@ msgid "New distribution release '%s' is available" msgstr "גירסה חדשה של ההפצה, \"%s\", זמינה" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "אינדקס התוכנות פגום" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/hi.po b/po/hi.po index a23f976b..e89e13d6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/hr.po b/po/hr.po index 154fd296..14bfbb53 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:38+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -159,7 +159,7 @@ msgstr "" "Vaš sistem sadrži pokvarene pakete koji nisu mogli biti popravljeni sa ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Ne mogu nadograditi potrebne meta-pakete" @@ -1047,11 +1047,11 @@ msgid "New distribution release '%s' is available" msgstr "Novo izdanje distribucije, '%s', je dostupno" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Popis programa je oštećen" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/hu.po b/po/hu.po index 2e1c6b18..8512995a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 10:07+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -159,7 +159,7 @@ msgstr "" "javíthatóak. Kérem, először javítsa ki őket a synaptic vagy az apt-get " "segítségével." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "A szükséges meta-csomagok nem frissíthetőek" @@ -1042,11 +1042,11 @@ msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "A szoftverindex sérült" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/id.po b/po/id.po index 210d7c10..961425bc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:38+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -160,7 +160,7 @@ msgstr "" "perangkat lunak ini. Silakan perbaiki terlebih dahulu dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan hal ini." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" @@ -1030,11 +1030,11 @@ msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/it.po b/po/it.po index 90005ae0..fa0b41c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 12:46+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -163,7 +163,7 @@ msgstr "" "con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" "\" per risolvere il problema." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Impossibile aggiornare i meta-pacchetti richiesti" @@ -1050,11 +1050,11 @@ msgid "New distribution release '%s' is available" msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'indice del software è danneggiato" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ja.po b/po/ja.po index bbd32963..bf52e0d3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -162,7 +162,7 @@ msgstr "" "システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" "す。 Synaptic や apt-get を使って最初に修正してください。" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "要求されたメタパッケージがアップグレードできません" @@ -1021,11 +1021,11 @@ msgid "New distribution release '%s' is available" msgstr "新しいディストリビューション '%s' にアップグレードできます" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ka.po b/po/ka.po index 53b668c7..a6abf913 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -164,7 +164,7 @@ msgstr "" "პროგრამით. ჯერ გამართეთ გაფუჭებული პაკეტები synaptic ან apt-get პროგრამით და " "შემდეგ გააგრძელეთ." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "საჭჳრო მეტა-პაკეტების განახლება ვერ მოხერხდა" @@ -1000,11 +1000,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 #, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " diff --git a/po/ko.po b/po/ko.po index 2ee4468a..10df3e74 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 11:33+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" @@ -156,7 +156,7 @@ msgstr "" "이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" "냅틱이나 apt-get을 사용하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" @@ -1006,11 +1006,11 @@ msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'을(를) 설치할 수 있습니다" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ku.po b/po/ku.po index 6f6e1835..54e03ec6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-04 06:52+0000\n" "Last-Translator: ElîxanLoran \n" "Language-Team: Kurdish \n" @@ -162,7 +162,7 @@ msgstr "" "dihewîne. Berî ku tu berdewam bikî ji kerema xwe re van bernameyan bi " "synaptic an jî i apt-get sererast bikî" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" @@ -1019,11 +1019,11 @@ msgid "New distribution release '%s' is available" msgstr "Weşana belavkariya nû dikare bigihêje '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Pêrista nivîsbariyê xera bûye" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/lt.po b/po/lt.po index 4ba906c9..d1e1d4d6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -160,7 +160,7 @@ msgstr "" "programa. Prieš tęsdami pirmiausia sutaisykite juos naudodamiesi „synaptic“ " "arba „apt-get“." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Negalima atnaujinti reikiamų metapaketų" @@ -1026,11 +1026,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/lv.po b/po/lv.po index 5b5b8394..71224185 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 19:12+0000\n" "Last-Translator: mixat \n" "Language-Team: Latvian \n" @@ -155,7 +155,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -927,11 +927,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/mk.po b/po/mk.po index f9f85504..c7faea21 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -161,7 +161,7 @@ msgstr "" "Вашиот систем содржи оштетени пакети кои не може да се поправат со овој " "софтвер. Ве молам поправете ги со Синаптик или apt-get пред да продолжите." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Не може да се надградат потребните мета пакети" @@ -1012,11 +1012,11 @@ msgid "New distribution release '%s' is available" msgstr "Новото издание на дистрибуцијата, '%s', е достапно" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексот на софтвер е расипан" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ms.po b/po/ms.po index 71e50743..b6e8ea95 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -161,7 +161,7 @@ msgstr "" "menggunakan sofwer ini. Sila baiki dahulu menggunakan synaptic atau apt-get " "sebelum meneruskan." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" @@ -984,11 +984,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/nb.po b/po/nb.po index 9d1ae679..ffbc5c39 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -166,7 +166,7 @@ msgstr "" "av dette programmet. Vennligst rett opp i dette ved å bruke Synaptic eller " "apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke oppgradere nødvendige meta-pakker" @@ -1044,11 +1044,11 @@ msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ne.po b/po/ne.po index 57911ef0..2208de09 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -157,7 +157,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -950,11 +950,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/nl.po b/po/nl.po index 056cadef..412ea2ae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -164,7 +164,7 @@ msgstr "" "met deze software. Repareer deze eerst met synaptic of apt-get voordat u " "verder gaat." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan de vereiste meta-pakketten niet upgraden" @@ -1055,11 +1055,11 @@ msgid "New distribution release '%s' is available" msgstr "De nieuwe Ubuntu-versie '%s' is beschikbaar" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software-index is beschadigd" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/nn.po b/po/nn.po index b9646447..ad52df59 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-19 15:52+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" @@ -158,7 +158,7 @@ msgstr "" "Systemet ditt inneheld øydelagde pakkar som ikkje kunne reparerast med denne " "programvaren. Reparer dei med synaptic eller apt-get før du held fram." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" @@ -947,11 +947,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/no.po b/po/no.po index 78f578db..2bbaac2b 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -157,7 +157,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -955,11 +955,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/oc.po b/po/oc.po index 19b234ac..d09ca31f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-30 00:43+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -159,7 +159,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -936,11 +936,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/pa.po b/po/pa.po index 7b3574df..25960a09 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -154,7 +154,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -934,11 +934,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/pl.po b/po/pl.po index cbd79878..f438b3ec 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-02 19:44+0000\n" "Last-Translator: White Eagle \n" "Language-Team: Polish \n" @@ -158,7 +158,7 @@ msgstr "" "kontynuowaniem należy je naprawić używając Synaptic Menedżer Pakietów lub " "apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Nie można zaktualizować wymaganych meta-pakietów" @@ -1018,11 +1018,11 @@ msgid "New distribution release '%s' is available" msgstr "Nowe wydanie dystrybucji \"%s\" jest dostępne" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/pt.po b/po/pt.po index 227583eb..b58467c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 18:27+0000\n" "Last-Translator: Susana \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -159,7 +159,7 @@ msgstr "" "este software. Por favor corrija-os usando o synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível actualizar os meta-pacotes necessários" @@ -1039,11 +1039,11 @@ msgid "New distribution release '%s' is available" msgstr "Está disponível a nova versão '%s' da distribuição" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está quebrado" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/pt_BR.po b/po/pt_BR.po index def6479d..a6f8f269 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-02 11:49+0000\n" "Last-Translator: Andre Noel \n" "Language-Team: Ubuntu-BR \n" @@ -161,7 +161,7 @@ msgstr "" "este programa. Por favor, corrija-os primeiro utilizando o Synaptic ou apt-" "get antes de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível atualizar os meta-pacotes requeridos" @@ -1026,11 +1026,11 @@ msgid "New distribution release '%s' is available" msgstr "Uma nova versão da distribuição '%s' está disponível" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O index do software está quebrado" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/qu.po b/po/qu.po index d8a39c96..78b14d30 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Quechua \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ro.po b/po/ro.po index e11b90cb..5bde5c14 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -161,7 +161,7 @@ msgstr "" "reparate cu acest program. Înainte de a continua vă rugăm să le remediaţi " "utilizând synaptic sau apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Este imposibilă actualizarea meta-pachetelor cerute" @@ -1024,11 +1024,11 @@ msgid "New distribution release '%s' is available" msgstr "Noua versiune '%s' este disponibilă" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indexul software este deteriorat" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ru.po b/po/ru.po index 8274052c..a5b5e36a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-03 02:07+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -160,7 +160,7 @@ msgstr "" "данной программой. Пожалуйста, исправьте их, используя synaptic или apt-get, " "прежде чем продолжить." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Невозможно обновить требуемые мета-пакеты" @@ -1022,11 +1022,11 @@ msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индекс программ поврежден" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/rw.po b/po/rw.po index 4d7d8978..506ca601 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -165,7 +165,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -956,11 +956,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/sk.po b/po/sk.po index 34c34f09..50335ccb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -160,7 +160,7 @@ msgstr "" "Váš systém obsahuje poškodené balíky, ktoré nemôžu byť týmto programom " "opravené. Pred pokračovaním ich opravte programom synaptic alebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Nemôžem aktualizovať požadované meta-balíky" @@ -1036,11 +1036,11 @@ msgid "New distribution release '%s' is available" msgstr "K dispozícii je nové vydanie distribúcie '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Index softvéru je poškodený" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/sl.po b/po/sl.po index a5582fbc..34f6b509 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-01 13:08+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" @@ -159,7 +159,7 @@ msgstr "" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Ne morem nadgraditi zahtevanih meta-paketov" @@ -962,11 +962,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/sq.po b/po/sq.po index 10e0f7bb..e362c418 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-30 21:20+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" @@ -162,7 +162,7 @@ msgstr "" "softuer.Ju lutemi riparoni këtë me Synaptic ose apt-get, para se të shkoni " "përpara." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." @@ -942,11 +942,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/sr.po b/po/sr.po index d433222d..7de46d87 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-01 10:04+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" @@ -165,7 +165,7 @@ msgstr "" "софтвером. Молим вас прво њих поправите користећи synaptic или apt-get прије " "него што наставите." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -947,11 +947,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/sv.po b/po/sv.po index 61bc47ff..3630e8d5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 03:32+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -160,7 +160,7 @@ msgstr "" "programmet. Reparera dem först med synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan inte uppdatera de obligatoriska meta-paketen" @@ -1039,11 +1039,11 @@ msgid "New distribution release '%s' is available" msgstr "Ny distributionsutgåva \"%s\" finns tillgänglig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programindexet är trasigt" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ta.po b/po/ta.po index 5766fa79..25ea2785 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-04 02:52+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -926,11 +926,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/th.po b/po/th.po index 17a80581..2b9c2bae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -156,7 +156,7 @@ msgstr "" "ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " "หรือ apt-get ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "ไม่สามารถปรับปรุง meta แพกเกจที่ต้องการได้" @@ -992,11 +992,11 @@ msgid "New distribution release '%s' is available" msgstr "มีชุดแจกจ่ายใหม่ '%s' " #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/tr.po b/po/tr.po index 7eb08d54..495e1825 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-27 21:59+0000\n" "Last-Translator: Kayra Akman \n" "Language-Team: Turkish \n" @@ -157,7 +157,7 @@ msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları synaptic veya apt-get kullanarak düzeltin." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" @@ -1010,11 +1010,11 @@ msgid "New distribution release '%s' is available" msgstr "Yeni dağıtım yayını '%s' ulaşılabilir" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Yazılım dizini bozulmuş" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/uk.po b/po/uk.po index 6c21a38d..1e85b1f9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-20 22:36+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" @@ -155,7 +155,7 @@ msgstr "" "Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " "цією програмою. Скористайтесь перш програмами synaptic чи apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Не можливо поновити необхідні meta-пакунки" @@ -956,11 +956,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/update-manager.pot b/po/update-manager.pot index 1e9dcf1b..67658f1b 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/ur.po b/po/ur.po index 4d127f41..12322795 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -921,11 +921,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/urd.po b/po/urd.po index 978beca6..b0bbdbf0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -921,11 +921,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/vi.po b/po/vi.po index 50355c11..25886b33 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -156,7 +156,7 @@ msgstr "" "Hệ thống của bạn chứa các gói tin bị lỗi và không thể sửa được bằng phần mềm " "này. Hãy sửa chúng dùng các gói synaptic hoặc apt-get trước khi tiếp tục." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Không thể nâng cấp các gói gốc được yêu cầu" @@ -950,11 +950,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/xh.po b/po/xh.po index 8c711614..d18e6633 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -153,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -928,11 +928,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/zh_CN.po b/po/zh_CN.po index 26a20108..41d42065 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:36+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -156,7 +156,7 @@ msgstr "" "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" "apt-get修复它们。" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "不能升级要求的元包" @@ -985,11 +985,11 @@ msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "软件索引已被破坏" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/zh_HK.po b/po/zh_HK.po index 50e902bc..a1cc8f61 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-16 01:18+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -152,7 +152,7 @@ msgstr "" "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" "套件。" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " diff --git a/po/zh_TW.po b/po/zh_TW.po index 203074cd..2ae0134e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-14 07:29+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" @@ -148,7 +148,7 @@ msgstr "" "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " "synaptic 或 apt-get 來修恢它們。" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "無法升級須要的元套件 (meta-package)" @@ -938,11 +938,11 @@ msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "軟體索引損壞" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 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 terminal to fix " -- cgit v1.2.3 From 3b322f37caa66b7fce40061e70273eb75248ffed Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 11 Oct 2006 18:56:43 +0200 Subject: * debian/control: - add python-gconf dependency / remove python-gnome2 dependency * DistUpgrade/DistUpgradeViewGtk.py: - run while gtk_events_pending()/gtk_main_iteration() after information() --- DistUpgrade/DistUpgradeViewGtk.py | 2 ++ debian/changelog | 8 ++++++++ debian/control | 3 +-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 11b3e041..3dcfb7ed 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -458,6 +458,8 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): self.dialog_information.window.set_functions(gtk.gdk.FUNC_MOVE) self.dialog_information.run() self.dialog_information.hide() + while gtk.events_pending(): + gtk.main_iteration() def error(self, summary, msg, extended_msg=None): self.dialog_error.set_transient_for(self.window_main) diff --git a/debian/changelog b/debian/changelog index 4f9c7dd0..fc133de0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +update-manager (0.45) edgy; urgency=low + + * debian/control: + - added dependency on python-gconf + - removed recommends on python-gnome2 + + -- Michael Vogt Wed, 11 Oct 2006 18:32:17 +0200 + update-manager (0.44.17) edgy; urgency=low * memory leak fixed (lp: #43096) diff --git a/debian/control b/debian/control index 7ed4c7a5..0702fa9e 100644 --- a/debian/control +++ b/debian/control @@ -7,8 +7,7 @@ Standards-Version: 3.6.2 Package: update-manager Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus, python-vte, gksu -Recommends: python-gnome2 +Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus, python-vte, gksu, python-gconf Description: GNOME application that manages apt updates This is the GNOME apt update manager. It checks for updates and lets the user choose which to install. -- cgit v1.2.3 From 2ceb68d859ddc4f77db85d5f2348e615c33928d4 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 11 Oct 2006 20:45:01 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - use prev_step instead of last_step to make more clear what it is all about - check if the gtk-icon-cache needs to be reloaded on each step --- DistUpgrade/DistUpgradeViewGtk.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 3dcfb7ed..b2aff8dc 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -323,9 +323,10 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): gtk.window_set_default_icon(icons.load_icon("update-manager", 32, 0)) SimpleGladeApp.__init__(self, gladedir+"/DistUpgrade.glade", None, domain="update-manager") - self.last_step = 0 # keep a record of the latest step + self.prev_step = 0 # keep a record of the latest step # we dont use this currently #self.window_main.set_keep_above(True) + self.icontheme = gtk.icon_theme_get_default() self.window_main.realize() self.window_main.window.set_functions(gtk.gdk.FUNC_MOVE) self._opCacheProgress = GtkOpProgress(self.progressbar_cache) @@ -414,7 +415,7 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): label.hide() def abort(self): size = gtk.ICON_SIZE_MENU - step = self.last_step + step = self.prev_step if step > 0: image = getattr(self,"image_step%i" % step) arrow = getattr(self,"arrow_step%i" % step) @@ -422,18 +423,20 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): image.show() arrow.hide() def setStep(self, step): - # first update the "last" step as completed + if self.icontheme.rescan_if_needed(): + logging.debug("icon theme changed, re-reading") + # first update the "previous" step as completed size = gtk.ICON_SIZE_MENU attrlist=pango.AttrList() - if self.last_step: - image = getattr(self,"image_step%i" % self.last_step) - label = getattr(self,"label_step%i" % self.last_step) - arrow = getattr(self,"arrow_step%i" % self.last_step) + if self.prev_step: + image = getattr(self,"image_step%i" % self.prev_step) + label = getattr(self,"label_step%i" % self.prev_step) + arrow = getattr(self,"arrow_step%i" % self.prev_step) label.set_property("attributes",attrlist) image.set_from_stock(gtk.STOCK_APPLY, size) image.show() arrow.hide() - self.last_step = step + self.prev_step = step # show the an arrow for the current step and make the label bold image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) -- cgit v1.2.3 From 830b5233ef8775cb39720fa1b1b48260fd27c9fd Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 11 Oct 2006 22:13:06 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - keep a png pixbuf loader refernce around --- DistUpgrade/Changelog | 7 +++++++ DistUpgrade/DistUpgradeViewGtk.py | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 77682ef0..d86f520f 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,10 @@ +2006-10-11: + - keep pixbuf loader reference around so that we + have one after the upgrade when the old + /usr/lib/gtk-2.0/loader/2.4.0/ loader is gone. + This fixes the problem of missing stock-icons + after the upgrade. Also revalidate the theme + in each step. 2006-10-10: - fix time calculation - fix kubuntu upgrade case diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index b2aff8dc..b176e8f0 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -327,6 +327,11 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): # we dont use this currently #self.window_main.set_keep_above(True) self.icontheme = gtk.icon_theme_get_default() + # we keep a reference pngloader around so that its in memory + # -> this avoid the issue that during the dapper->edgy upgrade + # the loaders move from /usr/lib/gtk/2.4.0/loaders to 2.10.0 + self.pngloader = gtk.gdk.PixbufLoader("png") + self.window_main.realize() self.window_main.window.set_functions(gtk.gdk.FUNC_MOVE) self._opCacheProgress = GtkOpProgress(self.progressbar_cache) -- cgit v1.2.3 From d1b8c72ce90713b807bc231b949494e19867b789 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 12 Oct 2006 11:18:07 +0200 Subject: * typo fix --- DistUpgrade/DistUpgradeCache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 2e21d05d..f6e6cad8 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -349,7 +349,7 @@ class MyCache(apt.Cache): self.restore_snapshot() return False except (SystemError,KeyError),e: - loggging.warning("_tryMarkObsoleteForRemoval failed for '%s' (%s)" % (pkgname,e)) + logging.warning("_tryMarkObsoleteForRemoval failed for '%s' (%s)" % (pkgname,e)) self.restore_snapshot() return False return True -- cgit v1.2.3 From 70019d57e2877ea7c3847d13ffea4378d4a8e9ff Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 13 Oct 2006 18:48:59 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - check for existance of cdroms.list before making a backup --- DistUpgrade/Changelog | 2 ++ DistUpgrade/DistUpgradeControler.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index d86f520f..36d064d6 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-12: + - check if cdrom.lst actually exists before copying it 2006-10-11: - keep pixbuf loader reference around so that we have one after the upgrade when the old diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 7b35f3c8..bd7f64c8 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -60,7 +60,8 @@ class AptCdrom(object): if backup_ext: cdromstate = os.path.join(apt_pkg.Config.FindDir("Dir::State"), apt_pkg.Config.Find("Dir::State::cdroms")) - shutil.copy(cdromstate, cdromstate+backup_ext) + if os.path.exists(cdromstate): + shutil.copy(cdromstate, cdromstate+backup_ext) # do the actual work apt_pkg.Config.Set("Acquire::cdrom::mount",self.cdrompath) apt_pkg.Config.Set("APT::CDROM::NoMount","true") -- cgit v1.2.3 From 5ba90da43968f23845a572f801025a88f344c7b5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 13 Oct 2006 19:12:33 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - log held-back too --- DistUpgrade/DistUpgradeControler.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index bd7f64c8..f91606f8 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -320,13 +320,17 @@ class DistUpgradeControler(object): inst = [] up = [] rm = [] + held = [] for pkg in self.cache: if pkg.markedInstall: inst.append(pkg.name) elif pkg.markedUpgrade: up.append(pkg.name) elif pkg.markedDelete: rm.append(pkg.name) + elif (pkg.isInstalled and pkg.isUpgradable): held.append(pkg.name) + logging.debug("Held-back: %s" % " ".join(held)) logging.debug("Remove: %s" % " ".join(rm)) logging.debug("Install: %s" % " ".join(inst)) logging.debug("Upgrade: %s" % " ".join(up)) + def doPreUpgrade(self): # FIXME: check out what packages are downloadable etc to -- cgit v1.2.3 From a8d0e42d7bfc302dcd09c41a353b916687a7537c Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 13 Oct 2006 19:13:44 +0200 Subject: * logfile update --- DistUpgrade/Changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 36d064d6..94da18d3 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-13: + - log held-back as well 2006-10-12: - check if cdrom.lst actually exists before copying it 2006-10-11: -- cgit v1.2.3 From aa9516dc024de03167135566cd87449e37b62535 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 16 Oct 2006 19:56:05 +0200 Subject: * DistUpgrade/DistUpgrade.cfg: - add ubuntu-standard to the base packages * DistUpgrade/removal_blacklist.cfg: - ubuntu-base is save to remove - ubuntu-minimial and ubuntu-standard shouldn't be removed --- DistUpgrade/Changelog | 4 ++++ DistUpgrade/DistUpgrade.cfg | 2 +- DistUpgrade/removal_blacklist.cfg | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 94da18d3..d9176f0b 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,7 @@ +2006-10-16: + - backup cdroms.list only if actually available + - remove leftover references to ubuntu-base and + use ubuntu-minimal and ubuntu-standard instead 2006-10-13: - log held-back as well 2006-10-12: diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index f399a1f5..c39cb9e5 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -7,7 +7,7 @@ View=DistUpgradeViewGtk [Distro] # the meta-pkgs we support MetaPkgs=ubuntu-desktop, kubuntu-desktop, edubuntu-desktop, xubuntu-desktop -BaseMetaPkgs=ubuntu-minimal +BaseMetaPkgs=ubuntu-minimal, ubuntu-standard PostUpgradePurge=xorg-common, libgl1-mesa Demotions=demoted.cfg RemoveEssentialOk=sysvinit diff --git a/DistUpgrade/removal_blacklist.cfg b/DistUpgrade/removal_blacklist.cfg index 773395be..7bfb114b 100644 --- a/DistUpgrade/removal_blacklist.cfg +++ b/DistUpgrade/removal_blacklist.cfg @@ -1,5 +1,6 @@ # blacklist of packages that should never be removed -ubuntu-base +ubuntu-standard +ubuntu-minimal ubuntu-desktop kubuntu-destkop edubuntu-desktop -- cgit v1.2.3 From 9fd03707400fe89899915ff2cb823e237317de15 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 16 Oct 2006 20:13:31 +0200 Subject: * po/*: - updated from rosetta --- DistUpgrade/Changelog | 1 + po/am.po | 132 ++--- po/ar.po | 140 ++--- po/be.po | 139 ++--- po/bg.po | 246 +++------ po/bn.po | 209 +++---- po/br.po | 128 +---- po/ca.po | 236 +++----- po/cs.po | 613 +++++++++------------ po/csb.po | 1443 +++++++++++++++++++++++++++++++++++++++++++++++++ po/da.po | 217 +++----- po/de.po | 302 ++++------- po/el.po | 238 +++----- po/en_AU.po | 253 ++++----- po/en_CA.po | 213 +++----- po/en_GB.po | 199 +++---- po/eo.po | 131 ++--- po/es.po | 271 ++++------ po/et.po | 136 ++--- po/eu.po | 135 ++--- po/fa.po | 136 ++--- po/fi.po | 273 ++++------ po/fr.po | 254 ++++----- po/fur.po | 128 +---- po/gl.po | 342 ++++++------ po/he.po | 304 ++++------- po/hi.po | 128 +---- po/hr.po | 378 +++++-------- po/hu.po | 253 +++------ po/id.po | 197 +++---- po/it.po | 321 +++++------ po/ja.po | 600 ++++++++------------ po/ka.po | 286 +++++----- po/ko.po | 316 ++++------- po/ku.po | 239 +++----- po/lt.po | 328 +++++------ po/lv.po | 132 ++--- po/mk.po | 201 +++---- po/ms.po | 148 ++--- po/nb.po | 260 ++++----- po/ne.po | 253 ++++----- po/nl.po | 554 ++++++++----------- po/nn.po | 136 ++--- po/oc.po | 144 ++--- po/pa.po | 135 ++--- po/pl.po | 421 +++++++-------- po/pt.po | 243 +++------ po/pt_BR.po | 376 ++++++------- po/qu.po | 134 ++--- po/ro.po | 192 +++---- po/ru.po | 195 +++---- po/rw.po | 178 ++---- po/sk.po | 288 ++++------ po/sl.po | 139 ++--- po/sq.po | 132 ++--- po/sr.po | 141 ++--- po/sv.po | 514 ++++++++---------- po/ta.po | 133 ++--- po/th.po | 318 +++++------ po/tr.po | 161 ++---- po/uk.po | 203 +++---- po/ur.po | 128 +---- po/vi.po | 187 ++----- po/xh.po | 132 ++--- po/zh_CN.po | 217 +++----- po/zh_HK.po | 201 +++---- po/zh_TW.po | 262 ++++----- 67 files changed, 6876 insertions(+), 9847 deletions(-) create mode 100644 po/csb.po diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index d9176f0b..23a66450 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -2,6 +2,7 @@ - backup cdroms.list only if actually available - remove leftover references to ubuntu-base and use ubuntu-minimal and ubuntu-standard instead + - updated translations from rosetta 2006-10-13: - log held-back as well 2006-10-12: diff --git a/po/am.po b/po/am.po index 86dfd3b5..d979ff57 100644 --- a/po/am.po +++ b/po/am.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-11 10:15+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "ከአንድ ወር በሓላ" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgstr "ቁለፉን የማጥፋት ሰህተት" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "የመረጡትን ቁለፍ ማጥፋት አይቻልም፣ እባክዎን ይህንን ሰህተት ያመለከቱ" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -164,7 +162,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -200,7 +196,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -260,7 +255,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -317,7 +311,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -380,7 +373,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -391,7 +383,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -442,7 +433,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -458,7 +448,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -470,7 +460,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -486,60 +475,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -547,39 +534,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -605,7 +591,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -625,11 +610,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -696,6 +680,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -731,7 +716,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -821,17 +805,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -844,7 +825,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -866,7 +846,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -901,7 +880,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -923,7 +901,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -935,23 +912,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1048,10 +1021,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1273,229 +1250,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/ar.po b/po/ar.po index a5b1cddc..e9d0bccc 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-05 12:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "بعد شهر" msgid "After %s days" msgstr "بعد %s يوم" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +121,10 @@ msgstr "خطاء في ازالة المفتاح" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -165,7 +164,6 @@ msgstr "لا يمكن تحديث الرزم العليا المطلوبة" msgid "A essential package would have to be removed" msgstr "سيكون من الضروري إزالة رزم مهمة" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -179,7 +177,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -205,7 +202,6 @@ msgid "" msgstr "" "لم يكن بالإمكان تثبيت إحدى الرزم المطلوبة. الرجاء التبليغ عن هذا كخطأ برمجي. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -266,7 +262,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -326,7 +321,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" @@ -396,7 +390,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -407,7 +400,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -459,9 +451,8 @@ msgstr "جاري عملية البحث عن البرامج الملغية" msgid "System upgrade is complete." msgstr "إنتهت عملية تحديث النظام." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 -#, fuzzy, python-format +#, fuzzy msgid "Please insert '%s' into the drive '%s'" msgstr "الرجاء ادراج '%s' في السوّاقة '%s'" @@ -475,7 +466,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -487,7 +478,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "جاري تطبيق التغييرات" @@ -503,40 +493,38 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "لم يمكن العثور على أمر 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 #, fuzzy msgid "A fatal error occured" msgstr "وقع خطأ شديد" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -544,7 +532,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -552,7 +540,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -560,7 +548,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -568,40 +556,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "إن نظامك الآن محدث" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#, fuzzy msgid "Remove %s" msgstr "إزالة %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "تثبيت %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "تحديث %s" @@ -627,7 +614,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -649,7 +635,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -722,6 +707,7 @@ msgid "_Keep" msgstr "_اترك" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_استبدل" @@ -758,7 +744,6 @@ msgstr "لم يمكن تنزيل ملاحظات الإصدار" msgid "Please check your internet connection." msgstr "الرجاء التأكد من إتصالك بالإنترنت" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "لم يكن ممكنا تشغيل أداة التحديث" @@ -850,17 +835,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -873,7 +855,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -895,9 +876,8 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy, python-format +#, fuzzy msgid "Download size: %s" msgstr "حجم التنزيل: %s" @@ -931,7 +911,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -953,7 +932,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "فهرس البرامج تالف" @@ -965,23 +943,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1081,10 +1055,15 @@ msgid "_Install Updates" msgstr "_ثبت التحديثات" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "ت_حديث" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1311,232 +1290,187 @@ msgstr "مساحة النافذة" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "مدعوم بشكل رسمي" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "حقوق نقل محدودة" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/be.po b/po/be.po index 0f693ff0..4047be30 100644 --- a/po/be.po +++ b/po/be.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-07-06 06:10+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Пасьля аднаго месяца" msgid "After %s days" msgstr "Пасьля %s дзён" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Памылка выдаленьня ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбраны ключ ня можа быць выдалены. Калі ласка, дашліце баг-рэпорт аб гэтым." @@ -165,7 +163,6 @@ msgstr "Немагчыма абнавіць неабходныя мэтапак msgid "A essential package would have to be removed" msgstr "Трэба было-б выдаліць абавязковы пакет" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Немагчыма падлічыць абнаўленьне" @@ -178,7 +175,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" @@ -206,7 +202,6 @@ msgstr "" "Немагчыма ўсталяваць патрэбны пакет. Калі ласка, паведаміце аб гэтай " "памылцы. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Немагчыма вызначыць мэта-пакет" @@ -266,7 +261,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Стварыць прадвызначаны сьпіс крыніц?" @@ -279,8 +273,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для \"%s" -"\".\n" +"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для " +"\"%s\".\n" "\n" "Ці мусяць быць дададзены прадвызначаныя запісы для \"%s\"? Калі вы вылучыце " "\"Не\", абнаўленьне будзе скасавана." @@ -335,7 +329,6 @@ msgstr "" "на %s. Спусташыце Сьметніцу й выдаліце часовыя пакеты былых усталёвак з " "дапамогай загаду \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Ці жадаеце пачаць абнаўленьне?" @@ -402,7 +395,6 @@ msgstr "" "Узьніклі нейкія памылкі ў час ачысткі. Калі ласка, паглядзіце зьмешчанае " "ніжэй паведамленьне. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -413,7 +405,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -464,7 +455,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -480,7 +470,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -492,7 +482,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Зьдзяйсьненьне зьменаў" @@ -508,39 +497,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Ня знойдзена праграма \"diff\"" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Узьнікла невыправімая памылка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -548,7 +535,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -556,7 +543,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -564,7 +551,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -572,39 +559,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Усталёўка %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Абнаўленьне %s" @@ -630,7 +616,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -652,7 +637,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -727,6 +711,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -762,7 +747,6 @@ msgstr "Немагчыма зпампаваць нататкі рэдакцыі" msgid "Please check your internet connection." msgstr "Калі ласка, праверце вашае далучэньне да інтэрнэту." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Немагчыма запусьціць сродак абнаўленьня" @@ -854,17 +838,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -877,7 +858,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -899,7 +879,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -935,7 +914,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -957,7 +935,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Пашкоджаны індэкс праграм" @@ -969,23 +946,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1082,10 +1055,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Абнаўленьне %s" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1307,229 +1285,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/bg.po b/po/bg.po index 8ca2c38c..af905a75 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:41+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "След един месец" msgid "After %s days" msgstr "След %s дни" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,13 +123,14 @@ msgid "Error removing the key" msgstr "Грешка при премахване на ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Ключът, който избрахте не може да бъде премахнат. Докладвайте това като " "грешка." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -171,7 +169,6 @@ msgstr "Не може да бъдат надградени изисквани м msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" @@ -187,7 +184,6 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" @@ -215,7 +211,6 @@ msgstr "" "Не можеше да бъде инсталиран нужен пакет. Моля, докладвайте това като " "грешка! " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" @@ -288,7 +283,6 @@ msgstr "" "изберете \"Да\", всички записи \"%s \" ще бъдат актуализирани на \"%s\".\n" "Ако изберете \"Не\", актуализирането ще бъде отменено." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" @@ -301,8 +295,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за \"%s" -"\".\n" +"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за " +"\"%s\".\n" "\n" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." @@ -358,7 +352,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" @@ -428,7 +421,6 @@ msgstr "" "Имаше проблем при почистването. Моля, вижте съобщението по-долу за повече " "информация! " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Рестартиране на системата" @@ -439,7 +431,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -470,7 +461,7 @@ msgid "Invalid package information" msgstr "Невалидна информация за пакет" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -498,7 +489,6 @@ msgstr "Търсене на остарял софтуер" msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -510,24 +500,23 @@ msgid "Fetching is complete" msgstr "Актуализацията е завършена" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Изтегляне на файл %li от общо %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Прилагане на промените" @@ -543,9 +532,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -553,59 +541,58 @@ msgstr "" "Замяна на конфигурационния файл\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Командата \"diff\" не бе намерена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Възникна фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-upgrade." -"log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. Надграждането " -"сега ще бъде прекратено.\n" -"Оригиналният \"sources.list\" was saved inбе съхранен в \"/etc/apt/sources." -"list.distUpgrade\"." +"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-" +"upgrade.log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. " +"Надграждането сега ще бъде прекратено.\n" +"Оригиналният \"sources.list\" was saved inбе съхранен в " +"\"/etc/apt/sources.list.distUpgrade\"." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -615,7 +602,7 @@ msgstr "" "\n" "Трябва да изтеглите данни общо %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -624,35 +611,34 @@ msgstr "" "Надграждането може да отнеме няколко часа, като не може да бъде отменено по-" "нататък." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Премахване на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Инсталиране на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Надграждане на %s" @@ -678,7 +664,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -698,7 +683,6 @@ msgstr "Надграждането е завършено и има нужда о #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -776,6 +760,7 @@ msgid "_Keep" msgstr "_Задържане" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Замяна" @@ -812,7 +797,6 @@ msgstr "Не можеше да бъдат свалени бележките къ msgid "Please check your internet connection." msgstr "Моля, проверете Интернет връзката си!" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не може да бъде стартирана помощната програма за надграждане." @@ -889,12 +873,12 @@ msgstr "" "мрежата или сървъра. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Сваляне на файл %li от %li при %s/сек" @@ -919,18 +903,15 @@ msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -946,7 +927,6 @@ msgstr "Ubuntu 5.10 Състарени версии" msgid "Distribution updates" msgstr "_Поднови надграждането" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -971,7 +951,6 @@ msgstr "" msgid "_Check All" msgstr "_Проверка" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -998,16 +977,15 @@ msgid "Checking for updates" msgstr "_Инсталиране на актуализациите" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Нова версия: %s (Размер: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Версия %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1032,7 +1010,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" @@ -1047,23 +1024,19 @@ msgstr "" "ползвайте диспечера на пакети \"Synaptic\" или първо задействайте \"sudo apt-" "get install -f\" в терминален прозорец, за да поправите този проблем!" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1174,10 +1147,15 @@ msgstr "_Инсталиране на актуализациите" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Надграждане" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1339,8 +1317,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Добавете пълния APT ред за канала, който искате да добавите\n" +"Добавете пълния APT ред за канала, който искате да " +"добавите\n" "\n" "APT редът съдържа вида, местонахождението и компонентите за даден канал. " "Например „deb http://ftp.debian.org sarge main“." @@ -1436,250 +1414,206 @@ msgstr "Размерът на прозореца" msgid "Configure the sources for installable software and updates" msgstr "Настройка на софтуерните канали и актуализациите по Интернет" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 актуализации" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Поддържани от обществото (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Допринесен софтуер" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Поддържани от обществото (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Несвободни (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Несвободни (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 актуализации" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официално поддържани" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 актуализации" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободни (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официално поддържан" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограничени авторски права" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 обновления по сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 обновления" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" актуализации на сигурността" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестване)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабилен)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-съвместим софтуер с несвободни зависимости" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" @@ -1688,6 +1622,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Ограничен за изнасяне от САЩ софтуер" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Сваляне на файл %li от %li при неизвестна скорост" @@ -1708,8 +1643,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Надграждане до Ubuntu 6.06 LTS" +#~ "Надграждане до Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1739,13 +1673,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Някои актуализации изискват премахването на допълнителен софтуер. " #~ "Използвайте функцията „Маркиране на всички актуализации” на Диспечера на " -#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в " -#~ "терминален прозорец, за да актуализирате напълно системата си." +#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в терминален " +#~ "прозорец, за да актуализирате напълно системата си." #~ msgid "The following updates will be skipped:" #~ msgstr "Следните актуализации ще бъдат пропуснати:" @@ -1766,8 +1700,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Покажи детайлите" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "Позволено е да оперира само един диспечер на софтуера в даден момент" +#~ msgstr "Позволено е да оперира само един диспечер на софтуера в даден момент" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1875,16 +1808,16 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "" #~ "Ключове за идентификация\n" #~ "\n" -#~ "Може да добавяте и премахвате ключове за идентификация през този " -#~ "прозорец. Ключът прави възможна проверката на цялостта на софтуера, който " -#~ "сваляте от интернет." +#~ "Може да добавяте и премахвате ключове за идентификация през този прозорец. " +#~ "Ключът прави възможна проверката на цялостта на софтуера, който сваляте от " +#~ "интернет." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, " -#~ "че сте получили ключа по сигурен канал и че можете да се доверите на " +#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, че " +#~ "сте получили ключа по сигурен канал и че можете да се доверите на " #~ "собственика. " #~ msgid "Add repository..." @@ -1912,8 +1845,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Максимален размер в Мб:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Възвръщане на стандартните ключове идващи с дистрибуцията. Това няма да " #~ "промени потребителските инсталирани ключове." @@ -1945,13 +1878,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Налични обновления\n" #~ "\n" -#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като " -#~ "натиснете бутона „Инсталиране“." +#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като натиснете " +#~ "бутона „Инсталиране“." #~ msgid "Cancel downloading the changelog" #~ msgstr "Отказ на свалянето на дневника на промените" @@ -2027,8 +1960,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr[1] "Избрахте всички %s пакета за обновяване, с общ размер %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избрахте %s от %s пакет за обновяване, с размер %s" #~ msgstr[1] "Избрахте %s от %s пакета за обновяване, с общ размер %s" @@ -2036,11 +1968,11 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Обновленията се прилагат." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Може да стартирате само една програма за управление на пакетите. " -#~ "Затворете другата програма първо." +#~ "Може да стартирате само една програма за управление на пакетите. Затворете " +#~ "другата програма първо." #~ msgid "Updating package list..." #~ msgstr "Обновяване на списъка с пакетите..." @@ -2053,25 +1985,25 @@ msgstr "Софтуер несъвместим с DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще " -#~ "бъдат спрени поправките по сигурността и други критични обновления. Вижте " +#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще бъдат " +#~ "спрени поправките по сигурността и други критични обновления. Вижте " #~ "http://www.ubuntulinux.org за повече информация." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Има нова версия на Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Излезнала е нова версия с кодовото име „%s“. Вижте http://www.ubuntulinux." -#~ "org за информация по обновяването." +#~ "Излезнала е нова версия с кодовото име „%s“. Вижте " +#~ "http://www.ubuntulinux.org за информация по обновяването." #~ msgid "Never show this message again" #~ msgstr "Без да се показва това съобщение отново" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Няма открити промени. Сървърът може би не е обновен." +#~ msgstr "Няма открити промени. Сървърът може би не е обновен." \ No newline at end of file diff --git a/po/bn.po b/po/bn.po index edb3c9f2..c1187db5 100644 --- a/po/bn.po +++ b/po/bn.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:37+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "এক মাস পর" msgid "After %s days" msgstr "%s দিন পর" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,11 +121,12 @@ msgid "Error removing the key" msgstr "কী সরাতে সমস্যা হয়েছে" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -164,7 +162,6 @@ msgstr "দরকারী meta-packages আপগ্রেড করতে প msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -199,10 +195,9 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ হিসাবে " -"রিপোর্ট করুন। " +"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ " +"হিসাবে রিপোর্ট করুন। " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" @@ -263,7 +258,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" @@ -276,11 +270,11 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে পাওয়া যায় " -"নি।\n" +"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে " +"পাওয়া যায় নি।\n" "\n" -"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " -"হবে।" +"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট " +"বাতিল হবে।" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -291,8 +285,8 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " -"হিসাবে রিপোর্ট করুন।" +"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে " +"বাগ হিসাবে রিপোর্ট করুন।" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -314,8 +308,8 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " -"আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" +"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ " +"করে আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -329,7 +323,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" @@ -356,8 +349,8 @@ msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " -"করুন এবং আবার চেষ্টা করুন। " +"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া " +"পরীক্ষা করুন এবং আবার চেষ্টা করুন। " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -394,7 +387,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" @@ -405,7 +397,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -457,7 +448,6 @@ msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -469,24 +459,23 @@ msgid "Fetching is complete" msgstr "আপডেট সম্পন্ন" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "%li of %li ফাইল ডাউনলোড করছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "%li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "%li of %li ফাইল ডাউনলোড করছে" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "পরিবর্তনগুলো প্রয়োগ করছি" @@ -502,9 +491,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -512,53 +500,52 @@ msgstr "" "কনফিগারেশন ফাইল '%s'\n" "কি সরানো হবে?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' কমান্ডটি পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -568,51 +555,51 @@ msgstr "" "\n" "আপনাকে সর্বমোট %s ডাউনলোড করতে হবে। " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" +msgstr "" +"আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s মুছো" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s ইন্সটল" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s আপগ্রেড" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "%li দিন %li ঘন্টা %li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "%li ঘন্টা %li মিিনিট বাকি আছে" @@ -627,7 +614,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -642,12 +628,12 @@ msgstr "রিবুট করা প্রয়োজন" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" +msgstr "" +"আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -720,6 +706,7 @@ msgid "_Keep" msgstr "রাখো (_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "প্রতিস্হাপন (_R)" @@ -756,7 +743,6 @@ msgstr "রিলিজ নোট ডাউনলোড করা যায় ন msgid "Please check your internet connection." msgstr "অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "আপগ্রেড টুলটি চালানো যায় নি" @@ -798,7 +784,9 @@ msgstr "এক্সট্রাক্ট করতে ব্যর্থ" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে পারে। " +msgstr "" +"আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে " +"পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -810,8 +798,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা " -"থাকতে পারে। " +"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে " +"সমস্যা থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -851,20 +839,18 @@ msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ " +"পরীক্ষা করুন।" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -880,7 +866,6 @@ msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" msgid "Distribution updates" msgstr "পুনরায় আপগ্রেড শুরু (_R)" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -905,7 +890,6 @@ msgstr "" msgid "_Check All" msgstr "পরীক্ষা করো (_C)" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -932,16 +916,15 @@ msgid "Checking for updates" msgstr "আপডেট ইন্সটল করো (_I)" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "নতুন ভার্সন: %s (আকার: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "ভার্সন %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -963,7 +946,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" @@ -975,23 +957,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1095,10 +1073,15 @@ msgstr "আপডেট ইন্সটল করো (_I)" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "আপগ্রেড (_p)" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "পরিবর্তন" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1329,245 +1312,201 @@ msgstr "উইনডোর আকার" msgid "Configure the sources for installable software and updates" msgstr "সফ্টওয়্যার চ্যানেল এবং ইন্টারনেট আপডেট কনফিগার" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "উবুন্টু ৫.১০ আপডেট" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "ডেবিয়ান ৩.১ \"সার্জ\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "ডেবিয়ান ৩.১ \"Sarge\" নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "ডেবিয়ান \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "ডেবিয়ান \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1613,6 +1552,7 @@ msgstr "" #~ msgid "The following updates will be skipped:" #~ msgstr "নিম্নের আপডেটগুলো বাদ দেয়া হবে:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "%li সেকেন্ড বাকি আছে" @@ -1620,7 +1560,8 @@ msgstr "" #~ msgstr "ডাউনলোড সম্পন্ন" #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" +#~ msgstr "" +#~ "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" #~ msgid "Upgrading Ubuntu" #~ msgstr "উবুন্টু আপগ্রেড করছি" @@ -1637,8 +1578,8 @@ msgstr "" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে বন্ধ " -#~ "করুন।" +#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে " +#~ "বন্ধ করুন।" #~ msgid "Channels" #~ msgstr "চ্যানেল" @@ -1685,4 +1626,4 @@ msgstr "" #~ msgstr "উবুন্টু ৬.০৬ আপডেট" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" +#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" \ No newline at end of file diff --git a/po/br.po b/po/br.po index daab1fb3..0295bb13 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -55,7 +55,6 @@ msgstr "" msgid "After %s days" msgstr "War-lerc'h %s devezh" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Fazi en ur zilemel an alc'hwezh" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "N'eus ket tu da zilemel an alc'whezh ho peus dibabet. Kelaouit eo ur bug " "marplij." @@ -164,7 +162,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -200,7 +196,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -260,7 +255,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -317,7 +311,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -380,7 +373,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -391,7 +383,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -442,7 +433,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -458,7 +448,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -470,7 +460,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -486,60 +475,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -547,39 +534,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -605,7 +591,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -625,7 +610,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -696,6 +680,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -731,7 +716,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -821,17 +805,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -844,7 +825,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -866,7 +846,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -901,7 +880,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -923,7 +901,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -935,23 +912,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1048,10 +1021,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1274,232 +1251,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/ca.po b/po/ca.po index e92100ae..7ef3fe96 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:41+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Després d'un mes" msgid "After %s days" msgstr "Després de %s dies" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,13 +124,14 @@ msgid "Error removing the key" msgstr "S'ha produït un error en esborrar la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La clau que heu seleccionat no es pot esborrar. Notifiqueu-ho com a error de " "programació." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -172,7 +170,6 @@ msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" @@ -188,7 +185,6 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" @@ -216,7 +212,6 @@ msgstr "" "No s'ha pogut instal·lar un dels paquets sol·licitats. Envieu un informe amb " "els error. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -283,7 +278,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Voleu generar les fonts per defecte?" @@ -347,12 +341,11 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a %s." -"\r\n" +"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a " +"%s. \n" "Buideu la vostra paperera i esborreu els paquets temporals utilitzant 'sudo " "apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" @@ -425,7 +418,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" @@ -436,7 +428,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -491,7 +482,6 @@ msgstr "S'està cercant programari obsolet" msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -503,24 +493,23 @@ msgid "Fetching is complete" msgstr "S'ha completat l'actualització" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "S'està descarregant el fitxer %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "Queden uns %li minuts" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "S'està descarregant el fitxer %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "S'estan aplicant els canvis" @@ -536,9 +525,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -546,53 +534,52 @@ msgstr "" "Voleu reemplaçar el fitxer de\n" "configuració '%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'ordre 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "S'ha produït un error greu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -602,7 +589,7 @@ msgstr "" "\n" "Heu de descarregar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -611,46 +598,45 @@ msgstr "" "L'actualització pot durar algunes hores i no la podreu cancel·lar un cop " "hagi començat." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Esborra %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instal·la %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Queden uns %li dies %li hores %li minuts" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Queden unes %li hores %li minuts" @@ -665,7 +651,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -687,7 +672,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,7 +691,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicieu el sistema per a completar l'actualització" +msgstr "" +"Reinicieu el sistema per a completar l'actualització" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -764,6 +749,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Reemplaça" @@ -800,7 +786,6 @@ msgstr "No s'han pogut descarregar les notes de la versió" msgid "Please check your internet connection." msgstr "Comproveu la vostra connexió a Internet" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No es pot executar l'eina d'actualització" @@ -866,12 +851,12 @@ msgid "" msgstr "" #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" @@ -896,18 +881,15 @@ msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Debian Stable Security Updates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -923,7 +905,6 @@ msgstr "Actualitzacions d'Ubuntu 6.06 LTS" msgid "Distribution updates" msgstr "_Reprén l'actualització" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -948,7 +929,6 @@ msgstr "" msgid "_Check All" msgstr "_Comprova" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -975,16 +955,15 @@ msgid "Checking for updates" msgstr "S'estan comprovant les actualitzacions..." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versió nova: %s (Mida: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Versió %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1009,7 +988,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" @@ -1024,23 +1002,19 @@ msgstr "" "utilitzeu el gestor de paquets \"Synaptic\" o executeu \"sudo apt-get " "install -f\" en un terminal." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1152,10 +1126,15 @@ msgstr "_Instal·la les actualitzacions" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Actualitza" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Canvis" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1404,251 +1383,207 @@ msgstr "La mida de la finestra" msgid "Configure the sources for installable software and updates" msgstr "Configura els canals de programari i les actualitzacions d'Internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualitzacions d'Ubuntu 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Programari de la comunitat" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Paquets sense llicència lliure (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualitzacions d'Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Paquets mantinguts oficialment (Main)" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualitzacions d'Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Algun programari ja no es mantindrà oficialment" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Paquets amb restriccions per copyright (Restricted)" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualitzacions d'Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualitzacions de seguretat de Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programari compatible DFSG amb dependències no lliures" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" @@ -1657,9 +1592,9 @@ msgstr "Programari no compatible DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Programari amb restriccions d'exportació als EUA" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "" -#~ "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" +#~ msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" #, fuzzy #~ msgid "Normal updates" @@ -1712,8 +1647,8 @@ msgstr "Programari no compatible DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algunes actualitzacions requereixen la desinstal·lació de programari " #~ "adicional. Per actualitzar completament el vostre sistema utilitzeu la " @@ -1723,6 +1658,7 @@ msgstr "Programari no compatible DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Les següents actualitzacions s'ometran:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Queden uns %li segons" @@ -1833,9 +1769,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "" #~ "Claus d'autenticació\n" #~ "\n" -#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus " -#~ "d'autenticació. Les claus permeten comprovar la integritat del programari " -#~ "que descarregueu." +#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus d'autenticació. " +#~ "Les claus permeten comprovar la integritat del programari que descarregueu." #~ msgid "" #~ "Enter the complete APT line of the repository that you want to " @@ -1848,15 +1783,15 @@ msgstr "Programari no compatible DFSG" #~ "Introduïu la línia APT del dipòsit que voleu afegir\n" #~ "\n" #~ "La línia APT conté el tipus, la ubicació i el contingut del dipòsit; per " -#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar " -#~ "una descripció més detallada de la sintaxi en la documentació." +#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar una " +#~ "descripció més detallada de la sintaxi en la documentació." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner." +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner." #~ msgstr "" -#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut " -#~ "la clau per un canal segur i que confieu en el propietari." +#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut la " +#~ "clau per un canal segur i que confieu en el propietari." #~ msgid "Add repository..." #~ msgstr "Afegeix un dipòsit..." @@ -1889,11 +1824,11 @@ msgstr "Programari no compatible DFSG" #~ msgstr "Restaura les claus per defecte" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restaura les claus per defecte de la distribució. Això no afecta les " -#~ "claus instal·lades per l'usuari." +#~ "Restaura les claus per defecte de la distribució. Això no afecta les claus " +#~ "instal·lades per l'usuari." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Fixa la mida _màxima de memòria cau per als paquets descarregats" @@ -1925,8 +1860,8 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualitzacions disponibles\n" #~ "\n" @@ -1938,8 +1873,8 @@ msgstr "Programari no compatible DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "S'estan descarregant els canvis\n" +#~ "S'estan descarregant els " +#~ "canvis\n" #~ "\n" #~ "Es necessita obtenir els canvis des del servidor central" @@ -2028,8 +1963,7 @@ msgstr "Programari no compatible DFSG" #~ "Heu seleccionat els %s paquets actualitzats, la mida total és de %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Heu seleccionat %s paquet actualitzat de %s, la mida és de $s" #~ msgstr[1] "" #~ "Heu seleccionat %s paquets actualitzats de %s, la mida total és de %s" @@ -2044,8 +1978,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "S'està executant un altre gestor de paquets" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Només podeu executar un gestor de paquets a la vegada. Tanqueu l'altra " #~ "aplicació." @@ -2067,24 +2001,24 @@ msgstr "Programari no compatible DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Actualitzeu el sistema amb una versió més nova d'Ubuntu Linux. La vostra " #~ "versió ja no disposarà de més actualitzacions de seguretat ni d'altres " -#~ "actualitzacions crítiques. Si voleu més informació, visiteu http://www." -#~ "ubuntulinux.org/." +#~ "actualitzacions crítiques. Si voleu més informació, visiteu " +#~ "http://www.ubuntulinux.org/." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ja disposeu del nou llançament d'Ubuntu" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Ja disposeu del nou llançament d'Ubuntu amb el nom en clau '%s'. Si " -#~ "necessiteu instruccions per a actualitzar el sistema, visiteu http://www." -#~ "ubuntulinux.org/." +#~ "necessiteu instruccions per a actualitzar el sistema, visiteu " +#~ "http://www.ubuntulinux.org/." #~ msgid "Never show this message again" #~ msgstr "No tornis a mostrar aquest missatge" @@ -2092,4 +2026,4 @@ msgstr "Programari no compatible DFSG" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" #~ "No s'han trobat els canvis. Pot ser que el servidor encara no s'hagi " -#~ "actualitzat." +#~ "actualitzat." \ No newline at end of file diff --git a/po/cs.po b/po/cs.po index b2d57499..6ec03ae8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:41+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,15 +56,13 @@ msgstr "Po měsíci" msgid "After %s days" msgstr "Po %s dnech" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" -msgstr "%s aktualizace" +msgstr "Aktualizace %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,12 +72,11 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hlavní server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "Server pro %s" +msgstr "Server pro zemi \"%s\"" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" @@ -114,22 +111,23 @@ msgstr "Importovat klíč" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Chyba při importování vybraného souboru" +msgstr "Chyba při importu vybraného souboru" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Vybraný soubor nemusí obsahovat GPG klíč nebo může být porušen." +msgstr "Vybraný soubor asi není klíč GPG, anebo může být poškozen." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Chyba při odstraňování klíče" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -156,7 +154,7 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Váš systém obsahuje poškozené balíčky, které nemohou být tímto programem " +"Váš systém obsahuje poškozené balíky, které nemohou být tímto programem " "opraveny. Před pokračováním je prosím opravte použitím programu synaptic " "nebo apt-get." @@ -166,31 +164,27 @@ msgstr "Nemohu aktualizovat požadované meta-balíky" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "Základní balík by musel být odstraněn" +msgstr "Toto by vedlo k odstranění základního balíku" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Při výpočtu aktualizace nastal neřešitelný problém. Prosím oznamte to jako " -"chybu.\n" +"Při výpočtu aktualizace nastal neřešitelný problém.\n" "\n" -"Prosím oznamte tuto chybu jako problém balíčku 'update-manager' a přiložte " -"soubory v adresáři /var/log/dist-upgrade/ k vašemu chybovému hlášení." +"Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " +"soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "Chyba při ověření některých balíků" +msgstr "Chyba při ověřování některých balíků" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -214,7 +208,6 @@ msgid "" msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" @@ -297,10 +290,9 @@ msgstr "" "všechny položky '%s' aktualizovány na '%s'.\n" "Zvolíte-li 'Ne', aktualizace bude zrušena." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "Vytvořit standardní zdroje?" +msgstr "Vygenerovat výchozí zdroje?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -310,7 +302,7 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Po prohledání vašeho 'sources.list' nebyla pro '%s' nalezena žádná " +"Po prohledání souboru 'sources.list' nebyla pro '%s' nalezena žádná " "odpovídající položka.\n" "\n" "Chcete přidat výchozí položky pro '%s'? Zvolíte-li 'Ne', aktualizace bude " @@ -318,15 +310,15 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "Neplatná informace zdroje" +msgstr "Neplatná informace o zdroji" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Upgrade informací o úložišti vrátil neplatný soubor. Prosím oznamte to jako " -"chybu." +"Aktualizace informací o repozitáři vyústila v neplatný soubor. Prosím " +"oznamte to jako chybu." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -338,9 +330,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Některé položky třetích stran ve vašem sources.list byly vyřazeny. Tyto " +"Některé položky třetích stran v souboru sources.list byly vyřazeny. Tyto " "položky můžete opět povolit po přechodu na novou verzi za pomocí nástroje " -"'software-propertie' nebo pomocí synaptic." +"'software-properties' nebo nástroje synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -369,7 +361,6 @@ msgstr "" "Vyprázdněte váš koš a odstraňte dočasné balíčky z dřívějších instalací " "pomocí 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" @@ -379,7 +370,6 @@ msgid "Could not install the upgrades" msgstr "Nelze nainstalovat aktualizace" #: ../DistUpgrade/DistUpgradeControler.py:461 -#, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,11 +378,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Aktualizace byla předčasně ukončena. Váš systém může být v nepoužitelném " -"stavu. Zkuste ho prosím opravit pomocí 'sudo apt-get install -f' nebo " -"Synaptic.\n" +"stavu. Pokus o nápravu (dpkg --configure -a) byl proveden. Zkuste prosím " +"napravit situaci pomocí 'sudo apt-get install -f' nebo pomocí Synaptic.\n" "\n" -"Prosím nahlaste tuto chybu balíčku 'update-manager' a přiložte soubory z " -"adresáře /var/log/dist-upgrade/ k hlášení o chybě." +"Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " +"soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -418,11 +408,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd. již dále neposkytuje podporu pro následující balíčky " -"softwaru. Stále můžete získat podporu komunity.\n" +"Společnost Canonical Ltd. již neposkytuje podporu pro následující softwarové " +"balíky. Je možné, že tyto balíčky jsou stále spravovány komunitou.\n" "\n" "Pokud nemáte povolen software spravovaný komunitou (universe), tyto balíčky " -"budou navrhnuty k odstranění v dalším kroku." +"budou v dalším kroku navrhnuty k odstranění." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -438,17 +428,16 @@ msgstr "_Odebrat" #: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "Chyba při zaznamenávání" +msgstr "Chyba při potvrzování" #: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Během čištění nastal nějaký problém. Pro více informací si prosím " -"prohléhněte níže uvedenou zprávu. " +"Během čištění nastal problém. Podrobnější informace jsou obsaženy v " +"následující zprávě: " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" @@ -456,37 +445,35 @@ msgstr "Obnovuje se původní stav systému" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "Stahuji backport '%s'" +msgstr "Stahuji verzi '%s' přenesenou z vyšší verze distribuce" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "Kontroluje se manažer balíků" +msgstr "Kontroluji správce balíků" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Připravuje se upgrade" +msgstr "Příprava přechodu na vyšší verzi selhala" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Při výpočtu aktualizace nastal neřešitelný problém. Prosím oznamte to jako " -"chybu." +"Příprava systému na přechod na vyšší verzi selhala. Prosím nahlaste tuto " +"chybu jako chybu balíčku 'update-manager' a přiložte soubory z adresáře " +"/var/log/dist-upgrade/ k hlášení o chybě." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "Aktualizují se informace o úložišti" +msgstr "Aktualizují se informace o repozitáři" #: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "Neplatná informace o balíčcích" +msgstr "Neplatná informace o balících" #: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format @@ -497,58 +484,55 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Poté co byly aktualizovány informaco o balíčcích, nebyl nalezen nezbytný " +"Poté co byly aktualizovány informace o balících, nebyl nalezen nezbytný " "balík '%s'.\n" "Toto ukazuje na závažný problém, prosím nahlašte toto jako chybu balíku " -"'update-manager' a přiložte k hlášení o chybě soubory v adresáři /var/log/" -"dist-upgrade/." +"'update-manager' a přiložte k hlášení o chybě soubory v adresáři " +"/var/log/dist-upgrade/." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "Požaduje se potvrzení" +msgstr "Vyžaduji potvrzení" #: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "Probíhá upgrade" +msgstr "Probíhá přechod na vyšší verzi" #: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "Vyhledáván zastaralý software" +msgstr "Vyhledávám zastaralý software" #: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "Upgrade systému je dokončen." +msgstr "Přechod na vyšší verzi systému je dokončen." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Prosím vložte '%s' do mechaniky '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Aktualizace je dokončena" +msgstr "Stahování je dokončeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format msgid "About %s remaining" -msgstr "Zhruba %li minut zbývá" +msgstr "Zhruba %s zbývá" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Stahuji soubor %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Provádím změny" @@ -563,75 +547,74 @@ 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 bugreport." msgstr "" -"Aktualizace se přerušila. Nahlašte prosím tuto chybu jako chybu balíku " -"'update-manager' a přiložte k chybovému hlášení soubory z adresáře /var/log/" -"dist-upgrade/." +"Aktualizace byla předčasně ukončena. Nahlašte prosím tuto chybu jako chybu " +"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře " +"/var/log/dist-upgrade/." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Nahradit soubor s nastavením\n" +"Nahradit upravený soubor s nastavením\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Pokud zvolíte nahrazení novější verzí, ztratíte veškeré změny tohoto " +"konfiguračního souboru." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Příkaz \"diff\" nebyl nalezen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" -msgstr "Nastala fatální chyba" +msgstr "Nastala kritická chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosím oznamte toto jako chybu a do zprávy připojte soubory /var/log/dist-" -"upgrade.log a /var/log/dist-upgrade-apt.log. Přechod na novou verzi bbude " -"nyní předčasně ukončen. Váš původní sources.list byl uložen do /etc/apt/" -"sources.list.distUpgrade." +"upgrade/main.log a /var/log/dist-upgrade/apt.log. Přechod na novou verzi " +"bude nyní předčasně ukončen. Váš původní soubor sources.list byl uložen do " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s balík bude odstraněn." -msgstr[1] "%s balíky budou odstraněny." -msgstr[2] "%s balíků bude odstraněno." +msgstr[0] "%d balík bude odstraněn." +msgstr[1] "%d balíky budou odstraněny." +msgstr[2] "%d balíků bude odstraněno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s nový balík bude nainstalován." -msgstr[1] "%s nové balíky budou nainstalovány." -msgstr[2] "%s nových balíků bude nainstalováno." +msgstr[0] "%d nový balík bude nainstalován." +msgstr[1] "%d nové balíky budou nainstalovány." +msgstr[2] "%d nových balíků bude nainstalováno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s balík bude nahrazen vyšší verzí." -msgstr[1] "%s balíky budou nahrazeny vyšší verzí." -msgstr[2] "%s balíky bude nahrazeno vyšší verzí." +msgstr[0] "%d balík bude nahrazen vyšší verzí." +msgstr[1] "%d balíky budou nahrazeny vyšší verzí." +msgstr[2] "%d balíky bude nahrazeno vyšší verzí." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -641,55 +624,55 @@ msgstr "" "\n" "Bude staženo celkem %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "Upgrade může trvat několik hodin a nesmí být později přerušen." +msgstr "" +"Přechod na vyšší verzi může trvat několik hodin a nelze jej v budoucnu " +"zrušit." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty." +msgstr "Uzavřete všechny aplikace a dokumenty pro zamezení ztrátě dat." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -"Pro váš počítač nejsou k dispozici žádné aktualizace. Aktualizace bude nyní " -"ukončena." +"Pro váš systém nejsou k dispozici žádné aktualizace. Aktualizace bude nyní " +"zrušena." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" -msgstr "Odstranit %s" +msgstr "Odebrat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Nainstalovat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Aktualizovat %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Zhruba %li hodin %li minut zbývá" +msgstr "%li days %li hodin %li minut" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Zbývá zhruba %li hodin %li minut" +msgstr "%li hodin %li minut" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format @@ -702,29 +685,29 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Toto stahování bude trvat asi %s linkou o rychlosti linky 1Mbit DSL a asi %s " +"modemem 56kbit." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "Vyžadován restartovat" +msgstr "Vyžadován restart" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"Aktualizace byla dokončena a je třeba restartovat systém. Chcete restartovat " -"nyní?" +"Přechod na vyšší verzi byl dokončen a je nutné restartovat systém. Chcete " +"jej restartovat nyní?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -737,22 +720,22 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" -"Zrušit probíhající upgrade?\n" +"Zrušit probíhající aktualizaci?\n" "\n" -"Systém muže být v nepoužitelném stavu jestliže upgrade zrušíte. Je silně " -"doporučeno pokračovat v upgrade." +"Zrušení aktualizace může systém zanechat v nepoužitelném stavu. Je " +"důrazně doporučeno v aktualizaci pokračovat." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Pro dokončení upgradu restartujte systém" +msgstr "Pro dokončení aktualizace restartujte systém" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Spustit upgrade?" +msgstr "Spustit aktualizaci?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Aktualizuji systém Ubuntu na verzi 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -760,47 +743,46 @@ msgstr "Probíhá čištění" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" -msgstr "Detaily" +msgstr "Podrobnosti" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" msgstr "Rozdíl mezi soubory" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Stahují a instalují se upgrady" +msgstr "Stahuji a instaluji balíky potřebné pro přechod na vyšší verzi" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "Modifikují se programové kanály." +msgstr "Modifikuji softwarové kanály." #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "Připravuje se upgrade" +msgstr "Připravuji přechod na vyšší verzi" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "Systém se restartuje" +msgstr "Restartuji systém" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Pokračovat v upgradu" +msgstr "_Zrušit přechod na vyšší verzi" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Pokračovat" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Ponechat" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Nahradit" @@ -814,12 +796,11 @@ msgstr "_Restartovat nyní" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "_Pokračovat v upgradu" +msgstr "_Pokračovat v aktualizaci" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Pokračovat v upgradu" +msgstr "_Začít aktualizaci" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -831,13 +812,12 @@ msgstr "Server může být přetížen. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "Nelze stáhnout poznámky k vydání." +msgstr "Nemohu stáhnout poznámky k vydání." #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." msgstr "Prosím zkontrolujte své internetové připojení." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nemohu spustit aktualizační nástroj" @@ -846,60 +826,54 @@ msgstr "Nemohu spustit aktualizační nástroj" msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" -"Toto je s největší pravděpodobností chyba v nástroji pro přechod na novou " -"verzi systému. Oznamte to jako chybu, prosím." +"Toto je s největší pravděpodobností chyba v aktualizačním nástroji. Oznamte " +"to jako chybu, prosím." #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "Stahuji nástroj pro přechod na novou verzi systému" +msgstr "Stahuji aktualizační nástroj" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" -"Nástroj pro přechod na novou verzi systému vás provede aktualizačním " -"procesem." +msgstr "Aktualizační nástroj vás provede procesem aktualizace." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "Podpis nástroje pro přechod na novou verzi systému" +msgstr "Podpis aktualizačního nástroje" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "Aktualizační utilita" +msgstr "Aktualizační nástroj" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "Chyba stahování" +msgstr "Stahování selhalo" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Stažení nástroje pro přechod na novou verzi systému se nepodařilo. " -"Pravděpodobně je problém se sítí. " +msgstr "Stažení aktualizace selhalo. Pravděpodobně je problém se sítí. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "Nezdařilo se rozbalení" +msgstr "Rozbalení selhalo" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Rozbalování aktualizace selhalo. Může být problém se sítí nebo serverem. " +"Rozbalení aktualizace selhalo. Může být problém se sítí nebo se serverem. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "Ověření selhalo." +msgstr "Ověření selhalo" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Stažení nástroje pro přechod na novou verzi systému se nepodařilo. " -"Pravděpodobně je problém se sítí. " +"Ověření aktualizace selhalo. Může jít o problém se sítí nebo se serverem. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -910,64 +884,59 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Autentizace aktualizace selhala. Může být problém se sítí nebo serverem. " +"Autentizace aktualizace selhala. Může jít o problém se sítí nebo se " +"serverem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Stahuji %li. soubor z %li rychlostí %s/s" +msgstr "Stahuji %(current)li. soubor z %(total)li rychlostí %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Stahuji %li. soubor z %li rychlostí %s/s" +msgstr "Stahuji %(current)li. soubor of %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "Seznam změn není dostupný." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." +msgstr "" +"Seznam změn ještě není dostupný.\n" +"Prosím, zkuste to později znovu." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Selhalo stažení seznamu změn. Prosím zkontrolujte své internetové připojení." +"Stažení seznamu změn selhalo. \n" +"Prosím zkontrolujte své internetové připojení." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Důležité bezpečnostní aktualizace" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Doporučené aktualizace" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 -#, fuzzy msgid "Proposed updates" -msgstr "Navrhnuté aktualizace" +msgstr "Navržené aktualizace" #: ../UpdateManager/UpdateManager.py:241 -#, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Aplikace přenesené z novějších verzí distribuce" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "_Pokračovat v upgradu" +msgstr "Aktualizace distribuce" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Ostatní aktualizace" @@ -984,14 +953,12 @@ msgstr "Stahuji seznam změn ..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" -msgstr "" +msgstr "_Odznačit vše" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "_Zkontrolovat" +msgstr "_Zkontrolovat vše" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1014,21 +981,19 @@ msgid "Update is complete" msgstr "Aktualizace je dokončena" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "Zkontrolovat dostupné aktualizace" +msgstr "Kontroluji dostupné aktualizace" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nová verze: %s (Velikost: %s)" +msgstr "Z verze %(old_version)s na verzi %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Verze %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1036,7 +1001,7 @@ msgstr "(Velikost: %s)" #: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" -msgstr "Vaše distribude už není podporovaná" +msgstr "Vaše distribude již není podporovaná" #: ../UpdateManager/UpdateManager.py:844 msgid "" @@ -1044,16 +1009,16 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"Nedostanete žádné další bezpečnostní opravy nebo velmi důležité aktualizace. " -"Přejděte na další verzi Ubuntu Linuxu. Pro více informací o přechodu na " -"vyšší verzi se podívejte na http://www.ubuntu.com." +"Pro vaší verzi Ubuntu Linux již nejsou dostupné žádné další bezpečnostní " +"opravy ani velmi důležité aktualizace. Přejděte na vyšší verzi Ubuntu Linux. " +"Pro více informací o přechodu na vyšší verzi se podívejte na " +"http://www.ubuntu.com." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "Nové vydání distribuce '%s' je k dispozici" +msgstr "Nové vydání distribuce (%s) je k dispozici" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Seznam softwaru je poškozen" @@ -1064,61 +1029,51 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"Není možné nainstalovat nebo odinstalovat žádný program. Prosím použijte " -"správce balíčků \"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get " -"install -f\" pro opravu tohoto problému." +"Není možné instalovat ani odebírat programy. Prosím použijte správce balíčků " +"\"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get install -f\" " +"pro nápravu tohoto problému." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Prázdný" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Musíte zkontrolovat aktualizace manuálně\n" +"Je nutné zkontrolovat aktualizace ručně\n" "\n" -"Váš systéme nezjišťuje nové aktualizace automaticky. Nastavení můžete změnit " -"v \"Systém\" -> \"Správa\" -> \"Vlastnosti Software\"" +"Váš systém nezjišťuje nové aktualizace automaticky. Toto nastavení můžete " +"změnit v \"Systém\" -> \"Správa\" -> \"Vlastnosti Software\"" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "Udržujte Váš systém aktuální" +msgstr "Udržujte svůj systém aktuální" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Chyba při načítání CD\n" -"\n" -"%s" +msgstr "Není možné nainstalovat všechny aktualizace" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Spustit upgrade?" +msgstr "Spouštím správce aktualizací" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1130,7 +1085,7 @@ msgstr "Změny a popis aktualizace" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "Z_kontrolovat" +msgstr "Zaš_krtnout" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" @@ -1151,6 +1106,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Spusťte přechod na vyšší verzi distribuce - tím nainstalujete maximální " +"možný počet aktualizací. \n" +"\n" +"Toto může být způsobeno nedokončeným přechodem na vyšší verzi, neoficiálními " +"balíky se software anebo použitím vývojové verze." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1158,7 +1118,7 @@ msgstr "Zobrazit průběh stahování jednotlivých souborů" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "Aktualizace softwaru" +msgstr "Aktualizace software" #: ../data/glade/UpdateManager.glade.h:18 msgid "" @@ -1170,34 +1130,38 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "U_pgrade" +msgstr "_Přejít na vyšší verzi" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "Upgradovat na poslední verzi Ubuntu" +msgstr "Přejít na nejnovější verzi Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "_Zkontrolovat" +msgstr "_Zaškrtnout" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Pokračovat v upgradu" +msgstr "_Přechod na vyšší verzi distribuce" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "_Nezobrazovat příště tyto informace" +msgstr "Nadále tyto informace _nezobrazovat" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" -msgstr "Na_instalovat Aktualizace" +msgstr "Na_instalovat aktualizace" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "změny" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "aktualizace" @@ -1211,14 +1175,13 @@ msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" -msgstr "Síťové aktualizace" +msgstr "Aktualizace z internetu" #: ../data/glade/SoftwareProperties.glade.h:5 msgid "Internet" msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 -#, fuzzy msgid "" "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 " @@ -1228,17 +1191,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"Zúčastněte se, prosím, utkání oblíbenosti aby Ubuntu lépe poznalo zvyky " -"uživatelů. Pokud tak učiníte, seznam nainstalovaného software a četnost " -"použití bude každý týden anonymně odesílána projektu Ubuntu.\n" +"Zúčastněte se, prosím, ankety oblíbenosti, jejímž účelem je lépe poznat " +"zvyky uživatelů Ubuntu. Pokud tak učiníte, seznam nainstalovaného software a " +"četnost jeho použití bude každý týden anonymně odesílána projektu " +"Ubuntu.\n" "\n" -"Výsledky jsou použity ke zlepšení podpory pro oblíbené aplikace a řazení ve " -"výsledcích vyhledávání." +"Výsledky jsou používány ke zlepšení podpory pro oblíbené aplikace a pro " +"určování pořadí aplikací ve výsledcích vyhledávání." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Přidat _Cdrom" +msgstr "Přidat CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1246,7 +1209,7 @@ msgstr "Ověření" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "_Smazat stažené soubory programů:" +msgstr "_Smazat stažené balíky:" #: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" @@ -1258,23 +1221,23 @@ msgstr "Importovat veřejný klíč od důvěryhodného poskytovate softwaru" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" -msgstr "Síťové aktualizace" +msgstr "Aktualizace z Internetu" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -"Automaticky instalovány budou pouze bezpečností aktualizace z oficiálních " -"serverů Ubuntu." +"Pouze bezpečností aktualizace z oficiálních serverů Ubuntu budou instalovány " +"automaticky" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" -msgstr "Obnovit _Původní" +msgstr "Obnovit _výchozí" #: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" -msgstr "Obnovit původní klíče vaší distribuce" +msgstr "Obnovit výchozí klíče vaší distribuce" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 @@ -1307,14 +1270,13 @@ msgstr "Stá_hnout aktualizace automaticky, ale neinstalovat je" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "_Importovat klíč" +msgstr "_Importovat soubor s klíči" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instalovat bezpečnostní aktualizace bez potvrzení" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1323,12 +1285,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Informace ze zdroje jsou zastaralé\n" +"Informace o dostupném software jsou zastaralé\n" "\n" -"K instalaci software a aktualizací je třeba obnovit informace zdroje z nově " -"přidaných nebo změněných zdrojů. \n" +"Pro instalaci software a aktualizací z nových nebo pozměněných zdrojů je " +"nutné obnovit informace o dostupném softwaru.\n" "\n" -"Pro pokračování je třeba funkční připojení k internetu." +"K tomu je nutné funkční připojení k Internetu." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1351,7 +1313,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1359,23 +1320,23 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadejte úplný řádek pro cestu APT kanálu, který chcete přidat\n" +"Zadejte úplnou specifikaci APT kanálu, který chcete " +"přidat\n" "\n" -"Řádek pro APT obsahuje typ, umístění a součásti kanálu, např. \"deb " +"Řádek pro APT kanál obsahuje typ, umístění a součásti kanálu, např. \"deb " "http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" -msgstr "APT řádek:" +msgstr "Řádka APT:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 msgid "" "Binary\n" "Source" msgstr "" -"Binární\n" -"Zdroj" +"Binární balíky\n" +"Balíky se zdrojovými kódy" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" @@ -1399,7 +1360,7 @@ msgstr "Zobrazit a nainstalovat dostupné aktualizace" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "Správce Aktualizací" +msgstr "Správce aktualizací" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1407,22 +1368,21 @@ msgid "" "available and offer to upgrade (if possible)." msgstr "" "Automaticky kontrolovat, zda je dostupná nová verze současné distribuce a " -"nabídnou přechod na vyšší verzi (pokud je to možné)." +"nabídnout přechod na vyšší verzi, je-li to možné." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" msgstr "Zkontrolovat nová vydání distribuce" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"Pokud je automatická kontrola aktualizací zakázána, musíte obnovit seznam " -"zdrojů ručne. Tato volba umožní ukrytí upomínky zobrazované v takovém " -"případě." +"Tato volba umožňuje skrytí upomínky na nutnost ručního obnovení seznamu " +"zdrojů zobrazované v případě, že automatická kontrola aktualizací je " +"zakázána." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1434,13 +1394,13 @@ msgstr "Zobrazit detaily aktualizace" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Uchovává velikost dialogu update-manageru" +msgstr "Uchovává velikost dialogu spřávce aktualizací" #: ../data/update-manager.schemas.in.h:7 msgid "" "Stores the state of the expander that contains the list of changes and the " "description" -msgstr "" +msgstr "Uchovává stav prvku obsahujícího seznam změn a popisů" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1450,240 +1410,192 @@ msgstr "Velikost okna" msgid "Configure the sources for installable software and updates" msgstr "Konfigurovat zdroje pro instalovatelný software a aktualizace" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Udržováno komunitou (Universe)" +msgstr "Udržováno komunitou" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Patentované (proprietární) ovladače zařízení" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Nesvobodný (Multiverse)" +msgstr "Nesvobodný software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom s Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržováno komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Udržováno komunitou (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Udržováno komunitou (Universe)" +msgstr "Software s otevřeným zdrojovým kódem, který je udržován komunitou" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nesvobodné ovladače" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Patentované (proprietární) ovladače pro zařízení " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" -msgstr "Omezený software (Multiverse)" +msgstr "Software s omezující licencí (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Software omezený ochrannou známkou nebo jinými právními prostředky" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom s Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Aktualizace přenesené z vyšších verzí distribuce" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" +msgstr "Bezpečnostní aktualizace Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 5.10 Aktualizace" +msgstr "Aktualizace Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Software přenesený z vyšší verze distribuce na Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom s Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálně podporováno" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.04 Bezpečnostní aktualizace" +msgstr "Bezpečnostní aktualizace Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.04 Aktualizace" +msgstr "Aktualizace Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.04 Backports" +msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržováno komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nesvobodný (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom s Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Oficiálně podporované" +msgstr "Již není oficiálně podporováno" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "Omezeno copyrightem" +msgstr "Omezený copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 4.10 Bezpečnostní aktualizace" +msgstr "Bezpečnostní aktualizace Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 4.10 Aktualizace" +msgstr "Aktualizace Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 4.10 Backports" +msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Debian 3.1 \"Sarge\" Bezpoečnostní Aktualizace" +msgstr "Bezpečnostní Aktualizace Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "DFSG-kompatibilní software s Non-free závislostmi" +msgstr "" +"Software kompatibilní s DFSG, ale závisející na nesvobodných balících" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "Žádný DFSG kompatibilní Software" +msgstr "Software nekompatibilní s DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Stahuji %li. soubor z %li neznámou rychlostí" @@ -1722,8 +1634,8 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "" #~ "Prozkoumává se systém\n" #~ "\n" -#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti " -#~ "a poskytují nové funkce." +#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti a " +#~ "poskytují nové funkce." #~ msgid "Oficially supported" #~ msgstr "Oficiálně podporované" @@ -1731,6 +1643,7 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Následující aktualizace budou přeskočeny:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zhruba %li sekund zbývá" @@ -1807,14 +1720,14 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "Ubuntu 6.06 LTS backporty" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka " -#~ "pro upgrade.\n" +#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka pro " +#~ "upgrade.\n" #~ msgid "Sections" #~ msgstr "Sekce" #~ msgid "Sections:" -#~ msgstr "Sekce:" +#~ msgstr "Sekce:" \ No newline at end of file diff --git a/po/csb.po b/po/csb.po new file mode 100644 index 00000000..cb3d3943 --- /dev/null +++ b/po/csb.po @@ -0,0 +1,1443 @@ +# Kashubian translation for update-manager +# Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-08 04:10+0000\n" +"Last-Translator: Michôł Òstrowsczi \n" +"Language-Team: Kashubian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Codniowò" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Co dwa dni" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Co tidzeń" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Co dwa tidzenie" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Co %s dni" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Pò tidzeniu" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Pò dwóch tidzeniach" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Pò miesącu" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "P %s dniach" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "%s aktualizacëji" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "Przédny serwera" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "Serwera dlô kraju %s" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "Nôblëższi serwera" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "Jine serwerë" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "Kanal òprogramòwania" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "Aktiwny" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "(zdrojowi kòd)" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "Zdrojowi kòd" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Impòrtëjë klucz" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Fela òbczas impòrtowania wëbrónegò lopkù" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "Wëbróny lopk może nie bëc kluczã abò mòże bëc pòpsëti." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Fela òbczas rëmaniô klucza" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "Nie mòżna bëło rëmnąc klucza. Proszã zgłoszëc to jakno felã." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" +"Wëstśpiła fela òbczas skanowania platë CD\n" +"\n" +"%s" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Proszã dac miono dlô platë" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Paczétë są zmiłkòwé" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:213 +msgid "Can't upgrade required meta-packages" +msgstr "Nie je mòżno zaktualizowac wëmôgónëch meta-paczétów" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "Fela òbczas ùdowierzaniô niechtërnëch paczétów" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "Nie je mòżno zainstalowac '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Nie bëło mòżna zainstalowac wëmôgónegò paczétu. Proszã zgłoszëc to jakno " +"felã. " + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "Nie je mòżno dodac platë CD" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "Fela òbczas aktualizacëji" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "CZë chcesz zrëszëc aktualizacëjã?" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "Instalacëja aktualizacëji nie darzëła sã." + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "_Rëmôj" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "Fela òbczas zacwierdzaniô" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "Sprôwdzanié menadżera paczétów" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format +msgid "About %s remaining" +msgstr "Òsta kòl %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "Zacwierdzanié zmianów" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "Nie bëło mòżno zainstalowac '%s'" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" +"Zastãpic swójny lopk kònfigùracëji\n" +"'%s'?" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 +msgid "The 'diff' command was not found" +msgstr "Pòlét 'diff' nie òsta nalazłé" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +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 aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "%d paczét òstanié rëmniãty." +msgstr[1] "%d paczétë òstaną rëmniãte." +msgstr[2] "%d paczétów òstaną rëmniãtëch." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "%d nowi paczétë òstaną zainstalowóne." +msgstr[1] "%d nowi paczét òstanie zainstalowóny." +msgstr[2] "%d nowëch paczétów òstanie zainstalowónëch." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "%d paczét òstanié zaktualizowóny." +msgstr[1] "%d paczétë òstaną zaktualizowóne." +msgstr[2] "%d paczétów òstanie zaktualizowónëch." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../UpdateManager/UpdateManager.py:622 +msgid "Your system is up-to-date" +msgstr "Twojô systema je fùl zaktualizowónô" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" +"Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#, python-format +msgid "Remove %s" +msgstr "Rëmôj %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#, python-format +msgid "Install %s" +msgstr "Instalëjë %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#, python-format +msgid "Upgrade %s" +msgstr "Aktualizëjë %s" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "%li dni %li gòdzin %li minut" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "%li gòdzin %li minut" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "%li minut" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "%li sekùnd" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "Wëmògóne je zrëszenié kòmpùtra znowa" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" +"Aktualizacëjô òsta zakùńczonô ë nót je zrëszëc kòmpùtr znowa. Zrobic to terô?" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr " " + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "Zrëszë kòpmùtr znowa, żebë zakùńczëc aktualizacëjã" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "Aktualizacëjô Ubuntu do wersëji 6.10" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "Zjinaczi midze lopkama" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "Zrëszanié znowa systemë" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "Terminal" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "Ò_przestanié aktualizacëji" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 +msgid "_Replace" +msgstr "_Zastãpi" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "_Zrëszë znowa" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "_Startëjë aktualizacëjã" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:478 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:539 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:566 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:572 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:633 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../UpdateManager/UpdateManager.py:666 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:668 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:719 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:826 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:830 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:832 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:843 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:844 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:863 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:902 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:903 +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 terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/da.po b/po/da.po index 1d1b4a93..9d21e317 100644 --- a/po/da.po +++ b/po/da.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:41+0000\n" -"Last-Translator: Mathias-K \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 15:55+0000\n" +"Last-Translator: Lasse Bang Mikkelsen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,7 +34,7 @@ msgid "Every two weeks" msgstr "Hver anden uge" #: ../SoftwareProperties/SoftwareProperties.py:144 -#, fuzzy, python-format +#, python-format msgid "Every %s days" msgstr "Hver %s. dag" @@ -55,7 +55,6 @@ msgstr "Efter en måned" msgid "After %s days" msgstr "Efter %s dage" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s opdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hovedserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Fejl ved fjernelse af nøgle" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Den valgte nøgle kunne ikke fjernes. Rapportér venligst dette som en fejl." @@ -166,7 +164,6 @@ msgstr "Kan ikke opgradere de krævede metapakker" msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vital pakke" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke beregne opgraderingen" @@ -183,7 +180,6 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" @@ -211,7 +207,6 @@ msgstr "" "Det var umuligt at installere en påkrævet pakke. Rapportér venligst dette " "som en fejl. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gætte metapakke" @@ -294,7 +289,6 @@ msgstr "" "her, vil alle linjer \"%s\" blive erstattet af \"%s\".\n" "Hvis du vælger \"Nej\", vil opdateringen blive annulleret." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generér standardkilder?" @@ -366,7 +360,6 @@ msgstr "" "papirkurv og fjern midlertidige pakker fra tidligere installationer ved at " "køre 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" @@ -424,7 +417,6 @@ msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" #: ../DistUpgrade/DistUpgradeControler.py:553 -#, fuzzy msgid "_Skip This Step" msgstr "_Spring dette trin over" @@ -444,7 +436,6 @@ msgstr "" "Et problem opstod under oprydningen. Se venligst længere nede for mere " "information. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Genskaber oprindelig systemtilstand" @@ -455,26 +446,24 @@ msgid "Fetching backport of '%s'" msgstr "Henter tilbageportering af \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Klargør opgraderingen" +msgstr "Klargøring af opgraderingen fejlede" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Der forekom et uløseligt problem under beregningen af opgraderingen. " -"Rapportér venligst dette som en fejl." +"Klargøring af systemet til opgraderingen fejlede. Rapportér venligst denne " +"fejl mod \"update-manager\"-pakken og inkludér filerne i /var/log/dist-" +"upgrade/ i fejlrapporten." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -515,7 +504,6 @@ msgstr "Søger efter forældet software" msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -531,19 +519,18 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Henter fil %li af %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Omkring %s tilbage" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Henter fil %li af %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Anvender ændringer" @@ -558,11 +545,11 @@ 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 bugreport." msgstr "" -"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-manager" -"\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i fejlrapporten." +"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-" +"manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " +"fejlrapporten." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -571,25 +558,27 @@ msgstr "" "Udskift den tilpassede konfigurationsfil\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Du mister alle ændringer du har lavet til denne konfigurationsfil, hvis du " +"vælger at erstatte den med en nyere version." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Kommandoen \"diff\" blev ikke fundet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Der opstod en alvorlig fejl" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapportér venligst dette som en fejl og inkludér filerne /var/log/dist-" @@ -598,29 +587,28 @@ msgstr "" "Din oprindelige sources.list blev gemt i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakke vil blive fjernet." msgstr[1] "%d pakker vil blive fjernet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d ny pakke vil blive installeret." msgstr[1] "%d nye pakker vil blive installeret." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakke vil blive opgraderet." msgstr[1] "%d pakker vil blive opgraderet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -631,7 +619,7 @@ msgstr "" "\n" "Du skal hente i alt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -639,17 +627,16 @@ msgstr "" "Hentning og installation af opgraderingen kan tage flere timer og kan ikke " "afbrydes senere." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -657,17 +644,17 @@ msgstr "" "Der er ingen opgraderinger tilgængelige for dit system. Opgraderingen vil nu " "blive afbrudt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Opgradér %s" @@ -693,13 +680,14 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Denne hentning vil tage omkring %s med en 1 Mbit DSL-forbindelse og omkring " +"%s med et 56k modem" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -715,7 +703,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -758,7 +745,6 @@ msgid "Difference between the files" msgstr "Forskel mellem filerne" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Henter og installerer opgraderingerne" @@ -779,19 +765,19 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Genoptag opgradering" +msgstr "_Afbryd opgradering" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Fortsæt" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Behold" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Erstat" @@ -808,9 +794,8 @@ msgid "_Resume Upgrade" msgstr "_Genoptag opgradering" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Genoptag opgradering" +msgstr "_Begynd opgradering" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -828,7 +813,6 @@ msgstr "Kunne ikke hente udgivelsesnoterne" msgid "Please check your internet connection." msgstr "Undersøg venligst din internetforbindelse" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke køre opgraderingsværktøjet" @@ -917,32 +901,29 @@ msgid "The list of changes is not available" msgstr "Listen med ændringer er ikke tilgængelig" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." +msgstr "" +"Listen med ændringer er ikke klar endnu.\n" +"Prøv venligst igen senere." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Fejl ved hentning af ændringslisten. Undersøg venligst din " -"internetforbindelse." +"Fejl ved hentning af ændringslisten.\n" +"Undersøg venligst din internetforbindelse." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Vigtige sikkerhedsopdateringer" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Anbefalede opdateringer" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Foreslåede opdateringer" @@ -955,7 +936,6 @@ msgstr "Tilbageporteringer" msgid "Distribution updates" msgstr "Distributionsopdateringer" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andre opdateringer" @@ -966,7 +946,6 @@ msgid "Version %s: \n" msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." msgstr "Henter listen med ændringer..." @@ -978,7 +957,6 @@ msgstr "_Fjern alle afkrydsninger" msgid "_Check All" msgstr "_Afkryds alle" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1013,7 +991,6 @@ msgstr "Fra version %(old_version)s til %(new_version)s" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1030,15 +1007,14 @@ msgid "" "information on upgrading." msgstr "" "Du vil ikke modtage yderligere sikkerhedrettelser eller kritiske " -"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se http://www." -"ubuntu.com (engelsk) for mere information om opgradering." +"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se " +"http://www.ubuntu.com (engelsk) for mere information om opgradering." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny distributionsudgivelse \"%s\" er tilgængelig" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Softwareindekset er ødelagt" @@ -1050,26 +1026,22 @@ msgid "" "this issue at first." msgstr "" "Det er ikke muligt at installere eller fjerne software. Brug venligst " -"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -f" -"\" i en terminal for at fikse dette problem først." +"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -" +"f\" i en terminal for at fikse dette problem først." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Intet" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1095,8 +1067,8 @@ msgstr "Hold dit system opdateret" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Ikke alle opdateringer kan installeres\r\n" -"\r\n" +"Ikke alle opdateringer kan installeres \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1124,7 +1096,6 @@ msgid "Description" msgstr "Beskrivelse" #: ../data/glade/UpdateManager.glade.h:12 -#, fuzzy msgid "Release Notes" msgstr "Udgivelsesnoter" @@ -1182,10 +1153,14 @@ msgid "_Install Updates" msgstr "_Installér opdateringer" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "_Opgradér" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "ændringer" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "opdateringer" @@ -1322,7 +1297,6 @@ msgid "Comment:" msgstr "Kommentar:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 -#, fuzzy msgid "Components:" msgstr "Komponenter:" @@ -1357,7 +1331,6 @@ msgid "APT line:" msgstr "APT-linje:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 -#, fuzzy msgid "" "Binary\n" "Source" @@ -1386,7 +1359,6 @@ msgid "Show and install available updates" msgstr "Vis og installér tilgængelige opdateringer" #: ../data/update-manager.desktop.in.h:2 -#, fuzzy msgid "Update Manager" msgstr "Opdateringshåndtering" @@ -1413,7 +1385,6 @@ msgstr "" "påmindelsen skjules i det tilfælde." #: ../data/update-manager.schemas.in.h:4 -#, fuzzy msgid "Remind to reload the channel list" msgstr "Påmind om at genopfriske kanallisten" @@ -1433,7 +1404,6 @@ msgstr "" "Tilstanden for udfolderen der indeholder listen med ændringer og beskrivelser" #: ../data/update-manager.schemas.in.h:8 -#, fuzzy msgid "The window size" msgstr "Vinduesstørrelsen" @@ -1441,234 +1411,190 @@ msgstr "Vinduesstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Konfigurér kilderne for installérbar software og opdateringer" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Vedligeholdt af fællesskabet" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietære drivere til enheder" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ikke-frit software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Vedligeholdt af fællesskabet (Universe)" +msgstr "Fri software understøttet af Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Vedligeholdt af fællesskabet (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Fri software vedligeholdt af fællesskabet" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietære drivere" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietære drivere til enheder " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ikke-frit software (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Software begrænset af ophavsret eller legale problemer" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Tilbageporterede opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 tilbageporteringer" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Understøttet officielt" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 tilbageporteringer" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedligeholdt af fællesskabet (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ikke-frit (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ikke længere officielt supporteret" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrænset ophavsret" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 tilbageporteringer" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhedsopdateringer" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel software med ikke-frie afhængigheder" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel software" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Henter fil %li af %li med ukendt hastighed" @@ -1691,8 +1617,7 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Opgraderer til Ubuntu 6.06 LTS" +#~ "Opgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1711,17 +1636,17 @@ msgstr "Ikke-DFSG-kompatibel software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg " -#~ "alle opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør " -#~ "\"sudo apt-get dist-upgrade\" i en terminal for at opdatere dit system " -#~ "fuldstændigt." +#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg alle " +#~ "opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo " +#~ "apt-get dist-upgrade\" i en terminal for at opdatere dit system fuldstændigt." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende opdateringer vil blive sprunget over:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Tid tilbage(ca.): %li sekunder" @@ -1798,4 +1723,4 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgstr "Ubuntu 6.06 LTS Opdateringer" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/de.po b/po/de.po index 66fd6195..f528a482 100644 --- a/po/de.po +++ b/po/de.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:37+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" "MIME-Version: 1.0\n" @@ -56,7 +56,6 @@ msgstr "Nach einem Monat" msgid "After %s days" msgstr "Nach %s Tagen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s Aktualisierungen" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Haupt-Server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,13 +124,14 @@ msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Der gewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -172,7 +170,6 @@ msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" @@ -188,7 +185,6 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" @@ -217,7 +213,6 @@ msgstr "" "Ein erforderliches Paket konnte nicht installiert werden. Bitte erstellen " "Sie hierfür einen Fehlerbericht. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" @@ -263,7 +258,8 @@ msgstr "Zwischenspeicher wird ausgelesen" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" +msgstr "" +"Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -301,7 +297,6 @@ msgstr "" "wählen, werden alle Einträge von '%s' bis '%s' aktualisiert.\n" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Standardquellen generieren?" @@ -314,8 +309,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für '%" -"s' gefunden.\n" +"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für " +"'%s' gefunden.\n" "\n" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." @@ -375,7 +370,6 @@ msgstr "" "Plattenplatz auf %s frei. Leeren Sie Ihren Mülleimer und entfernen die " "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" @@ -456,7 +450,6 @@ msgstr "" "Ein Problem trat beim Aufräumen auf. Bitte lesen Sie die unten stehende " "Nachricht für nähere Informationen. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" @@ -464,10 +457,9 @@ msgstr "Wiederherstellen des alten Systemzustandes" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Lade Rückportierung von '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -527,7 +519,6 @@ msgstr "Nach veralteter Software wird gesucht" msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -543,7 +534,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Datei %li von %li wir mit %s/s heruntergeladen" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Es verbleiben ungefähr %s" @@ -555,7 +546,6 @@ msgstr "Datei %li von %li wird heruntergeladen" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Änderungen werden angewendet" @@ -574,9 +564,8 @@ msgstr "" "als einen Fehler des Pakets 'update-manager' und fügen Sie die Dateien in " "dem Verzeichnis '/var/log/dist-upgrade/' Ihrer Fehlermeldung hinzu." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -584,26 +573,29 @@ msgstr "" "Die Konfigurationsdatei\n" "»%s« ersetzen?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Sie werden alle von Ihnen in der Konfigurationsdatei vorgenommenen " +"Veränderungen verlieren, wenn Sie die Datei durch eine neuere Version " +"ersetzen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Das 'diff'-Kommando konnte nicht gefunden werden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ein fataler Fehler ist aufgetreten" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bitte melden Sie dies als Bug und fügen Sie die Dateien /var/log/dist-" @@ -613,30 +605,29 @@ msgstr "" "gespeichert." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -646,7 +637,7 @@ msgstr "" "\n" "Insgesamt müssen %s heruntergeladen werden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -654,35 +645,34 @@ msgstr "" "Die Aktualisierung kann mehrere Stunden in Anspruch nehmen. Desweiteren kann " "sie zu keinem späteren Zeitpunkt mehr abgebrochen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s wird entfernt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s wird installiert" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s wird aktualisiert" @@ -708,13 +698,14 @@ msgid "%li seconds" msgstr "%li Sekunden" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Das Herunterladen wird ungefähr %s mit einer 1Mbit DSL-Verbindung und " +"ungefähr %s mit einer 56k Modemverbindung dauern" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -730,7 +721,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -801,13 +791,14 @@ msgstr "_Aktualisierung fortsetzen" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Fortsetzen" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Beibehalten" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Ersetzen" @@ -844,7 +835,6 @@ msgstr "Freigabemitteilungen konnten nicht heruntergeladen werden" msgid "Please check your internet connection." msgstr "Bitte überprüfen Sie Ihre Internet-Verbindung." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Konnte die Anwendung zur Aktualisierung nicht starten" @@ -922,12 +912,12 @@ msgstr "" "Möglicherweise gibt es Probleme im Netzwerk oder am Server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" @@ -953,17 +943,14 @@ msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Wichtige Sicherheitsaktualisierungen" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Empfohlene Updates" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Vorgeschlagene Aktualisierungen" @@ -978,7 +965,6 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Aktualisierung fortsetzen" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andere Aktualisierungen" @@ -1002,7 +988,6 @@ msgstr "" msgid "_Check All" msgstr "_Prüfen" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1029,7 +1014,7 @@ msgid "Checking for updates" msgstr "Nach verfügbaren Aktualisierungen suchen" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Neue Version: %s (Größe: %s)" @@ -1038,7 +1023,6 @@ msgstr "Neue Version: %s (Größe: %s)" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1056,15 +1040,15 @@ msgid "" msgstr "" "Sie werden keine weiteren Aktualisierungen zur Behebung von " "Sicherheitslücken oder kritischen Fehlern erhalten. Aktualisieren Sie Ihr " -"System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." -"de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." +"System auf eine neuere Version von Ubuntu Linux. Auf " +"http://www.ubuntuusers.de oder http://www.ubuntu.com finden Sie weitere " +"Informationen hierzu." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" @@ -1079,23 +1063,19 @@ msgstr "" "verwenden Sie zuerst die Synaptic Paketverwaltung oder führen Sie »sudo apt-" "get install -f« im Terminal aus, um dieses Problem zu beheben." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Keine" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1112,8 +1092,8 @@ msgstr "" "Sie müssen manuell auf Aktualisierungen prüfen\n" "\n" "Ihr System prüft nicht automatisch auf verfügbare Aktualisierungen. Sie " -"können dieses Verhalten über die Menüpunkte \"System\" -> \"Systemverwaltung" -"\" -> \"Software Eigenschaften\" ändern." +"können dieses Verhalten über die Menüpunkte \"System\" -> " +"\"Systemverwaltung\" -> \"Software Eigenschaften\" ändern." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1207,10 +1187,15 @@ msgstr "Aktualisierungen _installieren" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Aktualisieren" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Änderungen" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "Aktualisierungen" @@ -1473,231 +1458,187 @@ msgstr "" "Software-Kanäle und Einstellungen für die automatische Aktualisierung " "festlegen" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Von der Ubuntu-Gemeinde betreut" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietäre Gerätetreiber" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Eingeschränkte Software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM mit Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Von der Gemeinschaft betreut (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Von der Gemeinschaft betreut (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Von der Ubuntu-Gemeinde betreute Open Source-Software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietäre Treiber" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietäre Gerätetreiber " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Eingeschränkte Software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM mit Ubuntu 6.06 LTS »Dapper Drake«" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Zurückportierte Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM mit Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM mit Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offiziell unterstützt" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Von der Gemeinschaft verwaltet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Unfrei (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM mit Ubuntu 4.10 »Warty Warthog«" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Eingeschränktes Copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" @@ -1705,6 +1646,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Urheberrechtlich oder gesetzlich eingeschränkte Software" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "" #~ "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" @@ -1728,8 +1670,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Auf Ubuntu 6.10 aktualisieren" +#~ "Auf Ubuntu 6.10 aktualisieren" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Wichtige Sicherheitsaktualisierungen von Ubuntu" @@ -1756,8 +1697,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Einige Aktualisierungen erfordern das Entfernen von anderen Anwendungen. " #~ "Verwenden Sie die Funktion »Aktualisierungen vormerken« in der Synaptic " @@ -1767,6 +1708,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Die folgenden Aktualisierungen werden ausgelassen:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefähr %li Sekunden verbleibend" @@ -1775,8 +1717,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür " -#~ "einen Fehlerbericht." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür einen " +#~ "Fehlerbericht." #~ msgid "Upgrading Ubuntu" #~ msgstr "Ubuntu aktualisieren" @@ -1795,8 +1737,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder " -#~ "'Synaptic'." +#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder 'Synaptic'." #~ msgid "Channels" #~ msgstr "Kanäle" @@ -1847,12 +1788,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %" -#~ "s an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen " -#~ "Sie temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %s " +#~ "an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen Sie " +#~ "temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." #~ msgid "%s remaining" #~ msgstr "%s verbleiben" @@ -1861,27 +1802,27 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Keinen gültigen Eintrag gefunden" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Beim Lesen Ihrer Kanalliste konnte kein gültiger Eintrag für die " #~ "Aktualisierung gefunden werden.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Die Aktualisierung wird jetzt abgebrochen. Ihr System könnte in einem " #~ "unbenutzbaren Zustand sein. Ein Wiederherstellungsversuch wird nun " #~ "unternommen (dpkg --configure -a)." #~ msgid "" -#~ "Please report this as a bug and include the files '/var/log/dist-upgrade." -#~ "log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " +#~ "Please report this as a bug and include the files '/var/log/dist-" +#~ "upgrade.log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " #~ "aborts now. " #~ msgstr "" -#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien " -#~ "» »/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " +#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien » " +#~ "»/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " #~ "Bericht bei. Die Aktualisierung wird jetzt abgebrochen. " #~ msgid "" @@ -1926,14 +1867,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Änderungen werden heruntergeladen\n" +#~ "Änderungen werden " +#~ "heruntergeladen\n" #~ "\n" #~ "Die Änderungen müssen vom zentralen Server abgerufen werden" #~ msgid "Show available updates and choose which to install" -#~ msgstr "" -#~ "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" +#~ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" #, fuzzy #~ msgid "Error fetching the packages" @@ -1960,14 +1900,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " -#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " -#~ "werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " +#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." #~ msgid "Repository" #~ msgstr "Repository" @@ -1996,12 +1935,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen " -#~ "Schlüsselbund. Stellen Sie sicher, dass der Schlüssel über eine sichere " -#~ "Verbindung bezogen wurde und dass der Besitzer vertrauenswürdig ist. " +#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen Schlüsselbund. " +#~ "Stellen Sie sicher, dass der Schlüssel über eine sichere Verbindung bezogen " +#~ "wurde und dass der Besitzer vertrauenswürdig ist. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "_Temporäre Paketdateien automatisch löschen" @@ -2023,12 +1962,11 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution " -#~ "ausgeliefert wurden. Vom Benutzer installierte Schlüssel werden dadurch " -#~ "nicht geändert." +#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution ausgeliefert " +#~ "wurden. Vom Benutzer installierte Schlüssel werden dadurch nicht geändert." #~ msgid "Set _maximum size for the package cache" #~ msgstr "_Begrenzen der Größe des Paketzwischenspeichers" @@ -2053,8 +1991,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ "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." @@ -2062,13 +2000,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete " -#~ "weitere Aktionen, wie das Installieren oder Entfernen von Paketen, " -#~ "notwendig sind. Verwenden Sie bitte die »Intelligente Aktualisierung« von " -#~ "Synaptic oder »apt-get dist-upgrade« zur Behebung des Problems." +#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete weitere " +#~ "Aktionen, wie das Installieren oder Entfernen von Paketen, notwendig sind. " +#~ "Verwenden Sie bitte die »Intelligente Aktualisierung« von Synaptic oder »apt-" +#~ "get dist-upgrade« zur Behebung des Problems." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2079,8 +2016,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Die Aktualisierungen werden ausgeführt." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2093,20 +2030,20 @@ msgstr "Nicht DFSG-kompatible Software" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Verwenden Sie bitte eine aktuellere Version von Ubuntu-Linux. Für die " #~ "momentan laufende Version werden keine Sicherheits- und andere kritische " -#~ "Aktualisierungen mehr bereitgestellt. Informationen zur " -#~ "Systemaktualisierung finden Sie unter http://www.ubuntulinux.org." +#~ "Aktualisierungen mehr bereitgestellt. Informationen zur Systemaktualisierung " +#~ "finden Sie unter http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Eine neue Version von Ubuntu ist verfügbar!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Eine neue Version mit dem Codenamen »%s« ist verfügbar. Informationen zur " #~ "Aktualisierung des Systems erhalten Sie unter http://www.ubuntulinux.org." @@ -2116,8 +2053,8 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2126,8 +2063,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Initialisierung und Abrufen der Aktualisierungsliste..." #~ msgid "You need to be root to run this program" -#~ msgstr "" -#~ "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." +#~ msgstr "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." #~ msgid "Edit software sources and settings" #~ msgstr "Bearbeiten der Software-Quellen und Einstellungen" @@ -2150,17 +2086,15 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " +#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " -#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " -#~ "werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " +#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." \ No newline at end of file diff --git a/po/el.po b/po/el.po index bd4c7c91..0ac6d8ab 100644 --- a/po/el.po +++ b/po/el.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:37+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Μετά από ένα μήνα" msgid "After %s days" msgstr "Μετά από %s ημέρες" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s ενημερώσεις" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Κύριος εξυπηρετητής" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Σφάλμα απομάκρυνσης κλειδιού" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Το κλειδί που επιλέξατε δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε αυτό " "ως σφάλμα." @@ -169,7 +167,6 @@ msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετ msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" @@ -186,7 +183,6 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά σφάλματος τα αρχεία στο /var/log/dist-upgrade/." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" @@ -214,7 +210,6 @@ msgstr "" "Δεν ήταν δυνατή η αναβάθμιση του απαιτούμενου πακέτου. Παρακαλώ αναφέρετε το " "ως σφάλμα. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" @@ -297,7 +292,6 @@ msgstr "" "εδώ 'Ναι' θα ενημερωθούν όλες οι '%s' καταχωρίσεις σε '%s'.\n" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" @@ -310,8 +304,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το '%" -"s'.\n" +"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το " +"'%s'.\n" "\n" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." @@ -370,7 +364,6 @@ msgstr "" "στο %s. Αδειάστε τα απορρίμματα σας και απομακρύνετε τα προσωρινά πακέτα " "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" @@ -448,7 +441,6 @@ msgstr "" "Δημιουργήθηκαν ορισμένα προβλήματα κατά την εκκαθάριση. Παρακαλώ δείτε το " "παρακάτω μήνυμα για περισσότερες πληροφορίες. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" @@ -459,26 +451,24 @@ msgid "Fetching backport of '%s'" msgstr "Λήψη backport του '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Προετοιμασία της αναβάθμισης" +msgstr "Απέτυχε η προετοιμασία της αναβάθμισης" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" "Συνέβηκε ένα ανεπίλυτο πρόβλημα κατά τον υπολογισμό της αναβάθμισης. " -"Παρακαλώ αναφέρετε το ως σφάλμα." +"Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " +"στην αναφορά τα αρχεία του /var/log/dist-upgrade/." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -519,7 +509,6 @@ msgstr "Γίνεται αναζήτηση για παρωχημένο λογισ msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -530,24 +519,23 @@ msgid "Fetching is complete" msgstr "Η λήψη ολοκληρώθηκε" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Απομένουν περίπου %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Λήψη αρχείου %li από %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Γίνεται εφαρμογή αλλαγών" @@ -566,8 +554,7 @@ msgstr "" "'update-manager' και συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ " "στην αναφορά σφάλματος." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -576,57 +563,58 @@ msgstr "" "Αντικατάσταση προσαρμοσμένου αρχείου ρύθμισης\n" "'%s';" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Οι αλλαγές που έχετε κάνει σε αυτό το αρχείο ρυθμίσεων θα χαθούν αν " +"επιλέξετε να το αντικαταστήσετε με μια νεότερη έκδοση." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Η εντολή 'diff' δεν βρέθηκε" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Προέκυψε μοιραίο σφάλμα" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα και επισυνάψτε τα αρχεία /var/log/dist-" "upgrade/main.log και /var/log/dist-upgrade/apt.log στην αναφορά σας. Η " "αναβάθμιση τώρα θα τερματιστεί. \n" -"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο /etc/apt/sources.list." -"distUpgrade." +"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d πακέτο πρόκειται να απομακρυνθεί." msgstr[1] "%d πακέτα πρόκειται να απομακρυνθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d νέο πακέτο πρόκειται να εγκατασταθεί." msgstr[1] "%d νέα πακέτα πρόκειται να εγκατασταθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d πακέτο πρόκειται να αναβαθμιστεί." msgstr[1] "%d πακέτα πρόκειται να αναβαθμιστούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -637,7 +625,7 @@ msgstr "" "\n" "Θα πρέπει να κάνετε συνολική λήψη %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -646,19 +634,18 @@ msgstr "" "Η αναβάθμιση μπορεί να διαρκέσει αρκετές ώρες και δεν είναι δυνατή η ακύρωση " "της αργότερα." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -666,17 +653,17 @@ msgstr "" "Δεν υπάρχουν διαθέσιμες αναβαθμίσεις για το σύστημα σας. Η αναβάθμιση θα " "ακυρωθεί." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Απομάκρυνση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Εγκατάσταση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Αναβάθμιση %s" @@ -702,13 +689,14 @@ msgid "%li seconds" msgstr "%li δευτερόλεπτα" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Η λήψη θα διαρκέσει περίπου %s με σύνδεση 1Mbit DSL και περίπου %s με ένα " +"56K μόντεμ." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -724,7 +712,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -789,19 +776,19 @@ msgid "Terminal" msgstr "Τερματικό" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Συνέχεια αναβάθμισης" +msgstr "Α_κύρωση αναβάθμισης" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Συνέχεια" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Διατήρηση" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Αντικατά_σταση" @@ -818,9 +805,8 @@ msgid "_Resume Upgrade" msgstr "_Συνέχεια αναβάθμισης" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Συνέχεια αναβάθμισης" +msgstr "Έναρ_ξη αναβάθμισης" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -838,7 +824,6 @@ msgstr "Αδυναμία λήψης των σημειώσεων έκδοσης" msgid "Please check your internet connection." msgstr "Παρακαλώ ελέγξτε τη σύνδεση σας με το διαδίκτυο." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Αδυναμία εκτέλεσης του εργαλείου αναβαθμίσεων" @@ -856,7 +841,8 @@ msgstr "Λήψη του εργαλείου αναβάθμισης" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" +msgstr "" +"Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -872,7 +858,8 @@ msgstr "Αποτυχία λήψης" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " +msgstr "" +"Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -926,33 +913,29 @@ msgid "The list of changes is not available" msgstr "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." +"Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη.\n" +"Προσπαθήστε ξανά αργότερα." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας στο " -"διαδίκτυο." +"Αποτυχία λήψης της λίστας των αλλαγών.\n" +"Παρακαλώ ελέγξτε τη σύνδεση σας στο διαδίκτυο." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Σημαντικές ενημερώσεις ασφαλείας" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Συνιστώμενες ενημερώσεις" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Προτεινόμενες ενημερώσεις" @@ -965,7 +948,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Αναβαθμίσεις διανομής" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Άλλες ενημερώσεις" @@ -988,7 +970,6 @@ msgstr "Α_ποεπιλογή όλων" msgid "_Check All" msgstr "Έλε_γχος όλων" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1023,7 +1004,6 @@ msgstr "Από έκδοση: %(old_version)s σε %(new_version)s" msgid "Version %s" msgstr "Έκδοση %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1049,7 +1029,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" @@ -1064,23 +1043,19 @@ msgstr "" "το διαχειριστή πακέτων \"Synaptic\" η εκτελέστε την εντολή \"sudo apt-get " "install -f\" σε ένα τερματικό για να διορθώσετε το πρόβλημα πρώτα." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Καμία" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1105,7 +1080,8 @@ msgstr "Διατηρήστε το σύστημα σας ενημερωμ #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" +msgstr "" +"Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1189,10 +1165,15 @@ msgid "_Install Updates" msgstr "Ε_γκατάσταση ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Ανα_βάθμιση" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "αλλαγές" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "ενημερώσεις" @@ -1309,7 +1290,6 @@ msgid "_Install security updates without confirmation" msgstr "Ε_γκατάσταση ενημερώσεων ασφαλείας χωρίς επιβεβαίωση" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1318,7 +1298,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Οι πληροφορίες καναλιού δεν είναι ενημερωμένες\n" +"Οι πληροφορίες για το διαθέσιμο λογισμικό δεν είναι " +"ενημερωμένες\n" "\n" "Θα πρέπει να ανανεώσετε τις πληροφορίες καναλιού για να εγκαταστήσετε " "λογισμικό και ενημερώσεις από τα τα νέα κανάλια που προσθέσατε ή " @@ -1447,236 +1428,191 @@ msgstr "Το μέγεθος του παραθύρου" msgid "Configure the sources for installable software and updates" msgstr "Ρύθμιση των πηγών για λογισμικό και ενημερώσεις" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Οδηγοί με κλειστό κώδικα για συσκευές" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Λογισμικό με περιορισμούς" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom με το Ubuntu 6.10 'Edgy Eft" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 TLS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Community maintained (Universe)" +msgstr "Λογισμικό ανοικτού κώδικα υποστηριζόμενο από την Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Υποστηριζόμενα από την κοινότητα (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Όχι-ελεύθεροι οδηγοί" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Οδηγοί με κλειστό κώδικα για συσκευές " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Όχι-ελεύθερα (Multiverse)" +msgstr "Όχι-ελεύθερο (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Λογισμικό με περιορισμούς από πνευματικά δικαιώματα και νόμους" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom με Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported ενημερώσεις" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom με Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ενημερώσεις Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom με το Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Δεν υποστηρίζονται πια επίσημα" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Περιορισμένα πνευματικά δικαιώματα" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ενημερώσεις ασφαλείας Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ενημερώσεις Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες Εξαρτήσεις" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" @@ -1717,16 +1653,16 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "" #~ "Γίνεται ανάλυση του συστήματος σας\n" #~ "\n" -#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας " -#~ "και να παρέχουν νέες λειτουργίες." +#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " +#~ "να παρέχουν νέες λειτουργίες." #~ msgid "Oficially supported" #~ msgstr "Oficially supported" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Μερικές ενημερώσεις απαιτούν την απομάκρυνση επιπρόσθετου λογισμικού. " #~ "Χρησιμοποιήστε την λειτουργία \"Σημείωση όλων των αναβαθμίσεων\" από το " @@ -1736,6 +1672,7 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Οι παρακάτω ενημερώσεις θα παρακαμφθούν:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Απομένουν περίπου %li δευτερόλεπτα" @@ -1760,8 +1697,7 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το " -#~ "'Synaptic'." +#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το 'Synaptic'." #~ msgid "Channels" #~ msgstr "Κανάλια" @@ -1814,14 +1750,13 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Μη έγκυρες πληροφορίες πακέτου" #~ msgid "" -#~ "Failed to download the listof changes. Please check your internet " -#~ "connection." +#~ "Failed to download the listof changes. Please check your internet connection." #~ msgstr "" #~ "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας." #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Κατά τον έλεγχο των πληροφοριών του repository δεν βρέθηκαν έγκυρες " #~ "καταχωρίσεις αναβάθμισης.\n" @@ -1852,25 +1787,24 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Το αρχείο '%s' δεν περιέχει έγκυρα κανάλια λογισμικού." #~ msgid "" -#~ "The upgrade is finished now. A reboot is required to now, do you want to " -#~ "do this now?" +#~ "The upgrade is finished now. A reboot is required to now, do you want to do " +#~ "this now?" #~ msgstr "" #~ "Η αναβάθμιση ολοκληρώθηκε. Απαιτείται επανεκκίνηση, θέλετε να γίνει τώρα;" #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για " -#~ "τις ενημερώσεις\n" +#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για τις " +#~ "ενημερώσεις\n" #~ "\n" -#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για " -#~ "ενημερώσεις. Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού " -#~ "\"Σύστημα\" -> \"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." +#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για ενημερώσεις. " +#~ "Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> " +#~ "\"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." #~ msgid "" #~ "Downloading changes\n" @@ -1892,4 +1826,4 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Ubuntu 6.04 \"Dapper Drake\"" #~ msgid "Ubuntu 5.10 \"Breezy Badger\"" -#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" \ No newline at end of file diff --git a/po/en_AU.po b/po/en_AU.po index a4122117..163b19fe 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-11 09:53+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -163,7 +161,6 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -176,7 +173,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -204,7 +200,6 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" @@ -280,7 +275,6 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generate default sources?" @@ -348,7 +342,6 @@ msgstr "" "your Garbage Bin and remove temporary packages of former installations using " "'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" @@ -420,7 +413,6 @@ msgstr "" "A problem occured during the clean-up. Please see the below message for more " "information. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restoring original system state" @@ -431,7 +423,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -487,7 +478,6 @@ msgstr "Searching for obsolete software" msgid "System upgrade is complete." msgstr "System upgrade is complete." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -503,7 +493,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Fetching file %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "About %s remaining" @@ -515,7 +505,6 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -533,64 +522,62 @@ msgstr "" "The upgrade has aborted. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 has " -"aborted.\n" +"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 has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -601,7 +588,7 @@ msgstr "" "\n" "You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -609,33 +596,32 @@ msgstr "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time during the process." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -661,7 +647,6 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -683,7 +668,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -758,6 +742,7 @@ msgid "_Keep" msgstr "_Keep" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Replace" @@ -793,7 +778,6 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your internet connection." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -888,17 +872,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -911,7 +892,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" @@ -933,7 +913,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -968,7 +947,6 @@ msgstr "" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -993,7 +971,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" @@ -1008,23 +985,19 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1123,10 +1096,15 @@ msgid "_Install Updates" msgstr "_Install Updates" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "changes" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "updates" @@ -1361,233 +1339,190 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM with Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM with Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM with Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM with Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1598,22 +1533,22 @@ msgstr "Non-DFSG-compatible Software" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" -#~ "An unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "An unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." @@ -1627,11 +1562,11 @@ msgstr "Non-DFSG-compatible Software" #~ "synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Some software no longer officially supported" @@ -1652,6 +1587,7 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Restoring originale system state" #~ msgstr "Restoring original system state" +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1661,30 +1597,37 @@ msgstr "Non-DFSG-compatible Software" #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "About %li days %li hours %li minutes remaining" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "About %li hours %li minutes remaining" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "About %li minutes remaining" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "About %li seconds remaining" #~ msgid "Download is complete" #~ msgstr "Download is complete" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Downloading file %li of %li at %s/s" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Downloading file %li of %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "The upgrade aborts now. Please report this bug." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1694,41 +1637,41 @@ msgstr "Non-DFSG-compatible Software" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s package is going to be removed." #~ msgstr[1] "%s packages are going to be removed." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s new package is going to be installed." #~ msgstr[1] "%s new packages are going to be installed." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s package is going to be upgraded." #~ msgstr[1] "%s packages are going to be upgraded." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "You have to download a total of %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgid "Could not find any upgrades" #~ msgstr "Could not find any upgrades" @@ -1748,15 +1691,17 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Upgrading Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" #~ "Verifying the upgrade failed. There may be a problem with the network or " #~ "with the server. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Downloading file %li of %li with %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloading file %li of %li with unknown speed" @@ -1775,12 +1720,12 @@ msgstr "Non-DFSG-compatible Software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgid "The following updates will be skipped:" #~ msgstr "The following updates will be skipped:" @@ -1794,12 +1739,12 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Show details" #~ msgstr "Show details" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "New version: %s (Size: %s)" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "Only one software management tool is allowed to run at the same time" +#~ msgstr "Only one software management tool is allowed to run at the same time" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1809,16 +1754,14 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "You must check for updates manually\n" #~ "\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behaviour in \"System\" -> \"Administration\" -> \"Software " -#~ "Properties\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behaviour in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgid "" #~ "Examining your system\n" @@ -1859,16 +1802,16 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "The channel information is out-of-date\n" #~ "\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "\n" #~ "You need a working internet connection to continue." @@ -1880,14 +1823,14 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Components" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1908,19 +1851,19 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" #~ "If automatic checking for updates is disabled, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Stores the state of the expander that contains the list of changes and " -#~ "the description" +#~ "Stores the state of the expander that contains the list of changes and the " +#~ "description" #~ msgid "Configure software channels and internet updates" #~ msgstr "Configure software channels and internet updates" @@ -1938,4 +1881,4 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Ubuntu 6.06 LTS Updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/en_CA.po b/po/en_CA.po index 85c1ba9d..69c1edf6 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:42+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" "MIME-Version: 1.0\n" @@ -56,15 +56,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "_Install" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -165,7 +163,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -180,7 +177,6 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -205,7 +201,6 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -265,7 +260,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -323,7 +317,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -386,7 +379,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -397,7 +389,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -452,7 +443,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -468,7 +458,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -480,7 +470,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -497,60 +486,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -558,40 +545,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -617,7 +603,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -637,7 +622,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -710,6 +694,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Reload" @@ -748,7 +733,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -847,18 +831,15 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -874,7 +855,6 @@ msgstr "Ubuntu 5.04 Updates" msgid "Distribution updates" msgstr "Upgrade finished" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -898,14 +878,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." @@ -930,11 +909,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Version %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -957,7 +935,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -969,23 +946,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1086,10 +1059,15 @@ msgstr "_Install" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Upgrade finished" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1245,8 +1223,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Enter the complete APT line of the repository that you want to add\n" +"Enter the complete APT line of the repository that you want to " +"add\n" "\n" "The APT line contains the type, location and content of a repository, for " "example \"deb http://ftp.debian.org sarge main\". You can find a " @@ -1334,255 +1312,210 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.04 Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Community maintained (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Contributed software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Officially supported" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.04 Updates" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian Stable Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1673,8 +1606,8 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources." -#~ "list is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources.list " +#~ "is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1723,13 +1656,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -1749,16 +1682,16 @@ msgstr "" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1783,11 +1716,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1820,13 +1753,11 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -1835,11 +1766,11 @@ msgstr "" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1849,30 +1780,30 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -1904,10 +1835,10 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." \ No newline at end of file diff --git a/po/en_GB.po b/po/en_GB.po index 7c3c08e1..5faf17e3 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 04:33+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,7 +119,8 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -165,7 +163,6 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -182,7 +179,6 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -210,7 +206,6 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -291,7 +286,6 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generate default sources?" @@ -362,7 +356,6 @@ msgstr "" "your Deleted Items folder and remove temporary packages of former " "installations using 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" @@ -439,7 +432,6 @@ msgstr "" "Some problem occurred during the clean-up. Please see the below message for " "more information. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restoring original system state" @@ -450,7 +442,6 @@ msgid "Fetching backport of '%s'" msgstr "Fetching backport of '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -509,7 +500,6 @@ msgstr "Searching for obsolete software" msgid "System upgrade is complete." msgstr "System upgrade is complete." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -525,7 +515,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Fetching file %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "About %s remaining" @@ -537,7 +527,6 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -555,8 +544,7 @@ msgstr "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -565,7 +553,7 @@ msgstr "" "Replace the customised configuration file\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -573,50 +561,49 @@ msgstr "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d package is going to be removed." msgstr[1] "%d packages are going to be removed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d new package is going to be installed." msgstr[1] "%d new packages are going to be installed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d package is going to be upgraded." msgstr[1] "%d packages are going to be upgraded." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -627,7 +614,7 @@ msgstr "" "\n" "You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -635,17 +622,16 @@ msgstr "" "Fetching and installing the upgrade can take several hours and cannot be " "cancelled at any time later." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -653,17 +639,17 @@ msgstr "" "There are no upgrades available for your system. The upgrade will now be " "cancelled." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -689,7 +675,6 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -712,7 +697,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -787,6 +771,7 @@ msgid "_Keep" msgstr "_Keep" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Replace" @@ -822,7 +807,6 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your Internet connection." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -923,17 +907,14 @@ msgstr "" "Failed to download the list of changes. \n" "Please check your Internet connection." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -946,7 +927,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Distribution updates" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" @@ -968,7 +948,6 @@ msgstr "_Untick All" msgid "_Check All" msgstr "_Tick All" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1003,7 +982,6 @@ msgstr "From version %(old_version)s to %(new_version)s" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1028,7 +1006,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" @@ -1043,23 +1020,19 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1166,10 +1139,15 @@ msgid "_Install Updates" msgstr "_Install Updates" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "changes" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "updates" @@ -1420,229 +1398,185 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom with Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonical supported Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restricted by copyright or legal issues" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom with Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "No longer officially supported" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" @@ -1717,8 +1651,8 @@ msgstr "Non-DFSG-compatible Software" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources." -#~ "list is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources.list " +#~ "is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1775,13 +1709,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1813,11 +1747,11 @@ msgstr "Non-DFSG-compatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1847,13 +1781,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancel downloading the changelog" @@ -1929,8 +1863,7 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr[1] "You have selected all %s updated packages, total size %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "You have selected %s out of %s updated package, size %s" #~ msgstr[1] "You have selected %s out of %s updated packages, total size %s" @@ -1938,11 +1871,11 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1955,19 +1888,19 @@ msgstr "Non-DFSG-compatible Software" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" @@ -1997,10 +1930,8 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." \ No newline at end of file diff --git a/po/eo.po b/po/eo.po index 5bc93b67..07d4b608 100644 --- a/po/eo.po +++ b/po/eo.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-07-24 21:11+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Post unu monato" msgid "After %s days" msgstr "Post %s tagoj" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Eraro dum forigo de sxlosilo" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La sxlosilo elektita ne povis esti forigata. Bonvolu raporti cxi tion kiel " "cimon." @@ -162,7 +160,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -175,7 +172,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -200,7 +196,6 @@ msgstr "" "Estis neebla instalo de bezonata pakajxo. Bonvolu raporti cxi tion kiel " "cimo. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -260,7 +255,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -322,7 +316,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Cxu vi volas komenci la promociadon?" @@ -387,7 +380,6 @@ msgstr "" "Kelkaj problemoj okazis dum la purigado. Bonvolu vidi suban mesagxon por " "pliaj informoj. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -398,7 +390,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -449,7 +440,6 @@ msgstr "Sercxado de ne plu uzata programaro" msgid "System upgrade is complete." msgstr "Sistema promocio estas kompleta." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -465,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -477,7 +467,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikado de sxangxoj" @@ -493,60 +482,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "La komando 'diff' ne estis trovata" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -554,39 +541,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Via sistemo estas gxisdatigita" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -612,7 +598,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -632,7 +617,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,6 +691,7 @@ msgid "_Keep" msgstr "Konservi" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Anstatauxigi" @@ -742,7 +727,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "Bonvolu kontroli vian interretan konekton." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Ne eblis ruli la promocian ilon" @@ -834,17 +818,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -857,7 +838,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -879,7 +859,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -914,7 +893,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -936,7 +914,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nova distribua eldono '%s' estas disponebla" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -948,23 +925,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1061,10 +1034,15 @@ msgid "_Install Updates" msgstr "Instali Gxisdatigojn" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Promocii" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1290,229 +1268,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiale subtenata" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/es.po b/po/es.po index 746fbaa7..4505048c 100644 --- a/po/es.po +++ b/po/es.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 21:00+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" @@ -57,7 +57,6 @@ msgstr "Después de un mes" msgid "After %s days" msgstr "Después de %s días" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,7 +64,6 @@ msgstr "Actualizaciones de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "No se puede quitar la clave que ha seleccionado. Por favor, avise de esto " "como un fallo." @@ -172,7 +170,6 @@ msgstr "No se han podido actualizar los meta-paquetes requeridos" msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" @@ -187,7 +184,6 @@ msgstr "" "Ha ocurrido un problema imposible de corregir cuando se calculaba la " "actualización. Por favor, informe de ésto como un fallo." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" @@ -215,7 +211,6 @@ msgstr "" "No ha sido posible instalar un paquete requerido. Por favor, informe de ésto " "como un fallo. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" @@ -298,7 +293,6 @@ msgstr "" "«Sí», se actualizarán todas las entradas «%s» a «%s».\n" "Si selecciona «No» se cancelará la actualización." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" @@ -339,9 +333,9 @@ msgid "" "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." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -371,7 +365,6 @@ msgstr "" "espacio en disco en %s. Vacíe su papelera, y elimine los paquetes temporales " "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" @@ -450,7 +443,6 @@ msgstr "" "Ha ocurrido algún problema durante el limpiado. por favor, vea el mensaje " "inferior para más información. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" @@ -461,7 +453,6 @@ msgid "Fetching backport of '%s'" msgstr "Descargando «backport» de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -521,7 +512,6 @@ msgstr "Buscando paquetes obsoletos" msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -537,7 +527,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Descargando archivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Faltan alrededor de %s" @@ -549,7 +539,6 @@ msgstr "Descargando archivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando los cambios" @@ -568,8 +557,7 @@ msgstr "" "fallo en el paquete «update-manager» e incluya en el informe de error los " "archivos contenidos en /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -578,7 +566,7 @@ msgstr "" "¿Desea sustituir el archivo de configuración modificado\n" "«%s»?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -586,51 +574,50 @@ msgstr "" "Perderá todos los cambios que haya realizado en este archivo de " "configuración si decide sustituirlo por una nueva versión." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "No se ha encontrado el comando «diff»" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ha ocurrido un error fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 " +"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." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Se va a desinstalar %d paquete." msgstr[1] "Se van a desinstalar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Se va a instalar %d paquete nuevo." msgstr[1] "Se van a instalar %d paquetes nuevos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Se va a actualizar %d paquete." msgstr[1] "Se van a actualizar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -641,7 +628,7 @@ msgstr "" "\n" "Debe descargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -649,19 +636,18 @@ msgstr "" "Descargar e instalar la actualización puede llevar varias horas, y no se " "podrá cancelar después en ningún momento." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -669,17 +655,17 @@ msgstr "" "No hay actualizaciones disponibles para su sistema. Se ha cancelado la " "actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -705,7 +691,6 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -729,7 +714,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -749,7 +733,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicie el sistema para completar la actualización" +msgstr "" +"Reinicie el sistema para completar la actualización" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -804,6 +789,7 @@ msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Sustituir" @@ -839,7 +825,6 @@ msgstr "No se han podido descargar las notas de publicación" msgid "Please check your internet connection." msgstr "Por favor, compruebe su conexión a Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No se ha podido ejecutar la herramienta de actualización" @@ -945,17 +930,14 @@ msgstr "" "Hubo un fallo al descargar la lista de cambios. \n" "Por favor, compruebe su conexión a Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizaciones importantes de seguridad" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizaciones recomendadas" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizaciones propuestas" @@ -968,7 +950,6 @@ msgstr "«Backports»" msgid "Distribution updates" msgstr "Actualizaciones de la distribución" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Otras actualizaciones" @@ -990,7 +971,6 @@ msgstr "_Desmarcar todo" msgid "_Check All" msgstr "_Marcar todo" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1025,7 +1005,6 @@ msgstr "De la versión %(old_version)s a la %(new_version)s" msgid "Version %s" msgstr "Versión %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1042,15 +1021,14 @@ msgid "" "information on upgrading." msgstr "" "No podrá obtener nuevas correcciones de seguridad ni actualizaciones " -"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" -"www.ubuntu.com para más información sobre la actualización." +"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite " +"http://www.ubuntu.com para más información sobre la actualización." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "El índice de software está dañado" @@ -1065,23 +1043,19 @@ msgstr "" "gestor de paquetes «Synaptic», o ejecute «sudo apt-get install -f» en una " "terminal, para corregir este problema primero." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ninguno" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1106,7 +1080,8 @@ msgstr "Mantenga su sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "No se han podido instalar todas las actualizaciones" +msgstr "" +"No se han podido instalar todas las actualizaciones" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1190,10 +1165,15 @@ msgid "_Install Updates" msgstr "_Instalar actualizaciones" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "A_ctualizar" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "cambios" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "actualizaciones" @@ -1229,8 +1209,8 @@ msgstr "" "enviará de forma anónima al proyecto Ubuntu todas las semanas.\n" "\n" "Los resultados se usarán para mejorar el soporte de las aplicaciones " -"populares y para ordenar las aplicaciones en los resultados de las búsquedas." -"" +"populares y para ordenar las aplicaciones en los resultados de las " +"búsquedas." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1318,8 +1298,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"La información acerca del software disponible está obsoleta\n" +"La información acerca del software disponible está " +"obsoleta\n" "\n" "Para poder instalar software y actualizaciones a partir de los orígenes que " "se hayan añadido o cambiado recientemente, es necesario recargar la " @@ -1448,229 +1428,185 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura los orígenes para el software instalable y las actualizaciones" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenido por la comunidad" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores privativos para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restringido" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software libre soportado por Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenido por la comunidad (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software libre mantenido por la comunidad" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores no libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores privativos para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restringido (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright o cuestiones legales" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Dapper Drake»" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizaciones «backport»" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizaciones de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "«Backports» de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizaciones de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "«Backports» de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenido por la comunidad (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software no libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sin más soporte oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restringido" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Actualizaciones de seguridad" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizaciones de Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "«Backports» de Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizaciones de seguridad de Debian 3.1 «Sarge»" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (pruebas)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (inestable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible con la DFSG con dependencias no libres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" @@ -1678,6 +1614,7 @@ msgstr "Software no compatible con la DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software restringido por copyright o cuestiones legales" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando archivo %li de %li a velocidad desconocida" @@ -1726,17 +1663,18 @@ msgstr "Software no compatible con la DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice " -#~ "la función «Marcar todas las actualizaciones» del gestor de paquetes " +#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice la " +#~ "función «Marcar todas las actualizaciones» del gestor de paquetes " #~ "«Synaptic», o ejecute «sudo apt-get dist-upgrade» en una terminal, para " #~ "actualizar completamente su sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "Se pasarán por alto las siguientes actualizaciones:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" @@ -1759,14 +1697,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Sólo se permite la ejecución simultánea de una única herramienta de " -#~ "gestión de software" +#~ "Sólo se permite la ejecución simultánea de una única herramienta de gestión " +#~ "de software" #~ 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 "Channels" #~ msgstr "Canales" @@ -1816,8 +1753,8 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "«Backports» de Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Cuando se exploraba la información de su repositorio, se encontró una " #~ "entrada no válida para la actualización.\n" @@ -1846,8 +1783,7 @@ msgstr "Software no compatible con la DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Descargando informe de cambios\n" +#~ "Descargando informe de cambios\n" #~ "\n" #~ "Se necesita descargar los cambios del servidor central" @@ -1879,13 +1815,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes " -#~ "actualizables. Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " +#~ "Puede actualizarlos usando el botón Instalar." #~ msgid "Repository" #~ msgstr "Repositorio" @@ -1905,20 +1841,19 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "" #~ "Claves de autenticación\n" #~ "\n" -#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una " -#~ "clave hace posible verificar la integridad del software que descarga." +#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una clave " +#~ "hace posible verificar la integridad del software que descarga." #~ msgid "A_uthentication" #~ msgstr "A_utenticación" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Añadir un nuevo archivo de clave al anillo de confianza. Asegúrese de que " -#~ "obtuvo la clave a través de un canal seguro y que confía en el " -#~ "propietario. " +#~ "obtuvo la clave a través de un canal seguro y que confía en el propietario. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Limpiar _temporalmente los archivos de paquetes" @@ -1940,8 +1875,8 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Recupera las claves entregadas originalmente con la distribución. Esto no " #~ "cambia las claves instaladas por el usuario." @@ -1969,8 +1904,8 @@ msgstr "Software no compatible con la DFSG" #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" #~ "Ésto significa que no se satisfacen algunas dependencias de los paquetes " -#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-" -#~ "get dist-upgrade\" para arreglar la situación." +#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-get " +#~ "dist-upgrade\" para arreglar la situación." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "No es posible actualizar todos los paquetes." @@ -1978,13 +1913,12 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Ésto significa que además de la actualización de los paquetes será " -#~ "necesaria alguna acción adicional (como instalar o quitar paquetes). " -#~ "Utilice la \"Actualización inteligente\" de synaptic o \"apt-get dist-" -#~ "upgrade\" para arreglar la situación." +#~ "Ésto significa que además de la actualización de los paquetes será necesaria " +#~ "alguna acción adicional (como instalar o quitar paquetes). Utilice la " +#~ "\"Actualización inteligente\" de synaptic o \"apt-get dist-upgrade\" para " +#~ "arreglar la situación." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -1995,11 +1929,11 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "Se están aplicando las actualizaciones." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " -#~ "tiempo. Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " +#~ "Cierre la otra aplicación primero." #~ msgid "Updating package list..." #~ msgstr "Actualizando lista de paquetes..." @@ -2009,34 +1943,35 @@ msgstr "Software no compatible con la DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está " -#~ "usando no obtendrá más actualizaciones de seguridad ni otras " -#~ "actualizaciones críticas. Visite http://www.ubuntulinux.org para " -#~ "información acerca de cómo actualizar." +#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está usando " +#~ "no obtendrá más actualizaciones de seguridad ni otras actualizaciones " +#~ "críticas. Visite http://www.ubuntulinux.org para información acerca de cómo " +#~ "actualizar." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Hay una nueva versión de Ubuntu disponible" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Está disponible una nueva versión con el nombre '%s'. Visite http://www." -#~ "ubuntulinux.org/ para recibir instrucciones acerca de cómo actualizar." +#~ "Está disponible una nueva versión con el nombre '%s'. Visite " +#~ "http://www.ubuntulinux.org/ para recibir instrucciones acerca de cómo " +#~ "actualizar." #~ msgid "Never show this message again" #~ msgstr "No mostrar más este mensaje" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " -#~ "tiempo. Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " +#~ "Cierre la otra aplicación primero." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicializando y obteniendo lista de actualizaciones..." @@ -2071,10 +2006,10 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes " -#~ "actualizables. Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " +#~ "Puede actualizarlos usando el botón Instalar." \ No newline at end of file diff --git a/po/et.po b/po/et.po index 3feaf17f..b7acdb10 100644 --- a/po/et.po +++ b/po/et.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-10 17:42+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Peale ühte kuud" msgid "After %s days" msgstr "Peale %s päeva" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Võtme eemaldamisel tekkis viga" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Valitud võtit pole võimalik eemaldada" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -152,8 +150,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sinu süsteem sisaldab katkiseid pakette mida pole võimalik antud tarkvaraga " -"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" -"\" enne jätkamist." +"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-" +"get\" enne jätkamist." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -163,7 +161,6 @@ msgstr "Ei suuda uuendada nõutud metapakette" msgid "A essential package would have to be removed" msgstr "Hädavajalik pakett tuleks eemaldada" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ei suuda uuendusi ette valmistada" @@ -176,7 +173,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Mõnede pakettide tuvastamisel tekkis viga." @@ -202,7 +198,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -262,7 +257,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -321,7 +315,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -384,7 +377,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -395,7 +387,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -446,7 +437,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -462,7 +452,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -474,7 +464,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -490,60 +479,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -551,39 +538,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,7 +595,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -629,11 +614,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -700,6 +684,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -735,7 +720,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -825,17 +809,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -848,7 +829,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -870,7 +850,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -905,7 +884,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -927,7 +905,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -939,23 +916,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1052,10 +1025,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1277,229 +1254,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/eu.po b/po/eu.po index 0a434468..9d5bbe5f 100644 --- a/po/eu.po +++ b/po/eu.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-08 23:53+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" @@ -57,7 +57,6 @@ msgstr "HIlabete bat eta gero" msgid "After %s days" msgstr "%s egun eta gero" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,7 +64,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,7 +117,8 @@ msgstr "Errore bat suertatu da aukeratutako fitxategiak inportatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." +msgstr "" +"Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." #: ../SoftwareProperties/SoftwareProperties.py:992 #, fuzzy @@ -129,7 +127,8 @@ msgstr "Errorea giltza ezabatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Aukeratutako giltza ezin izan da ezabatu. Mesedez adierazi akatsa." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -174,7 +173,6 @@ msgstr "Ezin izan dira berritu beharrezko meta-paketeak" msgid "A essential package would have to be removed" msgstr "Ezinbesteko pakete bat ezabatu beharko da" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -187,7 +185,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -212,7 +209,6 @@ msgstr "" "Ezin izan da beharrezko pakete bat instalatzea. Mesedez akats honen berri " "eman. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -272,7 +268,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -329,7 +324,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -392,7 +386,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -403,7 +396,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -454,7 +446,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -470,7 +461,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -482,7 +473,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -498,60 +488,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -559,39 +547,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -617,7 +604,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -637,11 +623,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -708,6 +693,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -743,7 +729,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -833,17 +818,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -856,7 +838,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -878,7 +859,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -913,7 +893,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -935,7 +914,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -947,23 +925,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1060,10 +1034,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1285,229 +1263,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/fa.po b/po/fa.po index 838bf5ef..6d8f353d 100644 --- a/po/fa.po +++ b/po/fa.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-08 13:47+0000\n" -"Last-Translator: Pedram Ganjeh Hadidi \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:49+0000\n" +"Last-Translator: Pedram Ganjeh Hadidi \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,6 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,7 +159,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +171,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +193,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +252,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,7 +308,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -377,7 +370,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -388,7 +380,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -439,7 +430,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +445,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +457,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,57 +472,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -541,39 +528,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -599,7 +585,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -619,11 +604,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -690,6 +674,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -725,7 +710,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -815,17 +799,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -838,7 +819,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -860,7 +840,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -894,7 +873,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -916,7 +894,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -928,23 +905,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1041,10 +1014,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1266,229 +1243,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/fi.po b/po/fi.po index 7e1cb3cc..a79069bc 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 07:42+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Kuukauden jälkeen" msgid "After %s days" msgstr "%s päivän jälkeen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" -msgstr "%s päivitystä" +msgstr "%s-päivitykset" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pääpalvelin" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." @@ -168,7 +166,6 @@ msgstr "Tarvittavia metapaketteja ei voi päivittää" msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" @@ -186,7 +183,6 @@ msgstr "" "Ilmoita tästä ohjelmavirheestä paketille \"update-manager\" ja sisällytä " "tiedostot hakemistosta /var/log/dist-upgrade raporttiin." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Joitain paketteja varmennettaessa tapahtui virhe" @@ -213,7 +209,6 @@ msgid "" msgstr "" "Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" @@ -294,7 +289,6 @@ msgstr "" "\"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Lisätäänkö oletusohjelmalähteet?" @@ -365,7 +359,6 @@ msgstr "" "roskakori ja poista väliaikaistiedostot aiemmista asennuksista käyttämällä " "komentoa 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaa päivityksen?" @@ -442,7 +435,6 @@ msgid "" msgstr "" "Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" @@ -453,7 +445,6 @@ msgid "Fetching backport of '%s'" msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -512,7 +503,6 @@ msgstr "Etsitään vanhentuneita ohjelmistoja" msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -528,7 +518,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Noin %s jäljellä" @@ -540,7 +530,6 @@ msgstr "Noudetaan tiedostoa %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Muutoksia toteutetaan" @@ -558,8 +547,7 @@ msgstr "" "Päivitys keskeytyy. Tee tästä virheraportti paketille \"update-manager\" ja " "sisällytä raporttiin tiedostot hakemistosta /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -568,7 +556,7 @@ msgstr "" "Korvataanko alkuperäisestä muutettu asetustiedosto\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -576,50 +564,49 @@ msgstr "" "Tähän asetustiedostoon tehdyt muutokset menetetään, jos se korvataan " "uudemmalla versiolla." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Tapahtui vakava virhe" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot /var/log/dist-" "upgrade/main.log ja /var/log/dist-upgrade/apt.log. Päivitys keskeytyy nyt.\n" -"Alkuperäinen sources.list tallennettiin nimellä /etc/apt/sources.list." -"distUpgrade." +"Alkuperäinen sources.list tallennettiin nimellä " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paketti poistetaan." msgstr[1] "%d pakettia poistetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d uusi paketti asennetaan." msgstr[1] "%d uutta pakettia asennetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paketti päivitetään." msgstr[1] "%d pakettia päivitetään." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -630,7 +617,7 @@ msgstr "" "\n" "Noudettavaa yhteensä %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -638,34 +625,33 @@ msgstr "" "Päivityksen noutaminen ja asennus voi kestää useita tunteja, eikä sitä voi " "keskeyttää enää myöhemmin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Päivityksiä ei ole saatavilla järjestelmälle. Päivitys keskeytyy." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Poista %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Asenna %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" @@ -691,13 +677,13 @@ msgid "%li seconds" msgstr "%li sekuntia" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" -msgstr "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" +msgstr "" +"Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -712,7 +698,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,8 +718,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun" +"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen " +"loppuun" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -789,6 +774,7 @@ msgid "_Keep" msgstr "_Pidä" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Korvaa" @@ -824,7 +810,6 @@ msgstr "Ei voitu noutaa julkaisutietoja" msgid "Please check your internet connection." msgstr "Tarkista Internet-yhteytesi toimivuus." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Päivitystyökalua ei voitu suorittaa" @@ -927,17 +912,14 @@ msgstr "" "Muutosluettelon nouto epäonnistui. \n" "Tarkista Internet-yhteytesi toimivuus." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Tärkeät turvallisuuspäivitykset" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Suositellut päivitykset" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Ehdotetut päivitykset" @@ -950,7 +932,6 @@ msgstr "Takaisinsovitukset" msgid "Distribution updates" msgstr "Jakelupäivitykset" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Muut päivitykset" @@ -972,7 +953,6 @@ msgstr "Poista _valinnat" msgid "_Check All" msgstr "_Tarkista kaikki" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1007,7 +987,6 @@ msgstr "Versiosta %(old_version)s versioon %(new_version)s" msgid "Version %s" msgstr "Versio %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1032,7 +1011,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" @@ -1047,23 +1025,19 @@ msgstr "" "Synaptic-pakettienhallintaa tai komentoa \"sudo apt-get install -f\" " "päätteessä." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ei mitään" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1088,8 +1062,8 @@ msgstr "Pidä järjestelmäsi ajan tasalla" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Kaikkia päivityksiä ei voi asentaa\r\n" -"\r\n" +"Kaikkia päivityksiä ei voi asentaa \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1174,10 +1148,14 @@ msgid "_Install Updates" msgstr "_Asenna päivitykset" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "_Päivitä" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "muutokset" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "päivitykset" @@ -1337,8 +1315,8 @@ msgid "" msgstr "" "Kirjoita haluamasi ohjelmalähteen koko APT-rivi\n" "\n" -"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " -"\"deb http://ftp.debian.org sarge main\"." +"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1425,230 +1403,186 @@ msgstr "Ikkunan koko" msgid "Configure the sources for installable software and updates" msgstr "Muokkaa asennettavien ohjelmien ja päivitysten lähteitä" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yhteisön ylläpitämät" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Suljetut laiteajurit" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Rajoitetut ohjelmistot" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmat" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Yhteisön ylläpitämät avoimen lähdekoodin ohjelmistot" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ei-vapaat ajurit" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Suljetut laiteajurit " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Rajoitetut ohjelmat (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Tekijänoikeus- tai lakiasioilla rajoitetut ohjelmistot" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Takaisinsovitetut päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Virallisesti tuettu" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 takaisinsovitukset" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\" -CD-levy" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ei enää virallisesti tuettu" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Rajoitettu tekijänoikeus" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 takaisinsovitukset" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" turvallisuuspäivitykset" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testattava)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (epävakaa)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "DFSG-yhteensopivat ohjelmat joilla riippuvuuksia epävapaisiin ohjelmiin" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" @@ -1656,6 +1590,7 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Tekijänoikeus- tai lakiasioilla käyttörajoitetut ohjelmistot" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" @@ -1677,8 +1612,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Päivitetään jakeluun Ubuntu 6.10" +#~ "Päivitetään jakeluun Ubuntu " +#~ "6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Ubuntun tärkeät turvallisuuspäivitykset" @@ -1697,16 +1632,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Tarkistetaan järjestelmää\n" #~ "\n" -#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat " -#~ "uusia ominaisuuksia." +#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " +#~ "ominaisuuksia." #~ msgid "Oficially supported" #~ msgstr "Virallisesti tuettu" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Jotkut päivitykset vaativat muiden ohjelmien poistoa. Käytä \"Merkitse " #~ "kaikki päivitykset\"-toimintoa Synaptic-pakettienhallintaojhelmassa, tai " @@ -1715,6 +1650,7 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "The following updates will be skipped:" #~ msgstr "Seuraavat päivitykset ohitetaan:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Noin %li sekuntia jäljellä" @@ -1794,8 +1730,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ubuntu 6.06 LTS takaisinsovitukset" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Luettaessa varastotietoja ei löydetty kelvollisia ohjelmavarastoja " #~ "päivittämistä varten.\n" @@ -1837,12 +1773,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia." #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Sinun pitää ladata päivitystiedot uudelleen käsin\n" #~ "\n" @@ -1891,20 +1826,19 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Kirjoita haluamasi varaston koko APT-rivi\n" #~ "\n" -#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " -#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " +#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " +#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " #~ "dokumentaatiosta." #~ msgid "A_uthentication" #~ msgstr "Varmenn_us" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " -#~ "vastaanotit avaimen luotettavaa kanavaa pitkin, ja että luotat sen " -#~ "omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " +#~ "avaimen luotettavaa kanavaa pitkin, ja että luotat sen omistajaan. " #~ msgid "Automatically check for software _updates." #~ msgstr "Tarkista ohjelma_päivitykset automaattisesti." @@ -1928,8 +1862,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Maksimikoko megatavuissa:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Palauta jakelun mukana toimitetut oletusavaimet. Tämä ei muuta tai poista " #~ "itse asennettuja avaimia." @@ -1958,8 +1892,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -1972,17 +1906,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. " -#~ "If you are behind an internet connection that needs to be started by hand " -#~ "(e.g. a modem) you should use this button so that update-manager knows " -#~ "about new updates." +#~ "If you have a permanent internet connection this is done automatically. If " +#~ "you are behind an internet connection that needs to be started by hand (e.g. " +#~ "a modem) you should use this button so that update-manager knows about new " +#~ "updates." #~ msgstr "" #~ "Lataa pakettitiedot palvelimelta uudelleen. \n" #~ "\n" #~ "Jos sinulla on kiinteä Internet-yhteys, tämä tehdään automaattisesti. Jos " #~ "olet käsin muodostettavan Internet-yhteyden (esim. modeemi) takana, sinun " -#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon " -#~ "uusista päivityksistä." +#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon uusista " +#~ "päivityksistä." #~ msgid "Binary" #~ msgstr "Binääri" @@ -2008,8 +1942,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. " -#~ "Käytä \"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." +#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. Käytä " +#~ "\"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Kaikkia paketteja ei voida päivittää." @@ -2017,13 +1951,12 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita " -#~ "toimenpiteitä (kuten pakettien asentamista tai poistamista). Käytä " -#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade" -#~ "\"-komentoa korjataksesi ongelman." +#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita toimenpiteitä " +#~ "(kuten pakettien asentamista tai poistamista). Käytä Synaptic-ohjelman " +#~ "\"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade\"-komentoa " +#~ "korjataksesi ongelman." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Muutoksia ei löytynyt, palvelinta ei ole ehkä vielä päivitetty." @@ -2032,8 +1965,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Päivityksiä asennetaan." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Voit hallita paketteja vain yhdellä ohjelmalla kerrallaan. Sulje toinen " #~ "ohjelma ensin." @@ -2046,20 +1979,19 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei " -#~ "enää ole tulossa turvallisuuspäivityksiä tai muita kriittisiä " -#~ "päivityksiä. Tietoja päivittämisestä löydät sivulta http://www." -#~ "ubuntulinux.org." +#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei enää " +#~ "ole tulossa turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " +#~ "Tietoja päivittämisestä löydät sivulta http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntusta on uusi julkaisu saatavilla!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Uusi julkaisu nimeltään '%s' on saatavilla. Päivitysohjeet löydät " #~ "osoitteesta http://www.ubuntulinux.org/." @@ -2071,11 +2003,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ei saatu haluttua lukitusta" #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-" -#~ "get tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." +#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get " +#~ "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Alustetaan ja ladataan luetteloa päivityksistä..." @@ -2101,16 +2033,15 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " -#~ "vastaanotit avaimen luotettua kanavaa pitkin ja että luotat avaimen " -#~ "omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " +#~ "avaimen luotettua kanavaa pitkin ja että luotat avaimen omistajaan. " #~ msgid "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia " -#~ "käyttäjän asentamiin avaimiin." +#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia käyttäjän " +#~ "asentamiin avaimiin." #~ msgid "Ubuntu Update Manager" #~ msgstr "Ubuntun päivitysten hallinta" @@ -2118,8 +2049,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -2127,4 +2058,4 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Asenna-painiketta." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/fr.po b/po/fr.po index d6a281bd..3edae48d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 17:26+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Après un mois" msgid "After %s days" msgstr "Après %s jours" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "Mises à jour %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serveur principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +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." @@ -170,7 +168,6 @@ 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é" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" @@ -187,7 +184,6 @@ msgstr "" "Merci de rapporter ce bogue du paquet « update-manager » et d'inclure les " "fichiers de /var/log/dist-upgrade/ dans le rapport de bogue." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" @@ -215,7 +211,6 @@ msgstr "" "Il a été impossible d'installer un paquet pourtant requis. Merci de " "rapporter ce bogue. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" @@ -299,7 +294,6 @@ msgstr "" "cela mettra à jour toutes les entrées « %s » vers « %s ».\n" "Sinon, la mise à jour sera annulée." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" @@ -368,11 +362,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"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 »." +"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 »." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" @@ -451,7 +444,6 @@ msgstr "" "Un problème est survenu lors du nettoyage. Veuillez vous reporter au message " "ci-dessous pour plus d'informations. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" @@ -462,7 +454,6 @@ msgid "Fetching backport of '%s'" msgstr "Recherche du backport (rétro-portage) de « %s »" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -521,7 +512,6 @@ msgstr "Recherche de logiciels obsolètes" msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -537,7 +527,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Téléchargement du fichier %li sur %li en cours à %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Environ %s restantes" @@ -549,7 +539,6 @@ msgstr "Téléchargement du fichier %li sur %li en cours" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Application des changements" @@ -565,11 +554,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "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." +"un bogue du paquet « update-manager » et joindre les fichiers du répertoire " +"/var/log/dist-upgrade/ dans le rapport de bogue." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -578,7 +566,7 @@ msgstr "" "Remplacer le fichier de configuration personnalisé\n" "« %s » ?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -586,51 +574,50 @@ 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pu être trouvée" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Une erreur fatale est survenue" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez signaler ce bogue et joindre les fichiers /var/log/dist-upgrade.log " "et /var/log/dist-upgrade/apt.log à votre rapport. La mise à jour est " "annulée.\n" -"Votre fichier sources.list d'origine a été enregistré dans /etc/apt/sources." -"list.distUpgrade." +"Votre fichier sources.list d'origine a été enregistré dans " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -641,7 +628,7 @@ msgstr "" "\n" "Vous avez à télécharger un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -649,19 +636,18 @@ 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 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." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Votre système est à jour" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -669,17 +655,17 @@ msgstr "" "Il n'y a pas de mises à niveau disponibles pour votre système. La mise à " "niveau va maintenant être annulée." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Supprimer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Mettre à jour %s" @@ -705,7 +691,6 @@ msgid "%li seconds" msgstr "%li secondes" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -729,7 +714,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -805,6 +789,7 @@ msgid "_Keep" msgstr "_Conserver" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Remplacer" @@ -840,7 +825,6 @@ msgstr "Impossible de télécharger les informations de version" msgid "Please check your internet connection." msgstr "Veuillez vérifier votre connexion Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible de lancer l'outil de mise à jour" @@ -944,17 +928,14 @@ msgstr "" "Échec lors du téléchargement de la liste des modifications. \n" "Veuillez vérifier votre connexion Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Mises à jour de sécurité" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Mises à jour recommandées" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Mises à jour suggérées" @@ -967,7 +948,6 @@ msgstr "« Backports »" msgid "Distribution updates" msgstr "Mises à jour de la distribution" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Autres mises à jour" @@ -989,7 +969,6 @@ msgstr "_Tout décocher" msgid "_Check All" msgstr "Tout _vérifier" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1024,7 +1003,6 @@ msgstr "De la version %(old_version)s vers la version %(new_version)s" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1049,7 +1027,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" @@ -1064,23 +1041,19 @@ msgstr "" "utiliser d'abord le « Gestionnaire de paquets Synaptic » ou lancez « sudo " "apt-get install -f » dans un terminal pour réparer ce problème." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Aucun(e)" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Ko" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Ko" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1093,8 +1066,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Vous devez vérifier manuellement la disponibilité de mises à jour\n" +"Vous devez vérifier manuellement la disponibilité de mises à " +"jour\n" "\n" "Votre système ne vérifie pas les mises à jour automatiquement. Vous pouvez " "configurer ce comportement dans Sources logicielles qui se trouve " @@ -1190,10 +1163,15 @@ msgid "_Install Updates" msgstr "_Installer les mises à jour" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Mettre à _jour" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "changements" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "mises à jour" @@ -1321,8 +1299,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Les informations sur les logiciels disponibles sont obsolètes\n" +"Les informations sur les logiciels disponibles sont " +"obsolètes\n" "\n" "Pour installer de nouveaux logiciels ou des mises à jour à partir des canaux " "logiciels modifiés ou nouvellement ajoutés, vous devez recharger ces " @@ -1452,231 +1430,187 @@ msgstr "" "Configurer les canaux logiciels (sources de mise à jour) et les mises à jour " "via Internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Maintenu par la communauté" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Pilotes propriétaires de périphériques" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Logiciel non libre" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM contenant Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Logiciel libre supporté par Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Maintenu par la communauté (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Logiciel libre maintenu par la communauté" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pilotes non libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Pilotes propriétaires de périphériques " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Logiciel non libre (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Logiciel soumis au droit d'auteur ou à des restrictions légales" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM contenant Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Mises à jour backportées" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM contenant Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM contenant Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supporté officiellement" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Mises à jour pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "« Backports » pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Maintenu par la communauté (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM contenant Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Support officiel terminé" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restreint" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Mises à jour pour Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "« Backports » pour Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mises à jour de sécurité pour Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 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" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" @@ -1684,6 +1618,7 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Logiciel restreint pour des raisons légales ou de copyright" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" @@ -1732,18 +1667,18 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ 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." +#~ "\"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 :" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Environ %li secondes restantes" @@ -1819,11 +1754,11 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgstr "« Backports » pour Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "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" +#~ "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" @@ -1832,8 +1767,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "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 ?" +#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que vos " +#~ "changements soient effectifs. Voulez-vous le faire maintenant ?" #~ msgid "Sections" #~ msgstr "Catégories :" @@ -1850,8 +1785,7 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Téléchargement des changements\n" +#~ "Téléchargement des changements\n" #~ "\n" #~ "Il est nécessaire de récupérer les changement du serveur central" @@ -1883,13 +1817,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " -#~ "jour en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " +#~ "en utilisant le bouton Installer." #~ msgid "Repository" #~ msgstr "Dépôt" @@ -1910,20 +1844,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "Clés d'authentification\n" #~ "\n" #~ "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." +#~ "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" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "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. " +#~ "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" @@ -1945,8 +1879,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ 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." @@ -1983,25 +1917,23 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ 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." +#~ "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." #~ 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." +#~ "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." +#~ "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." @@ -2014,20 +1946,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Veuillez mettre à jour vers une version plus récente d'Ubuntu Linux. La " -#~ "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." +#~ "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." +#~ "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." @@ -2037,8 +1969,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. " #~ "Veuillez tout d'abord fermer cette autre application." @@ -2075,13 +2007,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " -#~ "jour en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " +#~ "en utilisant le bouton Installer." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/fur.po b/po/fur.po index e06a067b..a4be5116 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -55,7 +55,6 @@ msgstr "Dopo un mèis" msgid "After %s days" msgstr "Dopo %s dîs" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -313,7 +307,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -376,7 +369,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -387,7 +379,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -438,7 +429,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -466,7 +456,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -482,60 +471,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +530,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,7 +587,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -621,7 +606,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -692,6 +676,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -727,7 +712,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -817,17 +801,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -840,7 +821,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -862,7 +842,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -897,7 +876,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,7 +897,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -931,23 +908,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1044,10 +1017,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1269,229 +1246,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/gl.po b/po/gl.po index 8c3220fb..ecf91bf0 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-25 21:24+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Xosé \n" "Language-Team: galician\n" "MIME-Version: 1.0\n" @@ -57,7 +57,6 @@ msgstr "Logo dun mes" msgid "After %s days" msgstr "Logo de %s días" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,7 +64,6 @@ msgstr "actualizacións de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgid "Error removing the key" msgstr "Houbo un erro ao borrar a clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Non se pode borrar a clave que seleccionou. Por favor, avise disto como un " "fallo." @@ -172,7 +170,6 @@ msgstr "Non se puideron actualizar os meta-paquetes necesarios" msgid "A essential package would have to be removed" msgstr "Tívose que desinstalar un paquete esencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Non se puido calcular a actualización" @@ -189,7 +186,6 @@ msgstr "" "Informa deste erro do pacote \"update-manager\" e inclúe os ficheiros que " "hai en /var/log/dist-upgrade/ no informe." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando algúns paquetes" @@ -217,7 +213,6 @@ msgstr "" "Non foi posible instalar un paquete necesario. Por favor, informe disto como " "un fallo. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Non se puido determinar o meta-paquete" @@ -299,7 +294,6 @@ msgstr "" "selecciona «Si», actualizaranse todas as entradas '%s' a '%s'.\n" "Se selecciona «Non» cancelarase a actualización." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Xerar orixes predeterminadas?" @@ -312,8 +306,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tras examinar o seu «sources.list», non se atoparon entradas válidas para '%" -"s'.\n" +"Tras examinar o seu «sources.list», non se atoparon entradas válidas para " +"'%s'.\n" "\n" "Deben engadirse entradas predeterminadas para '%s'? Se selecciona «Non» " "cancelarse a actualización." @@ -372,7 +366,6 @@ msgstr "" "espazo en disco en %s. Vacíe a súa papelera, e elimine os paquetes temporais " "de instalacións anteriores tecleando «sudo apt-get clean» nun terminal." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Desexa comezar a actualización?" @@ -392,8 +385,8 @@ msgstr "" "Vaise cancelar a actualización agora. O teu sistema podería ficar nun estado " "que non permita ser usado. Procedeuse a recuperalo (dpkg --configure -a).\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ no informe." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -419,6 +412,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. non forece máis axuda para os pacotes de software seguintes. " +"Pode que ainda podas obter axuda da comunidade.\n" +"\n" +"Se non tes activado o software mantido pola comunidade (universe), " +"suxerirase que elimines estes pacotes no paso seguinte." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -444,7 +442,6 @@ msgstr "" "Ocorreu algún problema durante o limpado. Por favor, vexa a mensaxe inferior " "para máis información. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A retornar ao estado orixinal do sistema" @@ -452,10 +449,9 @@ msgstr "A retornar ao estado orixinal do sistema" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "A procurar backports de \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -463,7 +459,7 @@ msgstr "Comprobando xestor de paquetes" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Fallou a preparación da actualización" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -471,6 +467,9 @@ msgid "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Fallou a preparación do sistema para a actualización. Informa deste erro do " +"pacote \"update-manager\" e inclúe os ficheiros de /var/log/dist-upgrade/ no " +"informe." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -493,8 +492,8 @@ msgstr "" "esencial, xa non se dá atopado.\n" "Isto indica un erro serio.\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ no informe." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -512,7 +511,6 @@ msgstr "Buscando paquetes obsoletos" msgid "System upgrade is complete." msgstr "Comletouse a actualización do sistema." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -528,7 +526,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "A baixar o ficheiro %li de %li en %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Falta aproximadamente %s" @@ -540,7 +538,6 @@ msgstr "A baixar o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando os cambios" @@ -558,8 +555,7 @@ msgstr "" "Vaise cancelar a actualización agora. Informa desde fallo do pacote \"update-" "manager\" e inclúe os ficheiros en /var/log/dist-upgrade/ no informe." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -568,57 +564,58 @@ msgstr "" "Substituir o ficheiro de configuración personalizado\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Perderás as modificacións feitas neste ficheiro de configuración se escolles " +"substituílo por unha versión máis nova." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Non se atopou o comando 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ocorreu un erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " "Vaise cancelar a actualización agora.\n" -"O teu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." -"distUpgrade." +"O teu ficheiro sources.list orixinal gardouse en " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Vaise eliminar o pacote %d" msgstr[1] "Vanse eliminar os pacotes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Vaise instalar o pacote novo %d" msgstr[1] "Vanse instalar os pacotes novos %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Vaise actualizar o pacote %d" msgstr[1] "Vanse actualizar os pacotes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -629,7 +626,7 @@ msgstr "" "\n" "Baixache un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -637,17 +634,17 @@ msgstr "" "Descarregar e instalar a actualización pode levar varias horas e non se pode " "cancelar posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "Para previr a perda de datos peche todas as aplicacións e documentos." +msgstr "" +"Para previr a perda de datos peche todas as aplicacións e documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -655,17 +652,17 @@ msgstr "" "Non hai actualizacións disponíbeis par o teu sistema. Cancelamos a " "actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -691,13 +688,14 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Esta descarga levará uns %s cunha conexión DSL de 1MB e uns %s cun módem de " +"56k." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -712,7 +710,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -776,17 +773,18 @@ msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Cancelar a Actualización" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "-Continuar" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Substituír" @@ -804,7 +802,7 @@ msgstr "_Continuar actualización" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Iniciar a Actualización" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -822,7 +820,6 @@ msgstr "Non se puideron descargar as notas da versión" msgid "Please check your internet connection." msgstr "Por favor, comprobe a súa conexión a Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Non se puido executar a ferramenta de actualización" @@ -857,7 +854,8 @@ msgstr "Erro ao descargar" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Fallou a descarga da actualización. Pode haber un problema coa rede. " +msgstr "" +"Fallou a descarga da actualización. Pode haber un problema coa rede. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -898,12 +896,12 @@ msgstr "" #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "A descarregar o ficheiro %(current)li de %(total)li con %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "A descarregar o ficheiro %(current)li de %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" @@ -914,24 +912,25 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"A listaxe coas modificacións ainda non está disponíbel.\n" +"Téntao máis tarde." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Non se puido descarregar a listaxe de modificacións. \n" +"Comproba a túa conexión á Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizacións de seguranza importantes" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizacións recomendadas" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizacións suxeridas" @@ -942,9 +941,8 @@ msgstr "Backports" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Actualizacións da distribución" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizacións" @@ -956,7 +954,7 @@ msgstr "Versión %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "A descarregar a listaxe coas modificacións..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -966,7 +964,6 @@ msgstr "_Quitarlle a Selección a Todo" msgid "_Check All" msgstr "_Seleccionalo Todo" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -994,14 +991,13 @@ msgstr "A examinar as actualizacións" #: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "Desde a versión %(old_version)s á %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versión %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1026,7 +1022,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Está dispoñible a nova versión '%s' da distribución" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está danado" @@ -1041,23 +1036,19 @@ msgstr "" "xestor de paquetes \"Synaptic\", ou execute \"sudo apt-get install -f\" nun " "terminal, para corrixir este problema primeiro." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nengún" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1070,6 +1061,11 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Tes que comprobar as actualizacións manualmente\n" +"\n" +"O teu sistema non comproba as actualizacións automaticamente. Podes " +"configurar este comportamento en Fontes de Software na pestana " +"Actualizacións desde a Internet." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1162,10 +1158,15 @@ msgid "_Install Updates" msgstr "_Instalar actualizacións" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "A_ctualizar" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "mudanzas" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "actualizacións" @@ -1205,7 +1206,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" -msgstr "" +msgstr "Engadir un Cdrom" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1415,233 +1416,190 @@ msgstr "O tamaño da ventá" msgid "Configure the sources for installable software and updates" msgstr "Configurar as fontes para programas e actualizacións instalábeis" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pola Comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores propietarios de dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Aplicacións restrinxidas" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom con Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Software de Código Aberto soportado por Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pola Comunidade (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Aberto mantido pola Comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores non libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores propietarios para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restrinxido (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Software restrinxido por razóns de copyright ou legais" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom con Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizacións de backports" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizacións para Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom con Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizacións para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pola comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software non libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom con Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Xa non se mantén oficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrinxido" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizacións para Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports para Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizacións de seguridade de Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (probas)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (inestable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible coa DFSG con dependencias non libres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatible coa DFSG" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1652,16 +1610,16 @@ msgstr "Software non compatible coa DFSG" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" #~ "Ocorreu un problema imposible de resolver cando se calculaba a " #~ "actualización. Por favor, informe disto como un fallo. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" @@ -1681,12 +1639,11 @@ msgstr "Software non compatible coa DFSG" #~ "software», ou con Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" -#~ "A actualización interromperase agora. O seu sistema pode quedar nun " -#~ "estado inutilizable. Estase levando a cabo unha recuperación (dpkg --" -#~ "configure -a)." +#~ "A actualización interromperase agora. O seu sistema pode quedar nun estado " +#~ "inutilizable. Estase levando a cabo unha recuperación (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Algúns programas xa non están soportados oficialmente" @@ -1707,33 +1664,40 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Restoring originale system state" #~ msgstr "Restaurando o estado orixinal do sistema" +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." #~ msgstr "" -#~ "Logo de actualizarse a información dos seus paquetes xa non é posible " -#~ "atopar o paquete esencial '%s».\n" +#~ "Logo de actualizarse a información dos seus paquetes xa non é posible atopar " +#~ "o paquete esencial '%s».\n" #~ "Isto indica un problema serio, por favor, informe disto como un fallo." +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Faltan %li dias %li horas %li minutos" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Faltan %li horas %li minutos" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Faltan %li minutos" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" #~ msgid "Download is complete" #~ msgstr "Completouse a descarga" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Descargando ficheiro %li de %li" @@ -1741,6 +1705,7 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "A actualización cancelarase agora. Por favor, informe disto como un fallo." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1749,41 +1714,43 @@ msgstr "Software non compatible coa DFSG" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Por favor, informe disto como un fallo e inclúa os arquivos /var/log/dist-" -#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A " -#~ "actualización cancelarase agora.\n" -#~ "O seu arquivo «sources.list» orixinal gardouse en /etc/apt/sources.list." -#~ "distUpgrade." +#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A actualización " +#~ "cancelarase agora.\n" +#~ "O seu arquivo «sources.list» orixinal gardouse en " +#~ "/etc/apt/sources.list.distUpgrade." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "Vaise desinstalar %s paquete." #~ msgstr[1] "Vanse desinstalar %s paquetes." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "Vaise instalar %s paquete novo." #~ msgstr[1] "Vanse instalar %s paquetes novos." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "Vaise actualizar %s paquete." #~ msgstr[1] "Vanse actualizar %s paquetes." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Debe descargar un total de %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" -#~ "A actualización pode levar varias horas e non poderá ser cancelada " -#~ "despois en ningún momento." +#~ "A actualización pode levar varias horas e non poderá ser cancelada despois " +#~ "en ningún momento." #~ msgid "Could not find any upgrades" #~ msgstr "Non se puido atopar ningunha actualización" @@ -1794,8 +1761,7 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Actualizando a Ubuntu 6.06 LTS" +#~ "Actualizando a Ubuntu 6.06 LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Descargando e instalando as actualizacións" @@ -1804,42 +1770,44 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizando Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" -#~ "Fallou a verificación da actualización. Pode haber un problema coa rede " -#~ "ou o servidor. " +#~ "Fallou a verificación da actualización. Pode haber un problema coa rede ou o " +#~ "servidor. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando ficheiro %li de %li a velocidade descoñecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo " -#~ "máis tarde." +#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo máis " +#~ "tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." #~ msgstr "" -#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión " -#~ "a Internet." +#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión a " +#~ "Internet." #~ msgid "Cannot install all available updates" #~ msgstr "Non se puideron instalar todas as actualizacións dispoñibles" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo 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:" @@ -1853,6 +1821,7 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Show details" #~ msgstr "Mostrar detalles" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Nova versión: %s (Tamaño: %s)" @@ -1862,21 +1831,19 @@ msgstr "Software non compatible coa DFSG" #~ 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 "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Debe comprobar as actualizacións manualmente\n" #~ "\n" -#~ "O seu sistema non comproba as actualizacións automatimente. Pode " -#~ "configurar este comportamento en \"Sistema\" -> \"Administración\" -> " -#~ "\"Propiedades do software\"." +#~ "O seu sistema non comproba as actualizacións automatimente. Pode configurar " +#~ "este comportamento en \"Sistema\" -> \"Administración\" -> \"Propiedades do " +#~ "software\"." #~ msgid "" #~ "Examining your system\n" @@ -1886,8 +1853,8 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "Analizando o seu sistema\n" #~ "\n" -#~ "As actualizacións de software corrixen erros, eliminan fallos de " -#~ "seguridade e proporcionan novas funcionalidades." +#~ "As actualizacións de software corrixen erros, eliminan fallos de seguridade " +#~ "e proporcionan novas funcionalidades." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _descarga" @@ -1916,16 +1883,15 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "A información das canles está obsoleta\n" #~ "\n" #~ "Debe recargar a información das canles para poder instalar software e " -#~ "actualizacións a partir das canles recientemente engadidas ou " -#~ "cambiadas. \n" +#~ "actualizacións a partir das canles recientemente engadidas ou cambiadas. \n" #~ "\n" #~ "Necesita unha conexión a internet para continuar." @@ -1936,17 +1902,17 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Compoñentes" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Introduza a liña de APT completa da canle que queira engadir\n" +#~ "Introduza a liña de APT completa da canle que queira " +#~ "engadir\n" #~ "\n" -#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, " -#~ "por exemplo \"deb http://ftp.debian.org sarge main\"." +#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, por " +#~ "exemplo \"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Engadir unha canle" @@ -1964,12 +1930,12 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" -#~ "Se se desactiva a comprobación automática de actualizacións, debe " -#~ "recargar a lista de canles manualmente. Esta opción permítelle ocultar a " -#~ "notificación que se mostra neste caso." +#~ "Se se desactiva a comprobación automática de actualizacións, debe recargar a " +#~ "lista de canles manualmente. Esta opción permítelle ocultar a notificación " +#~ "que se mostra neste caso." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1994,4 +1960,4 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizacións de Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "«Backports» de Ubuntu 6.06 LTS" +#~ msgstr "«Backports» de Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/he.po b/po/he.po index 7ff0ef36..42e311d3 100644 --- a/po/he.po +++ b/po/he.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-30 14:09+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 08:48+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" @@ -58,15 +58,13 @@ msgstr "אחרי חודש" msgid "After %s days" msgstr "אחרי %s ימים" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "מתקין עדכונים..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -76,7 +74,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "שרת ראשי" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,11 +124,12 @@ msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -169,7 +167,6 @@ msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "לא ניתן לחשב את השדרוג" @@ -185,7 +182,6 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "שגיאה באימות חלק מן החבילות" @@ -208,13 +204,11 @@ msgid "" "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "לא ניתן לקבוע חבילת על" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -222,8 +216,9 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " -"באמצעות synaptic או apt-get לפני שתמשיך." +"אף אחת החבילות ubuntu-desktop, kubuntu-desktop או edubuntu-desktop אינה " +"מותקנת במערכת שלך, לכן לא ניתן לזהות באיזו גירסה של אובונטו נעשה שימוש.\n" +" אנא התקן אחת מהחבילות הנ\"ל בעזרת Synaptic או apt-get לפני שתמשיך." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -283,7 +278,6 @@ msgstr "" "\n" "בחירה ב\"לא\" תבטל את העדכון." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "לייצר מקורות ברירת מחדל?" @@ -347,7 +341,6 @@ msgstr "" "השדרגו יתבטל כעת. יש לפנות לפחות %s מהשטח ב-%s. רוקנו את הזבל והסירו חבילות " "זמניות מהתקנות קודמות על ידי שימוש בפקודה \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" @@ -411,11 +404,9 @@ msgid "" "more information. " msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 -#, fuzzy msgid "Restoring original system state" -msgstr "מאתחל את המערכת" +msgstr "מחזיר את המערכת למצבה המקורי" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format @@ -423,7 +414,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -449,7 +439,7 @@ msgid "Invalid package information" msgstr "מידע חבילה לא תקין" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -476,40 +466,36 @@ msgstr "" msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "אנא הכניסו את \"%s\" לכונן \"%s\"." #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" msgstr "ההורדה הושלמה" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה." #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format msgid "About %s remaining" -msgstr "נותרו %li דקות." +msgstr "נותרו כ-%s." #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "מוריד קובץ %li מתוך %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 -#, fuzzy msgid "Applying changes" -msgstr "מוריד שינויים..." +msgstr "מחיל שינויים" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format @@ -522,60 +508,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "ארעה שגיאה חמורה" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "חבילה %s תשודרג." -msgstr[1] "%s חבילות ישודרגו." +msgstr[0] "חבילה %d תוסר." +msgstr[1] "%d חבילות יוסרו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "חבילה חדשה %s תותקן." -msgstr[1] "%s חבילות חדשות יותקנו." +msgstr[0] "חבילה חדשה %d תותקן." +msgstr[1] "%d חבילות חדשות יותקנו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "חבילה %s תשודרג." -msgstr[1] "%s חבילות ישודרגו." +msgstr[0] "%d חבילות חדשות ישודרגו." +msgstr[1] "%d חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -586,7 +570,7 @@ msgstr "" "\n" "יש להוריד %s בסה\"כ. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -594,33 +578,32 @@ msgstr "" "הורדת והתקנת השדרוג עשויה לארוך מספר שעות. לא ניתן לבטל את התהליך בשלב מאוחר " "יותר." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "אין שדרוגים זמינים למערכת שלך. השדרוג יתבטל כעת." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "הסר %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "התקן %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "שדרג %s" @@ -646,7 +629,6 @@ msgid "%li seconds" msgstr "%liשניות" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -666,7 +648,6 @@ msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם בר #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -730,17 +711,18 @@ msgstr "מסוף" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_בטל שידרוג" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_המשך" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_שמור" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_החלף" @@ -758,7 +740,7 @@ msgstr "_המשך בשידרוג" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_התחל שידרוג" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -776,7 +758,6 @@ msgstr "לא ניתן להוריד הערות שחרור גירסה." msgid "Please check your internet connection." msgstr "אנא בדקו את החיבור לאינטרנט." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "לא ניתן להריץ את כלי השדרוג" @@ -866,17 +847,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "עדכוני אבטחה חשובים" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "עדכונים מומלצים" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "עדכונים מוצעים" @@ -889,7 +867,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "עדכונים אחרים" @@ -911,22 +888,21 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "גודל ההורדה: %s" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "מתקין עדכונים..." -msgstr[1] "מתקין עדכונים..." +msgstr[0] "ניתן להתקין עדכון %s" +msgstr[1] "ניתן להתקין %s עדכונים" #: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." -msgstr "אנא חכו, התהליך לארוך זמן מה." +msgstr "אנא חכו, התהליך עשוי לארוך זמן מה." #: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" @@ -946,7 +922,6 @@ msgstr "" msgid "Version %s" msgstr "גרסה %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -970,7 +945,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "גירסה חדשה של ההפצה, \"%s\", זמינה" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "אינדקס התוכנות פגום" @@ -984,23 +958,19 @@ msgstr "" "אי אפשר להתקין או להסיר אף תוכנה. יש להשתמש במנהל החבילות \"Synaptic\" או " "להפעיל את הפקודה \"sudo apt-get install -f\" במסוף כדי לתקן בעיה זו." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1016,7 +986,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "" +msgstr "שמרו על המערכת מעודכנת" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" @@ -1036,7 +1006,7 @@ msgstr "שינויים ותיאור העדכון" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "בדו_ק" +msgstr "_בדוק" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" @@ -1074,7 +1044,7 @@ msgstr "עדכוני תוכנה מתקנים שגיאות ופרצות אבטח #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "ש_דרג" +msgstr "_שדרג" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" @@ -1094,15 +1064,18 @@ msgid "_Hide this information in the future" msgstr "_הסתר מידע זה בעתיד" #: ../data/glade/UpdateManager.glade.h:24 -#, fuzzy msgid "_Install Updates" -msgstr "מתקין עדכונים..." +msgstr "_התקן עדכונים" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "שינויים" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "עדכונים" @@ -1258,8 +1231,8 @@ msgid "" msgstr "" "הכנס את שורת APT השלמה של המאגר שברצונך להוסיף\n" "\n" -"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb http://ftp.debian." -"org sarge main\"\n" +"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb " +"http://ftp.debian.org sarge main\"\n" "אפשר למצוא הסבר מפורט על זה בתיעוד." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 @@ -1344,259 +1317,199 @@ msgstr "גודל החלון" msgid "Configure the sources for installable software and updates" msgstr "הגדרת מקורות התוכנות להתקנה והעדכונים" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "עדכונים - אובונטו 5.10" +msgstr "אובונטו 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "מתוחזק ע\"י הקהילה" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "דרייברים קניינים להתקנים" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "תוכנה שנתרמה" +msgstr "תוכנה בעלת הגבלות" -#. Description #: ../data/channels/Ubuntu.info.in:25 -#, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +msgstr "תקליטור אובונטו 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "עדכונים - אובונטו 5.04" +msgstr "אובונטו 6.06 LTS \"DapperDrake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "מתוחזק ע\"י הקהילה (Universe(" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "תוכנות קוד פתוח המתוחזקות ע\"י הקהילה" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "לא-חופשי (Multiverse(" +msgstr "דרייברים לא חופשיים" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "לא-חופשי (Multiverse(" +msgstr "תוכנה בעלת הגבלות (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "עדכונים - אובונטו 5.04" +msgstr "תקליטור אובונטו 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 -#, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" +msgstr "אובונטו 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" +msgstr "תקליטור אובונטו 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" +msgstr "אובונטו 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" +msgstr "תקליטור אובונטו 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 -#, fuzzy msgid "Officially supported" msgstr "נתמך רשמית" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "עדכוני אבטחה - אובונטו 5.10" +msgstr "עדכוני אבטחה - אובונטו 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "עדכונים - אובונטו 5.10" +msgstr "עדכונים - אובונטו 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +msgstr "אובונטו 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "לא-חופשי (Multiverse(" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +msgstr "תקליטור אובונטו 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "נתמך רשמית" +msgstr "אינה נתמכת רשמית יותר" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "זכויות יוצרים מגבילות" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "עדכונים - אובונטו 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "דביאן 3.1 \"סארג'\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "עדכוני אבטחה - דביאן יציב" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "דביאן בדיקה" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "דביאן לא ארה\"ב (לא יציב)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" #~ msgstr "ההורדה תיקח בערך %s עם מודם 56k ובערך %s עם חיבור DSL במהירות 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." @@ -1626,9 +1539,11 @@ msgstr "" #~ "אם אל אפשרת התקנת תוכנות המתחוזקות ע\"י הקהילה (universe), החבילות האלה " #~ "יסומנו להסרה בצעד הבא." +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" @@ -1641,14 +1556,13 @@ msgstr "" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "יש לחפש עדכונים ידניתg>\n" #~ "\n" -#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת" -#~ "\"-> \"ניהול\" -> \"אפשרויות תוכנה\"." +#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת\"-" +#~ "> \"ניהול\" -> \"אפשרויות תוכנה\"." #~ msgid "Cancel _Download" #~ msgstr "בטל _הורדה" @@ -1674,6 +1588,7 @@ msgstr "" #~ msgid "Oficially supported" #~ msgstr "נתמך רשמית" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "נותרו %li שניות." @@ -1788,8 +1703,8 @@ msgstr "" #~ "תקינות התוכנה שאתה מוריד." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "הוסף קובץ מפתח חדש לרשימת המפתחות שאתה בוטח בהם. אנא וודא שאתה שקיבלת את " #~ "המפתח בדרך מאובטחת ושאתה בוטח בבעלים. " @@ -1819,8 +1734,8 @@ msgstr "" #~ msgstr "גודל מקסימלי במגה-בתים:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "שחזר את מפתחות ברירת המחדל שבאו עם ההפצה. זה לא ישנה את המפתחות המותקנים." @@ -1851,8 +1766,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "עדכונים זמינים\n" #~ "\n" @@ -1924,8 +1839,7 @@ msgstr "" #~ msgstr[1] "בחרת את כל %s החבילות המעודכנות, בגודל כולל של %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "בחרת %s מתוך חבילה מעודכנת אחת, בגודל של %s" #~ msgstr[1] "בחרת %s מתוך %s חבילות מעודכנות, בגודל כולל של %s" @@ -1933,8 +1847,8 @@ msgstr "" #~ msgstr "העדכונים מתבצעים כרגע." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "אפשר להריץ רק מנהל חבילות אחד באותו זמן. אנא סגור מנהלי חבילות אחרים קודם." @@ -1949,16 +1863,16 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת " -#~ "עדכוני אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org " -#~ "בשביל מידע אודות שדרוג." +#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת עדכוני " +#~ "אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org בשביל " +#~ "מידע אודות שדרוג." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "הפצה חדשה עם שם קוד '%s' זמינה. אנא ראה http://www.ubuntulinux.org/ בשביל " #~ "הוראות שדרוג." @@ -1967,4 +1881,4 @@ msgstr "" #~ msgstr "אל תראה את הודעה זו שוב." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." +#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." \ No newline at end of file diff --git a/po/hi.po b/po/hi.po index e89e13d6..57c860f1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -55,7 +55,6 @@ msgstr "एक महीने बाद" msgid "After %s days" msgstr "%s दिन बाद" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -313,7 +307,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -376,7 +369,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -387,7 +379,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -438,7 +429,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -466,7 +456,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -482,60 +471,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +530,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,7 +587,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -621,7 +606,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -692,6 +676,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -727,7 +712,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -817,17 +801,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -840,7 +821,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -862,7 +842,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -897,7 +876,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,7 +897,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -931,23 +908,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1044,10 +1017,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1269,232 +1246,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/hr.po b/po/hr.po index 14bfbb53..ea7c826a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:38+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 14:38+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Nakon mjesec dana" msgid "After %s days" msgstr "Nakon %s dana" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s nadogradnje" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Glavni poslužitelj" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -109,11 +106,11 @@ msgstr "Izvorni kod" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "Unos ključa" +msgstr "Uvoz ključa" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Greška prilikom uvoženja odabrane datoteke" +msgstr "Greška prilikom uvoza odabrane datoteke" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -124,12 +121,13 @@ msgid "Error removing the key" msgstr "Greška prilikom brisanja ključa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -149,14 +147,14 @@ msgstr "Ubacite CD u uređaj:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "Pokvareni paketi" +msgstr "Neispravni paketi" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Vaš sistem sadrži pokvarene pakete koji nisu mogli biti popravljeni sa ovim " +"Vaš sistem sadrži neispravne pakete koji nisu mogli biti popravljeni s ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." #: ../DistUpgrade/DistUpgradeCache.py:213 @@ -167,23 +165,22 @@ msgstr "Ne mogu nadograditi potrebne meta-pakete" msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " -"prijavite ovo kao grešku." +"Nerješiv problem se pojavio prilikom rješavanja nadogradnje. \n" +"\n" +"Molimo prijavite ovo kao grešku u 'update-manager' paketu i uključite iz " +"/var/log/dist-upgrade/ u prijavu." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" @@ -195,7 +192,7 @@ msgid "" "unauthenticated packages." msgstr "" "Nije bilo moguće identificirati neke pakete. Ovo bi mogao biti privremeni " -"problem sa mrežom i trebali biste kasnije pokušati ponovo. Pogledajte popis " +"problem s mrežom i trebali biste pokušati ponovo kasnije. Pogledajte popis " "neidentificiranih paketa." #: ../DistUpgrade/DistUpgradeCache.py:312 @@ -211,13 +208,11 @@ msgstr "" "Nije bilo moguće instalirati potreban paket. Molimo prijavite ovo kao " "grešku. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -225,10 +220,10 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Vaš sistem ne sadrži ubuntu-desktop, kubuntu-desktop ili edubuntu-desktop " +"Vaš sustav ne sadrži ubuntu-desktop, kubuntu-desktop ili edubuntu-desktop " "paket i nije bilo moguće odrediti koju verziju Ubuntua koristite.\n" -" Prije nastavljanja, molim instalirajte jedan od gore navedenih paketa " -"koristeći synaptic ili apt-get." +" Prije nastavka, molim instalirajte jedan od gore navedenih paketa koristeći " +"synaptic ili apt-get." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -243,8 +238,8 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"Došlo je do greške prilikom dodavanja CDa zbog kojeg će nadogradnja biti " -"prekinuta. Molim, prijavite ovo kao grešku, ako je ovo ispravan Ubuntu CD.\n" +"Došlo je do greške prilikom dodavanja CD-a zbog kojeg će nadogradnja biti " +"prekinuta. Molim prijavite ovo kao grešku, ako je ovo ispravan Ubuntu CD.\n" "\n" "Poruka je bila:\n" "'%s'" @@ -292,7 +287,6 @@ msgstr "" "odaberete 'Da' nadograditi će se svih '%s' do '%s' unosa.\n" "Ako odaberete 'ne' nadogradnja će se prekinuti." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" @@ -305,8 +299,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za '%" -"s'.\n" +"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za " +"'%s'.\n" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." @@ -320,20 +314,19 @@ msgid "" "report this as a bug." msgstr "" "Nadogradnja podataka repozitorija je rezultirala neispravnom datotekom. " -"Molim, prijavite ovo kao bug." +"Molim, prijavite ovo kao grešku." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"Neki unosi trećih strana u vašoj souces.list datoteci su isključeni. Možete " +"Neki unosi trećih strana u vašoj sources.list datoteci su isključeni. Možete " "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." @@ -364,7 +357,6 @@ msgstr "" "Ispraznite smeće i uklonite privremene pakete od prošlih instalacija " "koristeći 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" @@ -384,8 +376,8 @@ msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Obnavljanje je pokrenuto (dpkg --configure -a).\n" "\n" -"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke " -"u /var/log/dist-upgrade/ direktoriju u prijavu." +"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke u " +"/var/log/dist-upgrade/ direktoriju u prijavu." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -401,10 +393,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Podrška za neke programe je gotova" #: ../DistUpgrade/DistUpgradeControler.py:517 -#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,8 +403,8 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Ovi instalirani paketi više nisu službeno podržani i sada se nalaze u " -"repozitoriju kojeg održava zajednica ('Universe').\n" +"Ovi instalirani paketi više nisu službeno podržani od strane Canonicala i " +"sada se nalaze u repozitoriju kojeg održava zajednica ('Universe').\n" "\n" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje." @@ -442,7 +433,6 @@ msgstr "" "Neki problemi su se pojavili prilikom čišćenja. Molim pogledajte poruku za " "više informacija. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" @@ -450,29 +440,27 @@ msgstr "Vraćam u početno stanje" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Dohvaćanje backporta od '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Pripremam nadogradnju" +msgstr "Neuspjelo pripremanje nadogradnje" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " -"prijavite ovo kao grešku." +"Nerješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " +"prijavite ovo kao grešku u 'update-manager' paketu i uključite iz " +"/var/log/dist-upgrade/ u prijavu." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -513,7 +501,6 @@ msgstr "Tražim zastarjele programe" msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -524,24 +511,23 @@ msgid "Fetching is complete" msgstr "Preuzimanje je završeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Otprilike je ostalo %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Preuzimam datoteku %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Primjenjujem promjene" @@ -559,9 +545,8 @@ msgstr "" "Nadogradnja se prekida. Molim, prijavite ovu grešku za 'update-manager' " "paket i uključite u prijavu datoteke iz /var/log/dist-upgrade direktorija." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -569,61 +554,62 @@ msgstr "" "Zamijeniti konfiguracijsku datoteku\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Izgubit ćete sve promjene napravljene na ovoj konfiguracijskoj datoteci ako " +"odaberete izmjenu s novijom verzijom programa." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Pojavila se ozbiljna greška" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-upgrade/main." -"log i /var/log/dist-upgrade-apt.log u vaše izvješće. Nadogradnja se sada " -"prekida.\n" -"Vaša originalna sources.list datoteka je spremljena u /etc/apt/sources.list." -"distUpgrade." +"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-" +"upgrade/main.log i /var/log/dist-upgrade-apt.log u vaše izvješće. " +"Nadogradnja se sada prekida.\n" +"Vaša originalna sources.list datoteka je spremljena u " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s paket će biti uklonjen." -msgstr[1] "%s paketa će biti uklonjena." -msgstr[2] "%s paketa će biti uklonjeno." +msgstr[0] "%d paket će biti uklonjen." +msgstr[1] "%d paketa će biti uklonjena." +msgstr[2] "%d paketa će biti uklonjeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s novi paket će biti instaliran." -msgstr[1] "%s nova paketa će biti instalirana." -msgstr[2] "%s novih paketa će biti instalirano." +msgstr[0] "%d novi paket će biti instaliran." +msgstr[1] "%d nova paketa će biti instalirana." +msgstr[2] "%d novih paketa će biti instalirano." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s paket će biti nadograđen." -msgstr[1] "%s paketa će biti nadograđena." -msgstr[2] "%s paketa će biti nadograđeno." +msgstr[0] "%d paket će biti nadograđen." +msgstr[1] "%d paketa će biti nadograđena." +msgstr[2] "%d paketa će biti nadograđeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, python-format msgid "" "\n" "\n" @@ -633,8 +619,7 @@ msgstr "" "\n" "Morate preuzeti ukupno %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -642,33 +627,32 @@ msgstr "" "Nadogradnja može potrajati nekoliko sati i ne može biti prekinuta niti u " "jednom trenutku." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "Nema nadogradnji za vaš sustav. Nadogradnja će biti otkazana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Ukloni %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instaliraj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" @@ -694,13 +678,13 @@ msgid "%li seconds" msgstr "%li sekundi" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Preuzimanje će trajati %s sa 1Mbit DSL vezom i otprilike %s sa 56k modemom" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -716,7 +700,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -737,8 +720,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ponovno pokretanje računala potrebno je za završetak nadogradnje" +"Ponovno pokretanje računala potrebno je za završetak " +"nadogradnje" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -746,11 +729,11 @@ msgstr "Pokrenuti nadogradnju?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Nadogradnja Ubuntua na verziju 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "Čistim" +msgstr "Čišćenje" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" @@ -761,7 +744,6 @@ msgid "Difference between the files" msgstr "Razlike između datoteka" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Preuzimam i instaliram nadogradnje" @@ -782,25 +764,25 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Nastavi nadogradnju" +msgstr "_Prekini nadogradnju" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Nastavi" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Zadrži" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Za_mijeni" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "_Prijavi bug" +msgstr "_Prijavi grešku" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -811,9 +793,8 @@ msgid "_Resume Upgrade" msgstr "_Nastavi nadogradnju" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Nastavi nadogradnju" +msgstr "_Pokreni nadogradnju" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -825,13 +806,12 @@ msgstr "Poslužitelj bi mogao biti preopterećen. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "Nisam mogao dobaviti bilješke izdanja" +msgstr "Nisam mogao dohvatiti bilješke izdanja" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." msgstr "Molim, provjerite vašu internet vezu." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nisam mogao pokrenuti alat za nadogradnju" @@ -841,11 +821,11 @@ msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" "Ovo je najvjerovatnije greška u alatu za nadogradnju. Molim, prijavite ovo " -"kao bug" +"kao grešku" #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "Dobavljam alat za nadogradnju" +msgstr "Dohvaćam alat za nadogradnju" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." @@ -865,7 +845,8 @@ msgstr "Preuzimanje nije uspjelo" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Preuzimanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži. " +msgstr "" +"Preuzimanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -876,7 +857,7 @@ msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Raspakiravanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži ili " +"Raspakiravanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži ili " "na poslužitelju. " #: ../UpdateManager/DistUpgradeFetcher.py:221 @@ -884,12 +865,11 @@ msgid "Verfication failed" msgstr "Provjera nije uspjela" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Provjera nadogradnje nije uspjela. Vjerovatno je problem u mreži ili sa " +"Provjera nadogradnje nije uspjela. Vjerojatno je problem u mreži ili s " "poslužiteljem. " #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -901,66 +881,59 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Autorizacija nadogradnje nije uspjela. Vjerovatno je problem u mreži ili sa " +"Autorizacija nadogradnje nije uspjela. Vjerojatno je problem u mreži ili s " "poslužiteljem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Preuzimam datoteku %li od %li pri %s/s" +msgstr "Preuzimanje datoteke %(current)li od %(total)li brzinom %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Preuzimam datoteku %li od %li pri %s/s" +msgstr "Preuzimam datoteku %(current)li od %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "Popis promjena nije dostupan." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." +"Popis promjena trenutno nije dostupan. \n" +"Molim, pokušajte ponovno kasnije." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Preuzimanje popisa promjena nije uspjelo. Molim, provjerite svoju internet " -"vezu." +"Preuzimanje popisa promjena nije uspjelo. \n" +"Molim, provjerite svoju internet vezu." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Važne sigurnosne nadogradnje" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Preporučene nadogradnje" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Predložene nadogradnje" #: ../UpdateManager/UpdateManager.py:241 -#, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 backporti" +msgstr "Backporti" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "_Nastavi nadogradnju" +msgstr "Nadogranje distribucije" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Druge nadogradnje" @@ -971,20 +944,17 @@ msgid "Version %s: \n" msgstr "Verzija %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." msgstr "Preuzimam popis promjena..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" -msgstr "" +msgstr "_Odznači sve" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "Pro_vjeri" +msgstr "Pro_vjeri sve" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1007,21 +977,19 @@ msgid "Update is complete" msgstr "Nadogradnja je gotova" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "_Instaliraj nadogradnje" +msgstr "Tražim moguće nadogradnje" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nova verzija: %s (Veličina: %s)" +msgstr "Verzija %(old_version)s u %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Verzija %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1046,7 +1014,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Novo izdanje distribucije, '%s', je dostupno" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Popis programa je oštećen" @@ -1059,32 +1026,27 @@ msgid "" msgstr "" "Nemoguće je instalirati ili ukloniti bilo koji program. Molim koristite " "upravitelja paketima \"Synaptic\" ili upišite \"sudo apt-get install -f\" u " -"terminal za ispravljanje ovog problema." +"terminalu za ispravljanje ovog problema." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ništa" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "1KB" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1094,24 +1056,20 @@ msgstr "" "Morate ručno provjeriti postojanje nadogradnji\n" "\n" "Vaš sustav ne provjerava automatski postojanje nadogradnji. Možete podesiti " -"ovo ponašanje u \"Sustav\" -> \"Administacija\" -> \"Postavke nadogradnje\"." +"ovo ponašanje u Softver repozitoriji, na Internet nadogradnje " +"kartici." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Održavajte vaš sustav nadograđenim" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Greška prilikom očitavanja CD-a\n" -"\n" -"%s" +msgstr "Greška prilikom očitavanja CD-a" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Pokrenuti nadogradnju?" +msgstr "Pokreće se upravitelj nadogradnji" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1144,6 +1102,10 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Pokreni nadogradnju distribucije, za instalaciju što više nadogradnji.\n" +"\n" +"Ovo može biti izazvano nedovršenom nadogradnjom, neslužbenim paketima ili " +"pokretanjem razvojne verzije." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1174,9 +1136,8 @@ msgid "_Check" msgstr "Pro_vjeri" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Nastavi nadogradnju" +msgstr "_Nadogradnja distribucije" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1187,10 +1148,14 @@ msgid "_Install Updates" msgstr "_Instaliraj nadogradnje" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "Na_dogradnja" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "promjene" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "nadogradnje" @@ -1221,16 +1186,15 @@ msgid "" "rank applications in the search results." msgstr "" "Kako bismo poboljšali Ubuntu, molim odvojite trenutak i sudjelujte u " -"anketi. Ako to želite, lista instaliranog softvera i periodičnost njegove " +"anketi. Ako to želite, popis instaliranog softvera i periodičnost njegove " "uporabe biti će anonimno poslana Ubuntu projektu svaki tjedan.\n" "\n" "Rezultati će se iskoristiti kako bi se povećala podrška za popularne " "programe i kako bi se programi rangirali više na ljestvici pretrage." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Dodaj _CD-ROM" +msgstr "Dodaj CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1257,7 +1221,7 @@ msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -"Samo sigrnosne nadogradnje sa službenih Ubuntu poslužitelja biti će " +"Samo sigrnosne nadogradnje sa službenih Ubuntu poslužitelja će biti " "instalirane automatski" #: ../data/glade/SoftwareProperties.glade.h:16 @@ -1306,7 +1270,6 @@ msgid "_Install security updates without confirmation" msgstr "_Instaliraj sigurnosne nadogradnje bez potvrde" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1317,8 +1280,8 @@ msgid "" msgstr "" "Informacije o repozitoriju su prestare\n" "\n" -"Morate ponovno učitati repozitorij za instalaciju programa i nadogradnji s " -"novog ili promjenjenog repozitorija. \n" +"Morate ponovno učitati repozitorij za instalaciju programa i nadogradnju s " +"novog ili promijenjenog repozitorija. \n" "\n" "Trebate funkcionalnu internet vezu za nastavak." @@ -1343,7 +1306,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1351,11 +1313,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Unesite kompletnu APT liniju repozitorija koji želite dodati\n" +"Unesite kompletnu APT liniju repozitorija koji želite " +"dodati\n" "\n" -"APT linija uključuje vstu, lokaciju i komponente kanala, na primjer \"deb " -"http://ftp.debian.org sarge main\"." +"APT linija uključuje vrstu, lokaciju i komponente kanala, na primjer " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1406,7 +1368,6 @@ msgid "Check for new distribution releases" msgstr "Provjeri za nova izdanja distribucije" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " @@ -1429,7 +1390,6 @@ msgid "Stores the size of the update-manager dialog" msgstr "Sprema veličinu prozora upravitelja nadogradnji" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" @@ -1443,235 +1403,190 @@ msgstr "Veličina prozora" msgid "Configure the sources for installable software and updates" msgstr "Podesi repozitorije i nadogradnje" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Održavani od strane zajednice" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Neslobodni upogonitelji za uređaje" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Neslobodni softver" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM sa Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Održavani od strane zajednice (Universe)" +msgstr "Službeno podržani Open Source softver" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Održavani od strane zajednice (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Softver održavan od strane zajednice" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Neslobodni pogonski programi" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Neslobodni upogonitelji za uređaje " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ograničeni softver (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Softver ograničen autorskim pravom ili legalnim pitanjima" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CDROM s Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 osvježenja" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backporti" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom sa Ubuntu 5.04 ' Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Službeno podržani" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 backporti" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Wart Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Održavani od strane zajednice (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodni (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom sa Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Neki paketi više nisu službeno podržani" +msgstr "Više nisu službeno podržani" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ograničeno autorsko pravo" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 osvježenja" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sigurnosne nadogradnje" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testni)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (nestabilni)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilni programi sa neslobodnim ovisnostima" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" @@ -1722,8 +1637,8 @@ msgstr "DFSG-nekompatibilni programi" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Neke nadogradnje zahtijevaju uklanjanje pojedinih programa. Upotrijebite " #~ "opciju \"Označi sve nadogradnje\" upravitelja paketima \"Synaptic\" ili " @@ -1733,6 +1648,7 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "The following updates will be skipped:" #~ msgstr "Slijedeći paketi će biti preskočeni:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Otprilike je ostalo %li sekundi" @@ -1804,4 +1720,4 @@ msgstr "DFSG-nekompatibilni programi" #~ msgstr "Ubuntu 6.06 LTS osvježenja" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backporti" +#~ msgstr "Ubuntu 6.06 LTS backporti" \ No newline at end of file diff --git a/po/hu.po b/po/hu.po index 8512995a..05748370 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 10:07+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Egy hónap után" msgid "After %s days" msgstr "%s nap után" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s frissítés" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Fő kiszolgáló" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,12 +120,13 @@ msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Az Ön által kijelölt kulcs nem távolítható el. Kérem jelentse ezt hibaként." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -167,7 +165,6 @@ msgstr "A szükséges meta-csomagok nem frissíthetőek" msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" @@ -181,10 +178,9 @@ msgid "" msgstr "" "A frissítés megtervezése közben feloldhatatlan probléma lépett fel.\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" -"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " +"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" @@ -210,7 +206,6 @@ msgid "" "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" @@ -292,7 +287,6 @@ msgstr "" "frissítve. \n" "A \"Nem\" kiválasztása megszakítja a frissítést." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" @@ -360,11 +354,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) %" -"s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " +"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) " +"%s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " "fájljait a \"sudo apt-get clean\" parancs kiadásával." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" @@ -384,8 +377,8 @@ msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " "állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a).\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" -"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " +"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -404,7 +397,6 @@ msgid "Support for some applications ended" msgstr "Egyes alkalmazások támogatása megszűnt" #: ../DistUpgrade/DistUpgradeControler.py:517 -#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,11 +404,12 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Ezek a telepített csomagok már nincsenek hivatalosan támogatva, csak a " -"közösség által (\"universe\").\n" +"A Canonical Ltd. már nem biztosít támogatást a következő " +"szoftvercsomagokhoz. A közösségtől továbbra is kaphat támogatást. \n" "\n" -"Ha nincs engedélyezve a \"universe\" tároló, akkor ezek a csomagok a " -"következő lépésben ki lesznek jelölve eltávolításra." +"Ha nincsenek engedélyezve a közösség által karbantarott szoftverek (universe " +"tároló), akkor ezek a csomagok a következő lépésben eltávolításra lesznek " +"javasolva." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -442,7 +435,6 @@ msgstr "" "A frissítés befejező fázisa közben hiba lépett fel. Az alábbi üzenet további " "információkat tartalmaz a hibára vonatkozóan. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" @@ -453,26 +445,24 @@ msgid "Fetching backport of '%s'" msgstr "\"%s\" visszaportolt változatának letöltése" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Frissítés előkészítése" +msgstr "A frissítés előkészítése meghiúsult" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" -"A frissítés megtervezése közben feloldhatatlan probléma lépett fel. Kérem, " -"jelentse ezt hibaként." +"A rendszer frissítésre való előkészítése meghiúsult. Jelentse ezt a hibát az " +"\"update-manager\" csomaghoz és vegye be a /var/log/dist-upgrade/ " +"könyvtárban található fájlokat a hibajelentésbe." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -513,7 +503,6 @@ msgstr "Elavult szoftverek keresése" msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -529,19 +518,18 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Fájl letöltése (%li., összesen: %li), sebesség: %s/mp" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Kb. %s van hátra" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Fájl letöltése: %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Módosítások alkalmazása..." @@ -560,8 +548,7 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -571,26 +558,26 @@ msgstr "" "\"%s\"\n" "konfigurációs fájlt?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "A beállítófájl összes módosítása elvész, ha lecseréli az újabb verzióra." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "A 'diff' parancs nem található" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Végzetes hiba történt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Jelentse ezt hibaként és a hibajelentéshez mellékelje a /var/log/dist-" @@ -600,27 +587,26 @@ msgstr "" "mentésre." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d csomag el lesz távolítva." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d új csomag kerül telepítésre." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d csomag frissítve lesz." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -630,7 +616,7 @@ msgstr "" "\n" "Összes letöltendő adatmennyiség: %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -638,19 +624,18 @@ msgstr "" "A frissítés letöltése és telepítése több órát is igénybe vehet és a " "későbbiek során nem lehet bármikor megszakítani." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -658,17 +643,17 @@ msgstr "" "Nem állnak rendelkezésre frissítések a rendszeréhez. A frissítés most " "megszakad." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s eltávolítása" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s telepítése" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s frissítése" @@ -694,7 +679,6 @@ msgid "%li seconds" msgstr "%li másodperc" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -718,7 +702,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -782,9 +765,8 @@ msgid "Terminal" msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "Frissítés _folytatása" +msgstr "Frissítés _megszakításaa" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -795,6 +777,7 @@ msgid "_Keep" msgstr "_Megtartás" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Csere" @@ -811,9 +794,8 @@ msgid "_Resume Upgrade" msgstr "Frissítés _folytatása" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "Frissítés _folytatása" +msgstr "Frissítés _indítása" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -831,7 +813,6 @@ msgstr "A kiadási megjegyzések nem tölthetők le" msgid "Please check your internet connection." msgstr "Kérjük ellenőrizze az internetkapcsolatát." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nem sikerült futtatni a frissítőeszközt" @@ -906,46 +887,44 @@ msgstr "" "kiszolgálóval. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" +msgstr "" +"%(current)li. fájl letöltése, összesen: %(total)li, sebesség: %(speed)s/mp" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" +msgstr "%(current)li. fájl letöltése, összesen: %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "A módosítások listája nem érhető el" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." +msgstr "" +"A módosítások listája még nem érhető el.\n" +"Próbálkozzon később." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"A módosítások listájának letöltése meghiúsult. Ellenőrizze az " -"internetkapcsolatát." +"A módosítások listájának letöltése meghiúsult.\n" +"Ellenőrizze az internetkapcsolatát." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Fontos biztonsági frissítések" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Ajánlott frissítések" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Javasolt frissítések" @@ -955,11 +934,9 @@ msgid "Backports" msgstr "Visszaportolt csomagok" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "Frissítés _folytatása" +msgstr "Disztribúciófrissítések" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Egyéb frissítések" @@ -970,9 +947,8 @@ msgid "Version %s: \n" msgstr "%s verzió: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." -msgstr "Módosítások listájának letöltése..." +msgstr "Változások listájának letöltése..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -982,7 +958,6 @@ msgstr "_Kijelölések törlése" msgid "_Check All" msgstr "Összes _ellenőrzése" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1007,16 +982,15 @@ msgid "Checking for updates" msgstr "Frissítések keresése" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Új verzió: %s (Méret: %s)" +msgstr "Régi verzió: %(old_version)s, új verzió: %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "%s verzió" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1041,7 +1015,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "A szoftverindex sérült" @@ -1056,42 +1029,37 @@ msgstr "" "csomagkezelőt vagy futtassa a \"sudo apt-get install -f\" parancsot egy " "terminálban a probléma megoldása érdekében." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nincs" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Önnek kézzel kell megkeresnie a rendelkezésre álló frissítéseket\n" +"Saját kezűleg kell megkeresnie a rendelkezésre álló " +"frissítéseket\n" "\n" -"Az Ön rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a " -"viselkedést a \"Rendszer\" -> \"Adminisztráció\" -> \"Szoftverbeállítások\" " -"menüpont alatt változtathatja meg." +"A rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a " +"viselkedést az Internetes frissítések lap Szoftverforrások " +"szakaszában változtathatja meg." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1100,8 +1068,8 @@ msgstr "Tartsa naprakészen a rendszerét" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Nem minden frissítés telepíthető\r\n" -"\r\n" +"Nem minden frissítés telepíthető \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1186,10 +1154,15 @@ msgid "_Install Updates" msgstr "_Telepítés" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "_Frissítés" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "módosítás" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "frissítés" @@ -1228,9 +1201,8 @@ msgstr "" "keresési eredmények rangsorolásához kerülnek felhasználásra." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "_CD hozzáadása" +msgstr "_CD-ROM hozzáadása" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1314,8 +1286,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Az elérhető szoftverekkel kapcsolatos információk elévültek\n" +"Az elérhető szoftverekkel kapcsolatos információk " +"elévültek\n" "\n" "Szoftverek és frissítések telepítéséhez újonnan felvett vagy módosított " "forrásokból, újra le kell töltenie az elérhető szoftverekkel kapcsolatos " @@ -1351,11 +1323,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Adja meg a forrásként felvenni kívánt tároló teljes APT sorát\n" +"Adja meg a forrásként felvenni kívánt tároló teljes APT " +"sorát\n" "\n" -"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " -"\"deb http://ftp.debian.org sarge main\"." +"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1428,13 +1400,12 @@ msgid "Stores the size of the update-manager dialog" msgstr "A frissítéskezelő ablak méretének tárolása" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Eltárolja a változások listáját és a megnevezéseket tartalmazó lista " -"kiterjesztőjének állapotát" +"Eltárolja a módosítások listáját és a leírást tartalmazó kiterjesztő " +"állapotát" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1444,234 +1415,190 @@ msgstr "Az ablak mérete" msgid "Configure the sources for installable software and updates" msgstr "Telepíthető szoftverek és frissítések forrásának beállítása" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Közösségi karbantartású" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Szabadalmazott eszközmeghajtók" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Nem-szabad" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Az Ubuntu 6.10 \"Edgy Eft\" CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Közösségi karbantartású (Universe)" +msgstr "A Canonical által támogatott nyílt forrású szoftverek" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Közösségi karbantartású (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Közösségi karbantartású nyílt forrású szoftverek" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nem-szabad meghajtók" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Szabadalmazott eszközmeghajtók " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Nem-szabad szoftverek (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Szerzői vagy egyéb jogi problémák miatt korlátozott szoftver" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Az Ubuntu 6.06 LTS \"Dapper Drake\"-et tartalmazó CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Visszaportolt frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Az Ubuntu 5.04 \"Hoary Hedgehog\"-ot tartalmazó CD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Hivatalosan támogatott" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 visszaportolt csomagok" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Közösségi karbantartású (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nem-szabad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Az Ubuntu 4.10 \"Warty Warthog\"-ot tartalmazó CD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Hivatalosan már nem támogatott" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Szerzői jogi korlátozás alatt" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 visszaportolt csomagok" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" biztonsági frissítések" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (tesztelés alatt)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instabil)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" @@ -1722,8 +1649,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Néhány frissítés további szoftverek eltávolítását igényli. Használja a " #~ "Synaptic csomagkezelő \"Minden frissítés kijelölése\" funkcióját, vagy " @@ -1733,6 +1660,7 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "The following updates will be skipped:" #~ msgstr "A következő frissítések ki lesznek hagyva:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Kb. %li másodperc van hátra" @@ -1757,8 +1685,7 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic " -#~ "programokat." +#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic programokat." #~ msgid "Channels" #~ msgstr "Csatornák" @@ -1804,4 +1731,4 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgstr "Ubuntu 6.06 LTS frissítések" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" +#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" \ No newline at end of file diff --git a/po/id.po b/po/id.po index 961425bc..ed101ae8 100644 --- a/po/id.po +++ b/po/id.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:38+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Setelah satu bulan" msgid "After %s days" msgstr "Setelah %s hari" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "_Instal Update" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,12 +121,13 @@ msgid "Error removing the key" msgstr "Kesalahan menghapus kunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" @@ -184,7 +181,6 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" @@ -212,7 +208,6 @@ msgstr "" "Tidak memungkinkan untuk menginstal paket yang dibutuhkan. Silakan laporkan " "ini sebagai bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" @@ -286,7 +281,6 @@ msgstr "" "pilih 'Yes' disini, berkas akan memutakhirkan semua entri '%s' ke '%s'.\n" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Membuat sumber baku?" @@ -358,7 +352,6 @@ msgstr "" "cakram pada %s. Kosongkan sampah anda dan hapus paket sementara dari " "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" @@ -434,7 +427,6 @@ msgstr "" "Beberapa kesalahan terjadi pada waktu pembersihan. Silakan lihat pesan di " "bawah untuk informasi lebih lanjut. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" @@ -445,7 +437,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -475,7 +466,7 @@ msgid "Invalid package information" msgstr "Informasi paket tidak valid" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -504,7 +495,6 @@ msgstr "Mencari perangkat lunak usang" msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,24 +506,23 @@ msgid "Fetching is complete" msgstr "Pemutakhiran selesai" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Mengunduh berkas %li dari %li pada %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "Sekitar %li menit lagi" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Mengunduh berkas %li dari %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Sahkan perubahan" @@ -549,9 +538,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -559,55 +547,54 @@ msgstr "" "Mengganti berkas konfigurasi\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak dapat ditemukan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Terjadi kesalahan fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-upgrade." -"log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade akan " -"dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam /etc/apt/" -"sources.list.distUpgrade." +"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-" +"upgrade.log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade " +"akan dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -617,7 +604,7 @@ msgstr "" "\n" "Anda harus mengunduh sebanyak %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -626,45 +613,44 @@ msgstr "" "Upgrade membutuhkan waktu beberapa jam dan tidak dapat dibatalkan setelah " "itu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Hapus %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instal %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Sekitar %li hari %li jam %li menit lagi" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Sekitar %li jam %li menit lagi" @@ -679,7 +665,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -701,7 +686,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -778,6 +762,7 @@ msgid "_Keep" msgstr "_Simpan" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Ganti" @@ -814,7 +799,6 @@ msgstr "Tidak dapat mengunduh catatan luncuran" msgid "Please check your internet connection." msgstr "Silakan periksa koneksi internet anda." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Tidak dapat menjalankan alat upgrade" @@ -887,12 +871,12 @@ msgstr "" "dengan server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Mengunduh berkas %li dari %li dengan %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Mengunduh berkas %li dari %li dengan %s/s" @@ -917,18 +901,15 @@ msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Pemutakhiran lewat Internet" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -944,7 +925,6 @@ msgstr "Ubuntu 6.06 LTS Backports" msgid "Distribution updates" msgstr "_Lanjutkan Upgrade" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -969,7 +949,6 @@ msgstr "" msgid "_Check All" msgstr "_Periksa" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -995,16 +974,15 @@ msgid "Checking for updates" msgstr "_Instal Update" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versi baru: %s (Ukuran: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Versi %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1021,15 +999,14 @@ msgid "" "information on upgrading." msgstr "" "Anda tidak akan mendapatkan perbaikan keamanan atau pemutakhiran penting " -"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." -"ubuntu.com untuk informasi lebih lanjut." +"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat " +"http://www.ubuntu.com untuk informasi lebih lanjut." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" @@ -1044,23 +1021,19 @@ msgstr "" "Silakan gunakan manajer paket \"Synaptic\" atau jalankan \"sudo apt-get " "install -f\" dalam terminal untuk memperbaiki persoalan ini." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1172,10 +1145,15 @@ msgstr "_Instal Update" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Perubahan" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1335,8 +1313,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Masukkan baris lengkap APT dari kanal yang ingin anda tambah \n" +"Masukkan baris lengkap APT dari kanal yang ingin anda tambah " +"\n" "\n" "Baris APT menyertakan tipe, lokasi dan komponen dari kanal, sebagai contoh " "\"deb http://ftp.debian.org sarge main\"." @@ -1429,253 +1407,210 @@ msgstr "Ukuran jendela" msgid "Configure the sources for installable software and updates" msgstr "Mengatur kanal perangkat lunak dan pemutakhiran lewat internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Tidak-bebas (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Updates" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Tidak-bebas (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Tidak-bebas (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi disokong" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Tidak-bebas (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Hak cipta terlarang" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "Perangkat Lunak yang sesuai dengan DFSG tapi tergantung pada Perangkat Lunak " "Tidak-Bebas" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" @@ -1699,8 +1634,7 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Mengupgrade ke Ubuntu 6.06 LTS" +#~ "Mengupgrade ke Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1730,17 +1664,18 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Beberapa pemutakhiran butuh penghapusan perangkat lunak yang ada. Gunakan " #~ "fungsi \"Mark All Upgrades\" dari paket manajer paket \"Synaptic\" atau " -#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk " -#~ "memutakhirkan sistem anda." +#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk memutakhirkan " +#~ "sistem anda." #~ msgid "The following updates will be skipped:" #~ msgstr "Pemutakhiran berikut akan dilewati:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Sekitar %li detik lagi" @@ -1805,4 +1740,4 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgstr "_Custom" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/it.po b/po/it.po index fa0b41c3..6ec5d7ba 100644 --- a/po/it.po +++ b/po/it.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 12:46+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" @@ -56,7 +56,6 @@ msgstr "Dopo un mese" msgid "After %s days" msgstr "Dopo %s giorni" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s aggiornamenti" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Server principale" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,7 +123,8 @@ msgid "Error removing the key" msgstr "Errore nel rimuovere la chiave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La chiave selezionata non può essere rimossa. Notificare questo evento come " "bug." @@ -160,8 +158,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Il sistema contiene pacchetti danneggiati che non possono essere aggiustati " -"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" -"\" per risolvere il problema." +"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-" +"get\" per risolvere il problema." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -171,7 +169,6 @@ msgstr "Impossibile aggiornare i meta-pacchetti richiesti" msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" @@ -189,7 +186,6 @@ msgstr "" "Notificare questo evento come bug riguardo il pacchetto «update-manager» e " "includere nella notifica i file della cartella «/var/log/dist-upgrade»." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" @@ -217,7 +213,6 @@ msgstr "" "Non è stato possibile installare un pacchetto richiesto. Notificare questo " "evento come bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" @@ -299,7 +294,6 @@ msgstr "" "tutte le voci «%s» verranno aggiornate a «%s»\n" "Scegliendo «No» l'aggiornamento verrà annullato." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" @@ -340,9 +334,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Sono state disabilitate alcune voci di terze parti nel proprio file «sources." -"list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo strumento " -"«software-properties» o con synaptic." +"Sono state disabilitate alcune voci di terze parti nel proprio file " +"«sources.list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo " +"strumento «software-properties» o con synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -371,7 +365,6 @@ msgstr "" "il cestino e rimuovere i pacchetti temporanei di precedenti installazione " "usando \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" @@ -392,8 +385,8 @@ msgstr "" "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" "a).\n" "\n" -"Riportare questo bug per il pacchetto 'update-manager' includendo i file in /" -"var/log/dist-upgrade/ nel rapporto." +"Riportare questo bug per il pacchetto 'update-manager' includendo i file in " +"/var/log/dist-upgrade/ nel rapporto." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -450,7 +443,6 @@ msgstr "" "Si sono verificati alcuni problemi durante la pulizia. Leggere il messaggio " "seguente per maggiori informazioni. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Ripristino dello stato originale del sistema" @@ -461,7 +453,6 @@ msgid "Fetching backport of '%s'" msgstr "Recupero del backport di «%s»" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -478,12 +469,12 @@ msgid "" "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." +"evento come bug per il pacchetto «update-manager» includendo i file in " +"«/var/log/dist-upgrade/» nel rapporto." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "Aggiornamento delle informazione sui repository" +msgstr "Aggiornamento delle informazioni sui repository" #: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" @@ -501,7 +492,7 @@ msgstr "" "Dopo l'aggiornamento delle informazioni di pacchetto non è più possibile " "trovare il pacchetto essenziale «%s».\n" "Ciò indica un errore grave, segnalare questo evento come un bug per il " -"pacchetto 'update-manager' includendo i file in /var/log/dist-upgrade/ nel " +"pacchetto «update-manager» includendo i file in «/var/log/dist-upgrade/» nel " "rapporto." #: ../DistUpgrade/DistUpgradeControler.py:733 @@ -520,7 +511,6 @@ msgstr "Ricerca di software obsoleto" msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -536,7 +526,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Recupero del file %li di %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Circa %s minuti rimanenti" @@ -548,7 +538,6 @@ msgstr "Recupero del file %li di %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applicazione dei cambiamenti" @@ -563,12 +552,11 @@ 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 bugreport." msgstr "" -"L'aggiornamento si interromperà ora. Segnalare questo bug per il pacchetto " -"'update-manager' e di includere i file in /var/log/dist-upgrade/ nella " -"segnalazione." +"L'aggiornamento si interromperà ora. Segnalare questo evento come bug per il " +"pacchetto «update-manager» e di includere i file in «/var/log/dist-upgrade/» " +"nella segnalazione." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -577,7 +565,7 @@ msgstr "" "Sostituire il file di configurazione personalizzato\n" "«%s»?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -585,51 +573,50 @@ msgstr "" "Se si decide di sostituire il file di configurazione con una versione più " "recente, tutte le modifiche apportate andranno perse." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" -msgstr "Il comando \"diff\" non è stato trovato" +msgstr "Il comando «diff» non è stato trovato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Si è verificato un errore fatale" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Segnalare questo evento come un bug e includere nella notifica i file /var/" -"log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. L'aggiornamento " -"viene interrotto.\n" -"Il file sources.list originale è stato salvato in /etc/apt/sources.list." -"distUpgrade." +"Segnalare questo evento come un bug e includere nella notifica i file " +"/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. " +"L'aggiornamento viene interrotto.\n" +"Il file sources.list originale è stato salvato in " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacchetto sta per essere rimosso." msgstr[1] "%d pacchetti stanno per essere rimossi." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nuovo pacchetto sta per essere installato." msgstr[1] "%d nuovi pacchetti stanno per essere installati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacchetto sta per essere aggiornato." msgstr[1] "%d pacchetti stanno per essere aggiornati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -640,7 +627,7 @@ msgstr "" "\n" "È necessario scaricare un totale di %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -648,19 +635,18 @@ msgstr "" "Il recupero e l'installazione degli aggiornamenti può richiedere diverse ore " "e non può essere annullato in un momento successivo." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per prevenire la perdita di dati, chiudere tutte le applicazioni e i " "documenti aperti." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Il sistema è aggiornato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -668,17 +654,17 @@ msgstr "" "Non ci sono aggiornamenti disponibili per questo sistema. L'aggiornamento " "sarà annullato." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Rimuovere %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installare %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Aggiornare %s" @@ -704,7 +690,6 @@ msgid "%li seconds" msgstr "%li secondi" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -726,7 +711,6 @@ msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -746,7 +730,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Riavviare il sistema per completare l'aggiornamento" +msgstr "" +"Riavviare il sistema per completare l'aggiornamento" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -801,6 +786,7 @@ msgid "_Keep" msgstr "_Mantieni" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Sostituisci" @@ -836,7 +822,6 @@ msgstr "Impossibile scaricare le note di rilascio" msgid "Please check your internet connection." msgstr "Controllare la propria connessione a internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossibile eseguire lo strumento di aggiornamento" @@ -942,17 +927,14 @@ msgstr "" "Fallito lo scaricamento dell'elenco dei cambiamenti. \n" "Verificare la connessione a Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Aggiornamenti di sicurezza importanti" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aggiornamenti raccomandati" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aggiornamenti proposti" @@ -965,7 +947,6 @@ msgstr "Backport" msgid "Distribution updates" msgstr "Aggiornamenti della distribuzione" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Altri aggiornamenti" @@ -980,16 +961,13 @@ msgid "Downloading list of changes..." msgstr "Scaricamento dell'elenco dei cambiamenti..." #: ../UpdateManager/UpdateManager.py:566 -#, fuzzy msgid "_Uncheck All" -msgstr "_Decontrassegnare tutti" +msgstr "_Seleziona tutti" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "_Contrassengare tutti" +msgstr "_Deseleziona tutti" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1024,7 +1002,6 @@ msgstr "Dalla versione %(old_version)s alla %(new_version)s" msgid "Version %s" msgstr "Versione %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1049,7 +1026,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'indice del software è danneggiato" @@ -1064,23 +1040,19 @@ msgstr "" "dei pacchetti \"Synaptic\" o eseguire in un terminale \"sudo apt-get install " "-f\" per risolvere il problema." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Niente" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1163,7 +1135,7 @@ msgid "" "provide new features." msgstr "" "Gli aggiornamenti software correggono errori, eliminano vulnerabilità di " -"sicurezza ed aggiungono nuove funzionalità." +"sicurezza e aggiungono nuove funzionalità." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1190,10 +1162,14 @@ msgid "_Install Updates" msgstr "I_nstalla aggiornamenti" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "A_ggiorna" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "cambiamenti" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "aggiornamenti" @@ -1447,246 +1423,203 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura le sorgenti per gli aggiornamenti e per il software installabile" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenuto dalla comunità" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Driver proprietari per i dispositivi" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software con restrizioni" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software open source supportato da Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenuto dalla comunità (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software open source mantenuto dalla comunità" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Driver non liberi" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Driver proprietari per dispositivi " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software con restrizioni (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software con restrizioni per copyright o motivi legali" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Drapper Drake»" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aggiornamenti di backport" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aggiornamenti per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backport per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supportati ufficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aggiornamenti per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backport per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenuti dalla comunità (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libero (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Software non più supportato ufficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright con restrizioni" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aggiornamenti per Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backport per Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aggiornamenti di sicurezza per Debian 3.1 «Sarge»" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibile con le DFSG con dipendenze non libere" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by " -#~ "a script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." #~ msgstr "" -#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte " -#~ "le personalizzazioni apportate dall'utente o da uno script." +#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte le " +#~ "personalizzazioni apportate dall'utente o da uno script." +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" #~ msgstr "" -#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con " -#~ "una connessione DSL da 1Mbit" +#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con una " +#~ "connessione DSL da 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" @@ -1705,6 +1638,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software con restrizioni per copyright o questioni legali" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Scaricamento del file %li di %li a velocità sconosciuta" @@ -1753,17 +1687,18 @@ msgstr "Software non compatibile con le DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. " -#~ "Utilizzare la funzione \"Marca tutti gli aggiornamenti\" del gestore di " -#~ "pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade" -#~ "\" in un terminale per aggiornare completamente il sistema." +#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. Utilizzare " +#~ "la funzione \"Marca tutti gli aggiornamenti\" del gestore di pacchetti " +#~ "\"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade\" in un " +#~ "terminale per aggiornare completamente il sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "I seguenti aggiornamenti saranno tralasciati:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Circa %li secondi rimanenti" @@ -1772,8 +1707,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come " -#~ "bug." +#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come bug." #~ msgid "Upgrading Ubuntu" #~ msgstr "Aggiornamento di Ubuntu" @@ -1792,8 +1726,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" " -#~ "prima di continuare." +#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" prima " +#~ "di continuare." #~ msgid "Channels" #~ msgstr "Canali" @@ -1846,27 +1780,27 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Nessuna voce valida trovata" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Durante la scansione delle informazioni sui repository, non è stata " -#~ "trovata alcuna voce valida per l'aggiornamento.\n" +#~ "Durante la scansione delle informazioni sui repository, non è stata trovata " +#~ "alcuna voce valida per l'aggiornamento.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in " -#~ "uno stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg " -#~ "--configure -a)." +#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in uno " +#~ "stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg --" +#~ "configure -a)." #~ msgid "" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Notificare questo evento come bug e includere nella notifica i file \"~/" -#~ "dist-upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene " -#~ "interrotto ora. " +#~ "Notificare questo evento come bug e includere nella notifica i file \"~/dist-" +#~ "upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene interrotto " +#~ "ora. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1886,8 +1820,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analisi del sistema in uso\n" #~ "\n" @@ -1895,8 +1829,8 @@ msgstr "Software non compatibile con le DFSG" #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Gli aggiornamenti software possono correggere errori, eliminare " #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." @@ -1907,18 +1841,18 @@ msgstr "Software non compatibile con le DFSG" #~ "installed therefor" #~ msgstr "" #~ "L'installazione automatica è limitata ai soli aggiornamenti di sicurezza " -#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software " -#~ "\"unattended-upgrades\" deve perciò essere installato" +#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software \"unattended-" +#~ "upgrades\" deve perciò essere installato" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Inserire la riga APT completa del canale che si vuole aggiungere\n" +#~ "Inserire la riga APT completa del canale che si vuole " +#~ "aggiungere\n" #~ "\n" #~ "La riga APT contiene il tipo, la posizione e le sezioni di un canale, ad " #~ "esempio \"deb http://ftp.debian.org sarge main\"" @@ -1937,8 +1871,8 @@ msgstr "Software non compatibile con le DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Download delle modifiche in corso\n" +#~ "Download delle modifiche in " +#~ "corso\n" #~ "\n" #~ "Devo scaricare le modifiche dal server centrale" @@ -1980,11 +1914,11 @@ msgstr "Software non compatibile con le DFSG" #~ "permette di verificare l'integrità del software che scarichi." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati " -#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " +#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati di " +#~ "aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " #~ "proprietario. " #~ msgid "Add repository..." @@ -2012,8 +1946,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Dimensione massima in MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Ripristina le chiavi di default della distribuzione.\n" #~ "Questo non modificherà le chiavi installate dal'utente." @@ -2045,13 +1979,13 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Aggiornamenti Disponibili\n" #~ "\n" -#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando " -#~ "il pulsante Installa." +#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando il " +#~ "pulsante Installa." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancella il download delle modifiche" @@ -2086,8 +2020,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " +#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " #~ msgid "Choose a key-file" #~ msgstr "Scegli un file di chiave" @@ -2112,8 +2045,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr[1] "" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Hai selezionato %s pacchetti su %s, dimensione %s" #~ msgstr[1] "" @@ -2121,8 +2053,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Gli aggiornamenti sono in fase di applicazione." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Puoi eseguire una sola applicazione di gestione dei pacchetti " #~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione." @@ -2138,28 +2070,27 @@ msgstr "Software non compatibile con le DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione " -#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri " -#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org " -#~ "per informazioni riguardo all'aggiornamento." +#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione che " +#~ "stai usando non riceverà più aggiornamenti di sicurezza o altri " +#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org per " +#~ "informazioni riguardo all'aggiornamento." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "È disponibile una nuova release di Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://" -#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento" +#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su " +#~ "http://www.ubuntulinux.org/ per informazioni sull'aggiornamento" #~ msgid "Never show this message again" #~ msgstr "Non mostrare più questo messaggio" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" -#~ "Modifiche non trovate, il server potrebbe non essere stato ancora " -#~ "aggiornato." +#~ "Modifiche non trovate, il server potrebbe non essere stato ancora aggiornato." \ No newline at end of file diff --git a/po/ja.po b/po/ja.po index bf52e0d3..58fca3a6 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.42.4\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -msgstr "X 日ごとに" +msgstr "毎日" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" @@ -28,7 +28,7 @@ msgstr "2日ごと" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "X 週ごとに" +msgstr "毎週" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" @@ -56,15 +56,13 @@ msgstr "1ヶ月後" msgid "After %s days" msgstr "%s 日後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "アップデートをインストール中" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "メインサーバ" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -91,9 +88,8 @@ msgstr "カスタムサーバ" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "ソフトウェアのアップデート" +msgstr "ソフトウェアチャンネル" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 @@ -101,14 +97,12 @@ msgid "Active" msgstr "有効" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "ソース" +msgstr "(ソースコード)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "ソース" +msgstr "ソースコード" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -120,19 +114,19 @@ msgstr "選択したファイルのインポートエラー" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" +msgstr "選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "鍵削除のエラー" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -159,8 +153,7 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" -"す。 Synaptic や apt-get を使って最初に修正してください。" +"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれています。 Synaptic や apt-get を使って最初に修正してください。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -170,7 +163,6 @@ msgstr "要求されたメタパッケージがアップグレードできませ msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" @@ -184,7 +176,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" @@ -195,9 +186,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワー" -"クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" -"ジが表示されます。" +"" +"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワークの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケージが" +"表示されます。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -208,16 +199,13 @@ msgstr "'%s' がインストールできません" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"要求されたパッケージのインストールができません。バグとして報告してください。 " +msgstr "要求されたパッケージのインストールができません。バグとして報告してください。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -225,16 +213,13 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケー" -"ジ が含まれていません。そして実行している ubuntu のバージョンが検出できませ" -"ん。 \n" -"開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインス" -"トールしてください。" +"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケージ " +"が含まれていません。また、実行している ubuntu のバージョンが検出できません。 \n" +" 開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインストールしてください。" #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "取得に失敗しました" +msgstr "CDの追加に失敗しました" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -245,6 +230,10 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"CD の追加に失敗したため、アップグレードは終了されます。この CD が正規の Ubuntu CD の場合は、このことをバグとして報告してください。\n" +"\n" +"エラーメッセージ:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -261,6 +250,8 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"アップグレードは、ネットワークを利用して最新のアップデートを確認し、現在の CD に無いパッケージを取得することができます。\n" +"高速、または安価なネットワークアクセスがある場合は、ここで 'はい' を選んでください。そのようなネットワークが無い場合は 'いいえ' を選んでください。" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -277,14 +268,11 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりま" -"せんでした。内部ミラーないしミラー情報が古いと思われます。\n" +"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりませんでした。内部ミラーないしミラー情報が古いと思われます。\n" "\n" -"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリ" -"を '%s' エントリにアップデートします。 'いいえ' を選択するとアップデートを" -"キャンセルします。" +"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリを '%s' エントリにアップデートします。 " +"'いいえ' を選択するとアップデートをキャンセルします。" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" @@ -299,8 +287,7 @@ msgid "" msgstr "" "'sources.list' をスキャン中、 '%s' の正しいエントリが見つかりませんでした。\n" "\n" -"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" -"キャンセルします。" +"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートをキャンセルします。" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -310,24 +297,20 @@ msgstr "リポジトリ情報が無効です" msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" -"告してください。" +msgstr "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報告してください。" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "公式ではないソースが無効になりました" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" -"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、" -"アップグレード後に 'ソフトウェアのプロパティ' ツールか Synaptic を使用してく" -"ださい。" +"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、アップグレード後に 'ソフトウェアの配布元' ツールか " +"Synaptic を使用してください。" #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -337,9 +320,7 @@ msgstr "アップデート中にエラー発生" msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -msgstr "" -"アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" -"ネットワーク接続をチェックし、再びアップデートしてください。" +msgstr "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。ネットワーク接続をチェックし、再びアップデートしてください。" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -352,11 +333,9 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してくださ" -"い。ごみ箱を空にし、'sudo apt-get clean' コマンドを実行して以前インストールし" -"た一時パッケージを削除してください。" +"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してください。ごみ箱を空にし、'sudo apt-get clean' " +"コマンドを実行して以前インストールした一時パッケージを削除してください。" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" @@ -366,7 +345,6 @@ msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" #: ../DistUpgrade/DistUpgradeControler.py:461 -#, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -374,8 +352,11 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"アップグレードを中断しました。システムが使用できない状態になっている可能性が" -"あります。ただいま修正を実行中です (dpkg --configure -a)。" +"アップグレードを中断しました。システムが使用できない状態になっている可能性があります。ただいま修正を実行中です (dpkg --configure -" +"a)。\n" +"\n" +"このバグを 'update-manager' パッケージのバグとして報告して下さい。その際、バグ報告に /var/log/dist-upgrade/ " +"中のファイルを含めて下さい。" #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -385,9 +366,7 @@ msgstr "アップグレードをダウンロードできません" msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" -"アップグレードを中断しました。インターネット接続またはインストールメディア" -"(CD-ROMなど)をチェックし。再試行してください。 " +msgstr "アップグレードを中断しました。インターネット接続またはインストールメディア(CD-ROMなど)をチェックし。再試行してください。 " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -402,11 +381,9 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"インストールされているこれらのパッケージは、もう公式にサポートされておらず、" -"コミュニティサポートになっています('universe')。\n" +"インストールされているこれらのパッケージは、もう公式にサポートされておらず、コミュニティサポートになっています('universe')。\n" "\n" -"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" -"提案します。" +"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを提案します。" #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -428,11 +405,8 @@ msgstr "コミット中にエラー" msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧" -"ください。 " +msgstr "クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧ください。 " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "システムを元に戻し中" @@ -443,7 +417,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -471,7 +444,7 @@ msgid "Invalid package information" msgstr "無効なパッケージ情報" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -498,7 +471,6 @@ msgstr "古いソフトウェアを検索する" msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -510,24 +482,23 @@ msgid "Fetching is complete" msgstr "アップデートが完了しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "およそ残り %li 分" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "%i のうち %i をダウンロード中" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "変更を適用中" @@ -543,65 +514,62 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"設定ファイル %s\n" -"を置き換えますか?" +"カスタマイズ済みの設定ファイル %s を\n" +"置き換えますか?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' コマンドが見つかりません" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "重大なエラーが発生しました" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"~/dist-upgrade.log と ~/dist-upgrade-apt.log を含めて不具合として報告してくだ" -"さい。アップグレードは中断しました。\n" -"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されていま" -"す。" +"~/dist-upgrade.log と ~/dist-upgrade-apt.log " +"を含めて不具合として報告してください。アップグレードは中断しました。\n" +"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されています。" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s つのパッケージが削除されます。" +msgstr[0] "%d 個のパッケージが削除されます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s·つのパッケージがインストールされます。" +msgstr[0] "%d 個のパッケージがインストールされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s·つのパッケージがアップグレードされます。" +msgstr[0] "%d 個のパッケージがアップグレードされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -611,55 +579,51 @@ msgstr "" "\n" "全部で %s つのパッケージをダウンロードする必要があります。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "アップグレードには数時間かかり、今後一切キャンセルはできません。" +msgstr "アップグレードの取得とインストールには数時間かかり、今後一切キャンセルはできません。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" -"さい。" +msgstr "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてください。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "削除されるパッケージ: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "インストール %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "アップグレード %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "およそ残り %li 日 %li 時間 %li 分" +msgstr "%li 日 %li 時間 %li 分" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "およそ残り %li 時間 %li 分" +msgstr "%li 時間 %li 分" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format @@ -672,7 +636,6 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -692,7 +655,6 @@ msgstr "アップグレードが終了しました。再起動が必要ですが #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,13 +669,11 @@ msgid "" msgstr "" "アップグレードをキャンセルしますか?\n" "\n" -"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。" -"アップグレードを再開することを強くおすすめします。" +"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。アップグレードを再開することを強くおすすめします。" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"アップグレードを完了するためにシステムの再起動が必要です" +msgstr "アップグレードを完了するためにシステムの再起動が必要です" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -736,9 +696,8 @@ msgid "Difference between the files" msgstr "ファイル間の違いを表示" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "アップグレードをダウンロードし、インストール" +msgstr "アップグレードをダウンロードしてインストール" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -757,19 +716,19 @@ msgid "Terminal" msgstr "端末" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "アップグレードを再開する(_R)" +msgstr "アップグレードを中断(_C)" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "続行する(_C)" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "そのまま(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "置き換える(_R)" @@ -786,9 +745,8 @@ msgid "_Resume Upgrade" msgstr "アップグレードを再開する(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "アップグレードを再開する(_R)" +msgstr "アップグレードを開始(_S)" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -806,7 +764,6 @@ msgstr "リリースノートををダウンロードできません" msgid "Please check your internet connection." msgstr "インターネット接続を確認してください。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "アップグレードツールを実行できません" @@ -848,22 +805,17 @@ msgstr "抽出に失敗しました" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題です。 " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" msgstr "検証に失敗しました" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"アップグレードの検証に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの検証に失敗しました。ネットワーク接続もしくはサーバに問題があるかもしれません。 " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -873,53 +825,46 @@ msgstr "認証に失敗しました" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題です。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" +msgstr "%(total)li のうち %(current)li 番目のファイルをダウンロード中 (%(speed)s/秒)" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" +msgstr "%(total)li のうち %(current)li 番目のファイルをダウンロード中" #: ../UpdateManager/UpdateManager.py:206 -#, fuzzy msgid "The list of changes is not available" -msgstr "変更点がまだ取得できません。あとで試してください。" +msgstr "変更点のリストが利用できません。" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "変更点がまだ取得できません。あとで試してください。" +msgstr "" +"変更点のリストはまだ取得できません。\n" +"あとで試してください。" #: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "" -"変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" -"い。" +msgstr "変更点の取得に失敗しました。インターネットに接続されているか確認してください。" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -935,7 +880,6 @@ msgstr "Ubuntu 6.04 バックポート" msgid "Distribution updates" msgstr "アップグレードを再開する(_R)" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -960,7 +904,6 @@ msgstr "すべてのチェックをはずす(_U)" msgid "_Check All" msgstr "チェック(_C)" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -986,16 +929,15 @@ msgid "Checking for updates" msgstr "インストールできるアップデートをチェック" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "新しいバージョン: %s (サイズ: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "バージョン %s:" +msgstr "バージョン %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1011,8 +953,7 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの " -"Ubuntu Linux にアップグレードしてください。\r\n" +"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの Ubuntu Linux にアップグレードしてください。 \n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" #: ../UpdateManager/UpdateManager.py:863 @@ -1020,7 +961,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "新しいディストリビューション '%s' にアップグレードできます" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" @@ -1031,34 +971,28 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッ" -"ケージマネージャを使用するか、 まずこの問題を解決するために \"sudo apt-get " -"install -f\" コマンドをターミナルで実行してください。" +"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッケージマネージャを使用するか、 まずこの問題を解決するために " +"\"sudo apt-get install -f\" コマンドをターミナルで実行してください。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "なし" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1067,26 +1001,24 @@ msgid "" msgstr "" "アップデートの情報を手動でチェックしてください\n" "\n" -"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム" -"(System)\"·->·\"システム管理\"·->·\"ソフトウェアのプロパティ (Software " -"Properties)\" で行います。" +"" +"システムはアップデートを自動的にチェックしません。この動作の変更は、ソフトウェアの配布元インターネットアップデートタブで行いま" +"す。" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "システムを最新の状態にする" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"CDスキャン中のエラー\n" -"\n" +"一部のアップデートだけがインストールされました \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "アップグレードを開始しますか?" +msgstr "アップデートマネージャを開始しています" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1132,9 +1064,7 @@ msgstr "ソフトウェアのアップデート" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能" -"を提供します。" +msgstr "ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能を提供します。" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1149,9 +1079,8 @@ msgid "_Check" msgstr "チェック(_C)" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "アップグレードを再開する(_R)" +msgstr "ディストリビューションのアップグレード(_D)" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1163,17 +1092,21 @@ msgstr "アップデートをインストール(_I)" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "アップグレード(_P)" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "変更点" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "アップデート" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "インターネットアップデート" +msgstr "自動アップデート" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" @@ -1184,9 +1117,8 @@ msgid "Internet updates" msgstr "インターネットアップデート" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "インターネットアップデート" +msgstr "インターネット" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1200,9 +1132,8 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "CD-ROM の追加(_C)" +msgstr "CD-ROM の追加" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1213,9 +1144,8 @@ msgid "D_elete downloaded software files:" msgstr "ダウンロードしたファイルを削除(_E):" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "ダウンロードが完了しました" +msgstr "ダウンロード元:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1229,9 +1159,7 @@ msgstr "インターネットアップデート" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "" -"公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールさ" -"れます。" +msgstr "公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールされます。" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1293,8 +1221,7 @@ msgid "" msgstr "" "チャンネルの情報が古いです\n" "\n" -"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うた" -"め、チャンネルを再読み込みしてください。\n" +"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うため、チャンネルを再読み込みしてください。\n" "\n" "続けるためには、インターネット接続が有効になっている必要があります。" @@ -1329,8 +1256,8 @@ msgid "" msgstr "" "追加したい完全な APT line を入力してください。\n" "\n" -"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。" -"例:\"deb http://ftp.debian.org sarge main\"" +"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。例:\"deb http://ftp.debian.org " +"sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1374,9 +1301,7 @@ msgstr "アップデートマネージャー" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "" -"現在使用中のディストリビューションの最新バージョンが存在する場合自動的に" -"チェックし、可能ならアップグレードを提案する" +msgstr "現在使用中のディストリビューションの最新バージョンが存在する場合自動的にチェックし、可能ならアップグレードを提案する" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1389,8 +1314,7 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込み" -"しなければなりません。このオプションはその場合の催促をしないようにします。" +"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込みしなければなりません。このオプションはその場合の催促をしないようにします。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1420,249 +1344,196 @@ msgstr "ウィンドウのサイズ" msgid "Configure the sources for installable software and updates" msgstr "ソフトウェアチャンネルとインターネットアップデートを設定" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 アップデート" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "コミュニティによるメンテナンス (Universe)" +msgstr "コミュニティによるメンテナンス" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "デバイス用のプロプライエタリなドライバ" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "寄贈ソフトウェア" +msgstr "制限のあるソフトウェア" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' のCD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "コミュニティによるメンテナンス (Universe)" +msgstr "Canonical によってサポートされるオープンソースソフトウェア" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "コミュニティによるメンテナンス (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "コミュニティによるメンテナンス (Universe)" +msgstr "コミュニティによるメンテナンスされるオープンソースソフトウェア" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "非フリー (Multiuniverse)" +msgstr "フリーではないドライバ" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "デバイス用のプロプライエタリなドライバ " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "非フリー (Multiuniverse)" +msgstr "制限されたソフトウェア (Multiuniverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake' の CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "バックポートされたアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 バックポート" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 バックポート" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiuniverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' のCD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "いくつかのソフトウェアはもう公式にサポートされません" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 バックポート" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian·3.1·\"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian·3.1·\"Sarge\"·セキュリティアップデート" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian·\"Etch\"·(testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian·\"Sid\"·(unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" @@ -1671,6 +1542,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "ダウンロード中: 速度不明で %li のうち %li" @@ -1694,8 +1566,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Ubuntu 6.06 LTS にアップデート中" +#~ "Ubuntu 6.06 LTS にアップデート中" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1716,25 +1587,23 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "システムを解析中です\n" #~ "\n" -#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機" -#~ "能を提供します。" +#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機能を提供します。" #~ msgid "Oficially supported" #~ msgstr "公式サポート" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグ" -#~ "レードするためにはパッケージマネージャ \"Synaptic\" の \"すべてのアップグ" -#~ "レードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を" -#~ "実行してください。" +#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグレードするためにはパッケージマネージャ \"Synaptic\" の " +#~ "\"すべてのアップグレードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を実行してください。" #~ msgid "The following updates will be skipped:" #~ msgstr "これらのパッケージはアップグレードされません:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "およそ残り %li 秒" @@ -1754,14 +1623,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "詳細を表示" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "ソフトウェアマネージメントツールは同時に1つしか実行することができません" +#~ msgstr "ソフトウェアマネージメントツールは同時に1つしか実行することができません" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "" -#~ "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してく" -#~ "ださい。" +#~ msgstr "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してください。" #~ msgid "Channels" #~ msgstr "チャンネル" @@ -1813,11 +1679,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "Ubuntu 6.06 LTS バックポート" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" -#~ msgstr "" -#~ "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリが" -#~ "みつかりました。\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" +#~ msgstr "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリがみつかりました。\n" #~ msgid "Repositories changed" #~ msgstr "リポジトリが変更されました" @@ -1825,20 +1689,17 @@ msgstr "DFSGに適合しないソフトウェア" #~ 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 "" -#~ "変更点を有効にするためにパッケージリストをサーバから再取得する必要がありま" -#~ "す。今すぐ実行しますか?" +#~ msgstr "変更点を有効にするためにパッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?" #~ msgid "Sections" #~ msgstr "セクション:" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. Please " -#~ "try 'sudo apt-get install -f' or Synaptic to fix your system." +#~ "The upgrade aborts now. Your system can be in an unusable state. Please try " +#~ "'sudo apt-get install -f' or Synaptic to fix your system." #~ msgstr "" -#~ "アップグレードを中断しました。システムが不安定な状態になっています。システ" -#~ "ムを修正するために 'sudo apt-get install -f ' または Synapticを試してみて" -#~ "ください。" +#~ "アップグレードを中断しました。システムが不安定な状態になっています。システムを修正するために 'sudo apt-get install -f ' " +#~ "または Synapticを試してみてください。" #~ msgid "Remove obsolete Packages?" #~ msgstr "古いパッケージ削除しますか?" @@ -1847,19 +1708,18 @@ msgstr "DFSGに適合しないソフトウェア" #~ "Upgrading to Ubuntu \"Dapper\" " #~ "6.04" #~ msgstr "" -#~ "Ubuntu·\"Dapper\"·6.04 にアップグ" -#~ "レード中" +#~ "Ubuntu·\"Dapper\"·6.04 " +#~ "にアップグレード中" #~ msgid "" #~ "Checking for available updates\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "アップデートをチェック中\n" #~ "\n" -#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去" -#~ "し、新機能を追加します。" +#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去し、新機能を追加します。" #~ msgid "Sections:" #~ msgstr "セクション:" @@ -1902,12 +1762,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" -#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量があり" -#~ "ません。再び試行する前に 'sudo apt-get clean' などで空き容量を確保してくだ" -#~ "さい" +#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量がありません。再び試行する前に 'sudo apt-get clean' " +#~ "などで空き容量を確保してください" #~ msgid "Error fetching the packages" #~ msgstr "パッケージ取得中にエラー" @@ -1915,9 +1774,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " -#~ msgstr "" -#~ "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの" -#~ "問題です。ネットワークを確認して再試行してください。 " +#~ msgstr "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの問題です。ネットワークを確認して再試行してください。 " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1942,11 +1799,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "本当にキャンセルしますか?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " -#~ msgstr "" -#~ "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作" -#~ "を継続することを強く忠告します。 " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " +#~ msgstr "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作を継続することを強く忠告します。 " #, fuzzy #~ msgid "Sources" @@ -1980,18 +1835,15 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "認証鍵\n" #~ "\n" -#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完" -#~ "全なものか確認することができます。" +#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完全なものか確認することができます。" #~ msgid "A_uthentication" #~ msgstr "認証(_U)" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " -#~ msgstr "" -#~ "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経" -#~ "由で鍵を取得し、信頼される持ち主のものか確認してください。 " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " +#~ msgstr "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経由で鍵を取得し、信頼される持ち主のものか確認してください。 " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "一時ファイルを自動的に削除する(_T)" @@ -2012,11 +1864,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "最大量(MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." -#~ msgstr "" -#~ "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更により" -#~ "ユーザが追加した鍵が失われることはありません。" +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." +#~ msgstr "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更によりユーザが追加した鍵が失われることはありません。" #~ msgid "Set _maximum size for the package cache" #~ msgstr "パッケージキャッシュの最大量を設定する(_M)" @@ -2042,27 +1892,26 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "アップデートがあります\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" -#~ "のパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. " -#~ "If you are behind an internet connection that needs to be started by hand " -#~ "(e.g. a modem) you should use this button so that update-manager knows " -#~ "about new updates." +#~ "If you have a permanent internet connection this is done automatically. If " +#~ "you are behind an internet connection that needs to be started by hand (e.g. " +#~ "a modem) you should use this button so that update-manager knows about new " +#~ "updates." #~ msgstr "" #~ "サーバからパッケージ情報を読み込み直します。\n" #~ "\n" -#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデム" -#~ "などでそうではないなら、アップデートマネージャに新しいアップデートがあるか" -#~ "どうかを知らせるため、このボタンを使用して手動で行う必要があります。" +#~ "" +#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデムなどでそうではないなら、アップデートマネージャに新しいアップデートがあるかどうかを" +#~ "知らせるため、このボタンを使用して手動で行う必要があります。" #~ msgid "Binary" #~ msgstr "バイナリ" @@ -2083,8 +1932,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" ま" -#~ "たは \"apt-get\" を使用して修正してください。" +#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" または \"apt-get\" を使用して修正してください。" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "全てのパッケージをアップグレードすることは不可能です。" @@ -2092,27 +1940,21 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対" -#~ "処がいるようです。Synaptic \"Smart Upgrade\"か\"apt-get dist-upgrade\"を実" -#~ "行して問題を修正してください。" +#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対処がいるようです。Synaptic \"Smart " +#~ "Upgrade\"か\"apt-get dist-upgrade\"を実行して問題を修正してください。" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "" -#~ "変更点は見つかりませんでした。サーバはまだアップデートされていないようで" -#~ "す。" +#~ msgstr "変更点は見つかりませんでした。サーバはまだアップデートされていないようです。" #~ msgid "The updates are being applied." #~ msgstr "アップデートされました。" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." -#~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケー" -#~ "ションマネージャを終了してください。" +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." +#~ msgstr "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケーションマネージャを終了してください。" #~ msgid "Updating package list..." #~ msgstr "アップデートされるパッケージのリスト..." @@ -2122,22 +1964,22 @@ msgstr "DFSGに適合しないソフトウェア" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "新しいUbuntu Linuxにアップグレードしてください。現在お使いのシステムにはセ" -#~ "キュリティフィクスや危急のアップデートはすでに提供されていません。アップグ" -#~ "レードに関する情報は http://www.ubuntulinux.org/ を見てください。" +#~ "新しいUbuntu " +#~ "Linuxにアップグレードしてください。現在お使いのシステムにはセキュリティフィクスや危急のアップデートはすでに提供されていません。アッ" +#~ "プグレードに関する情報は http://www.ubuntulinux.org/ を見てください。" #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntuの新しいリリース版があります!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするため" -#~ "に http://www.ubuntulinux.org/ をご覧ください。" +#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするために http://www.ubuntulinux.org/ " +#~ "をご覧ください。" #~ msgid "Never show this message again" #~ msgstr "このメッセージを二度と表示しない" @@ -2146,11 +1988,10 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "排他的なロックができません" #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や " -#~ "aptitudeのような他のパッケージマネージャを終了してください。" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や aptitudeのような他のパッケージマネージャを終了してください。" #~ msgid "Initializing and getting list of updates..." #~ msgstr "アップデートリストを取得中..." @@ -2167,10 +2008,9 @@ msgstr "DFSGに適合しないソフトウェア" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "利用可能なアップデート\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" -#~ "のパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" \ No newline at end of file diff --git a/po/ka.po b/po/ka.po index a6abf913..0dee0d27 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -msgstr "ყოველ დღიურად" +msgstr "ყოველდღიურად" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" @@ -29,7 +29,7 @@ msgstr "ყოველ 2 დღეში" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "კვირეული" +msgstr "ყოველკვირეულად" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" @@ -42,7 +42,7 @@ msgstr "ყოველ %s დღეში" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "ერთ კვირაში" +msgstr "ერთი კვირის შემდგომ" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" @@ -57,38 +57,35 @@ msgstr "ერთი თვის შემდგომ" msgid "After %s days" msgstr "%s დღის შემდეგ" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "განახლებების _დაყენება" +msgstr "%s განახლება" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "მთავარი სერვერი" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "%s სერვერი" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "უახლოესი სერვერი" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "საკუთარი სერვერები" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 @@ -99,15 +96,15 @@ msgstr "პროგრამული განახლებები" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "აქტიური" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(საწყისი კოდი)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "საწყისი კოდი" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -128,12 +125,13 @@ msgid "Error removing the key" msgstr "გასღების წაშლა ვერ მოხერხდა" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"ამორჩეული გასაღების წაშლა ვე რმოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." +"ამორჩეული გასაღების წაშლა ვერ მოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -149,35 +147,34 @@ msgstr "შეიყვანეთ დისკის სახელი" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "მოათავსეთ დისკი დისკწამყვანში:" +msgstr "მოათავსეთ დისკი დისკამძრავში:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "გაფუჭებული პაკეტები" +msgstr "დაზიანებული პაკეტები" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"თქვენს სისტემაში არის დაფუჭებული პაკეტები, რომელთა გამართვა ვერ ხერხდება ამ " -"პროგრამით. ჯერ გამართეთ გაფუჭებული პაკეტები synaptic ან apt-get პროგრამით და " -"შემდეგ გააგრძელეთ." +"თქვენს სისტემაში არის დაზიანებული პაკეტები, რომელთა გამართვა ვერ ხერხდება ამ " +"პროგრამით. ჯერ გამართეთ დაზიანებული პაკეტები synaptic ან apt-get პროგრამით " +"და შემდეგ გააგრძელეთ." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" -msgstr "საჭჳრო მეტა-პაკეტების განახლება ვერ მოხერხდა" +msgstr "საჭირო მეტა-პაკეტების განახლება ვერ მოხერხდა" #: ../DistUpgrade/DistUpgradeCache.py:217 #, fuzzy msgid "A essential package would have to be removed" -msgstr "A არსებითი -სკენ" +msgstr "ამით საჭირო პაკეტი წაიშლება" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" -msgstr "არა" +msgstr "სისტემა ვერ მომზადდა განახლებისათვის" #: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy @@ -187,9 +184,10 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." +"მოხდა დაუდგენელი შეცდომა განახლებისათვის მზადებისას. შეატყობინეთ ეს ხარვეზი " +"'update-manager' პაკეტის საშუალებით, შეტყობინებას დაურთეთ ფაილები " +"/var/log/dist-upgrade/-დან." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" @@ -200,9 +198,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"ვერ ხერხვდება ზოგიერთი პაკეტის ავთენთიფიკაცია. ეს შეიძლება იყოს კავშირის " -"ბრაკი. იქნებ მოგვიანბით კიდევ ერთხელ სცადოთ. ქვევით იხილეთ არა-" -"ავთენთიფიცერული პაკეტების სია." +"ვერ ხერხდება ზოგიერთი პაკეტის ავთენთიფიკაცია. ეს შეიძლება იყოს კავშირის " +"ბრაკი. სცადეთ მოგვიანებით. ქვევით იხილეთ არა-ავთენთიფიცერული პაკეტების სია." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -213,12 +210,12 @@ msgstr "'%s' ვერ დაყენდა" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " +msgstr "" +"საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორც ხარვეზი. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "მეტა-პაკეტი ვერ გამოვიცანით" +msgstr "მეტა-პაკეტი ვერ შეირჩა" #: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy @@ -229,13 +226,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"არა შეიცავს a ან და არა -სკენ ვერსია ის\n" -" ის ან." +"თქვენს სისტემაში არ არის ubuntu-desktop, kubuntu-desktop ან edubuntu-desktop " +"პაკეტებიდან არცერთი, რის გამოც უბუნტუს ვერსიის დადგენა ვერ ხერხდება.\n" +"სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " +"გამოყენებით." #: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" -msgstr "ვერ განხორციელდა -სკენ" +msgstr "ვერ განხორციელდა CD-ს დამატება" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -249,11 +248,11 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "მიმდინარეობს ქეშის წაკითხვა" +msgstr "ქეშის კითხვა" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "ნივიღოთ ქსელიდან მონაცემები განახლების შესახებ?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -262,10 +261,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"განახლების პროგრამას შეუძლია მიიღოს ქსელიდან განახლებები და პაკეტები, " +"რომლებიც არ არის ამ CD-ზე.\n" +"დაეთანხმეთ განახლების მიღებას, ან უარი თქვით, თუ თქვენი ქსელი ძალიან ნელია " +"ან ძვირი." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "არავითარი გამოსადეგი სერვერის ანარეკლი" +msgstr "არ მოინახა შესაბამისი სარკე" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -278,12 +281,18 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"რეპოზიტორიის შესახებ ინფორმაციაში არ არის მითითებული სარკე სისტემის " +"განახლებისათვის. შესაძლოა თქვენ შიდა სარკეს იყენებდეთ, ან ინფორმაცია სარკის " +"შესახებ მოძველებულია.\n" +"\n" +"თუ თქვენ მაინც გინდათ 'sources.list' ფაილის განახლება, დასტურის შემთხვევაში " +"ყველა ჩანაწერი %s'-დან '%s'-მდე განახლდება.\n" +"უარის შემთხვევაში განახლება არ მოხდება." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" -msgstr "გენერაცია ნაგულისხმევი?" +msgstr "გავუშვათ ნაგულისხმევი წყაროების გენერაცია?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -293,10 +302,15 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"თქვენს 'sources.list'-ში არ აღმოჩნდა არც ერთი სათანადო ჩანაწერი '%s'-" +"სთვის.\n" +"\n" +"დავამატოთ ნაგულისხმევი ჩანაწერები '%s'-სთვის? უარის შემთხვევაში განახლება არ " +"მოხდება." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "რეპოზიტორიების ინფორმაცია არასწორეა" +msgstr "რეპოზიტორიების ინფორმაცია არასწორია" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" @@ -309,7 +323,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:308 #, fuzzy msgid "Third party sources disabled" -msgstr "გამორთული" +msgstr "მესამე მხარის წყაროები გამორთულია" #: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy @@ -317,7 +331,9 @@ 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 " "synaptic." -msgstr "-ში სია გამორთული თქვენ პარამეტრები ან." +msgstr "" +"მესამე მხარის ზოგი წყარო sources.list-ში გამორთულია. განახლების შემდეგ " +"შეგეძლებათ მათი ჩართვა 'software-properties' ან synaptic-ის საშუალებით." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -328,8 +344,8 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"განახლებისას მოხდა შეცდომა. ეს როგროც წესი არის კავშირის პრობლემა, შეამოწმეთ " -"თქვენი კავშირი და ცადეთ კიდევ ერთხელ." +"განახლებისას მოხდა შეცდომა. როგორც წესი ეს არის კავშირის პრობლემა, შეამოწმეთ " +"თქვენი კავშირი და სცადეთ კიდევ ერთხელ." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -342,8 +358,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"განახლება შეწყვეტილია. გაათავისუფლეთ არანაკლებ %s ზომის ადგილი %s დისკზე. " +"გამოიყენეთ 'sudo apt-get clean' სანაგვიდან ფაილებისა და წინა ინსტალაციის " +"დროებითი პაკეტების წასაშლელად." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" @@ -351,7 +369,7 @@ msgstr "გნებავთ განახლების დაწყებ #: ../DistUpgrade/DistUpgradeControler.py:460 #, fuzzy msgid "Could not install the upgrades" -msgstr "არა" +msgstr "განახლებების დაყენება ვერ ხერხდება" #: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy @@ -361,23 +379,29 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "ახლა -ში A a." +msgstr "" +"განახლება შეწყვეტილია. სისტემამ, შესაძლოა, დაკარგა მუშაობის უნარი. " +"გაშვებულია აღდგენის პროცესი (dpkg --configure -a).\n" +"\n" +"შეატყობინეთ ხარვეზის შესახებ 'update-manager' პაკეთის საშუალებით, " +"შეტყობინებაში ჩართეთ ფაილები var/log/dist-upgrade/-დან." #: ../DistUpgrade/DistUpgradeControler.py:479 #, fuzzy msgid "Could not download the upgrades" -msgstr "არა" +msgstr "განახლებების ჩამოტვირთვა ვერ ხერხდება" #: ../DistUpgrade/DistUpgradeControler.py:480 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "ახლა ან და " +msgstr "" +"განახლება შეწყვეტილია. შეამოწმეთ ხელახლა ქსელი და საინსტალაციო დისკი. " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "ზოგ პროგრამას მხარდაჭერა აღარა აქვს" #: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy @@ -387,15 +411,19 @@ msgid "" "\n" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." -msgstr "არა და ახლა n t ჩართული -თვის -ში ნაბიჯი" +msgstr "" +"ამ პაკეტებს Canonical Ltd.-ს ნაცვლად საზოგადოება უჭერს მხარს.\n" +"\n" +"თუ თქვენ არა გაქვთ საზოგადოების უზრუნველყოფა (universe), მაშინ შემდეგ ეტაპზე " +"შემოთავაზებული იქნება ამ პაკეტების წაშლა." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "წავშალო მოძველებული პაკეტები?" +msgstr "წავშალოთ მოძველებული პაკეტები?" #: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "ნაბიჯის გა_მოტოვება" +msgstr "ეტაპის გა_მოტოვება" #: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" @@ -404,27 +432,25 @@ msgstr "_წაშლა" #: ../DistUpgrade/DistUpgradeControler.py:563 #, fuzzy msgid "Error during commit" -msgstr "შეცდომა" +msgstr "შეცდომა გადაცემისას" #: ../DistUpgrade/DistUpgradeControler.py:564 #, fuzzy msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "-თვის ინფორმაცია " +msgstr "შეცდომა გასუფთავებისას. დაწვრილებით იხილეთ ქვემოთ. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "" +msgstr "სისტემის საწყისი მდგომარეობის აღდგენა" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "%s'-ის მიღება backport-იდან" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -481,7 +507,6 @@ msgstr "ვეძებ -თვის" msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -498,7 +523,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -510,7 +535,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "ცვლილებების დამტკიცება" @@ -526,60 +550,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 #, fuzzy msgid "The 'diff' command was not found" msgstr "არა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 #, fuzzy msgid "A fatal error occured" msgstr "A შეცდომა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "a და შემცველობა და -ში ახლა თავდაპირველი სია -ში სია." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "A არსებითი -სკენ" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -587,41 +609,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "საათი და ნებისმიერი დრო." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr " ამოშლა %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "დაყენება %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "ჩასაყენებელი განახლება %s" @@ -647,7 +668,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -668,7 +688,6 @@ msgstr "ტოლია დასრულდა და a ტოლია -ს #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -746,6 +765,7 @@ msgid "_Keep" msgstr "_დატოვე" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_ჩაანაცვლე" @@ -782,7 +802,6 @@ msgstr "შეუძლებელია ვერსიის შენიშ msgid "Please check your internet connection." msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ კავშირი." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს" @@ -887,18 +906,15 @@ msgid "" "Please check your Internet connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -914,7 +930,6 @@ msgstr "Ubuntu 5.10 დამატებითი პროგრამებ msgid "Distribution updates" msgstr "განახლება _გაგრძელება" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -939,7 +954,6 @@ msgstr "" msgid "_Check All" msgstr "შ_ემოწმება" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -965,16 +979,15 @@ msgid "Checking for updates" msgstr "განახლებების _დაყენება" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "ახალი ვერსია: %s (ზომა: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "ვერსია %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -999,7 +1012,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" @@ -1013,23 +1025,19 @@ msgid "" msgstr "" "ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1141,10 +1149,15 @@ msgstr "განახლებების _დაყენება" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "ჩასაყენებელი განახლება %s" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "ცვლილებები" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1396,248 +1409,203 @@ msgstr "ფანჯარა ზომა" msgid "Configure the sources for installable software and updates" msgstr "კონფიგურირება და" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 -#, fuzzy, no-c-format +#, fuzzy msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 განახლებები" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "არათავისუფალი (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "არათავისუფალი (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "არათავისუფალი (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "არათავისუფალი (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "არა" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "შეზღუდული" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 -#, fuzzy, no-c-format +#, fuzzy msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/ s s s s s" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "უსაფრთხოება" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 #, fuzzy msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "პროგრამა თავისუფალი დამოკიდებულებანი" -#. CompDescription #: ../data/channels/Debian.info.in:57 #, fuzzy msgid "Non-DFSG-compatible Software" @@ -1690,8 +1658,8 @@ msgstr "პროგრამა" #, fuzzy #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "ის გამოყენება მონიშვნა ყველა ის Synaptic ან sudo -ში a ტერმინალი -სკენ " #~ "განახლება." @@ -1770,4 +1738,4 @@ msgstr "პროგრამა" #~ msgstr "Ubuntu 6.06 LTS განახლებები" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" +#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" \ No newline at end of file diff --git a/po/ko.po b/po/ko.po index 10df3e74..4c875ced 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 11:33+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "한달 후에" msgid "After %s days" msgstr "%s일 후에" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s 업데이트" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "주 서버" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,7 +119,8 @@ msgid "Error removing the key" msgstr "키 삭제 오류" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "선택한 키를 지울 수 없습니다. 버그를 보고하십시오." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -153,8 +151,7 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" -"냅틱이나 apt-get을 사용하여 복구하십시오." +"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시냅틱이나 apt-get을 사용하여 복구하십시오." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -164,7 +161,6 @@ msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" msgid "A essential package would have to be removed" msgstr "필수적인 패키지를 제거해야만 합니다." -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." @@ -176,13 +172,11 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니" -"다.\n" +"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" -"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " +"파일을 포함하여 주십시오." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "패키지 인증 오류" @@ -193,8 +187,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우" -"라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 목록은 다음과 같습니다." +"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 " +"목록은 다음과 같습니다." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -207,7 +201,6 @@ msgid "" "bug. " msgstr "요청한 패키지를 설치할 수 없습니다. 버그를 보고하여 주십시오. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "메타 패키지를 추측할 수 없습니다" @@ -220,10 +213,9 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없" -"으며, 현재 실행중인 우분투의 버전을 알아낼 수 없습니다.\n" -" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니" -"다." +"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없으며, 현재 실행중인 " +"우분투의 버전을 알아낼 수 없습니다.\n" +" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니다." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -238,8 +230,8 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우" -"분투 CD를 사용하고 있었다면 이 버그를 보고해 주십시오.\n" +"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우분투 CD를 사용하고 있었다면 이 버그를 보고해 " +"주십시오.\n" "\n" "오류 메시지:\n" "'%s'" @@ -259,10 +251,8 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 " -"패키지를 받을 수 있습니다.\n" -"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워" -"크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." +"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 패키지를 받을 수 있습니다.\n" +"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -279,15 +269,12 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니" -"다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 오래됐을 때 이러한 문제" -"가 일어날 수 있습니다.\n" +"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 " +"오래됐을 때 이러한 문제가 일어날 수 있습니다.\n" "\n" -"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%" -"s' 항목으로 업데이트 합니다.\n" +"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%s' 항목으로 업데이트 합니다.\n" "'아니오'를 선택하면 업데이트가 취소됩니다." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" @@ -302,8 +289,7 @@ msgid "" msgstr "" "'sources.list'를 검색했지만 '%s'에 적합한 항목을 찾지 못했습니다.\n" "\n" -"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소" -"됩니다." +"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소됩니다." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -313,9 +299,7 @@ msgstr "저장소 정보가 올바르지 않습니다" msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 " -"주십시오." +msgstr "저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -327,9 +311,8 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-" -"properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" -"니다." +"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-properties' 도구나 시냅틱으로 " +"업그레이드 한 후에 다시 사용가능하게 할 수 있습니다." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -340,8 +323,7 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" -"니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." +"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -354,11 +336,9 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 " -"바랍니다. 휴지통을 비우시고 'sudo apt-get clean' 명령으로 이전 설치 과정 중" -"에 사용했던 임시 패키지들을 삭제하시기 바랍니다." +"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 바랍니다. 휴지통을 비우시고 'sudo apt-get " +"clean' 명령으로 이전 설치 과정 중에 사용했던 임시 패키지들을 삭제하시기 바랍니다." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" @@ -375,11 +355,11 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " -"(dpkg --configure -a)를 실행하여 복구하십시오.\n" +"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. (dpkg --configure -a)를 실행하여 " +"복구하십시오.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" -"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " +"파일을 포함하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -389,9 +369,7 @@ msgstr "업그레이를 다운로드 할 수 없습니다." msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" -"업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" -"하십시오. " +msgstr "업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도하십시오. " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -405,11 +383,9 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니" -"티를 통해서 여전히 지원받을 수 있습니다.\n" +"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니티를 통해서 여전히 지원받을 수 있습니다.\n" "\n" -"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 " -"패키지들을 삭제하도록 제안할 것입니다." +"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 패키지들을 삭제하도록 제안할 것입니다." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -431,11 +407,8 @@ msgstr "커밋 도중 오류 발생" msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인" -"할 수 있습니다. " +msgstr "정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인할 수 있습니다. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "시스템을 원래의 상태로 복구하고 있습니다" @@ -446,7 +419,6 @@ msgid "Fetching backport of '%s'" msgstr "'%s'의 백포트를 받고 있습니다" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -481,8 +453,8 @@ msgid "" "bugreport." msgstr "" "패키지 정보를 업데이트한 다음에 필수 패키지 '%s'를 더이상 찾을 수 없습니다.\n" -"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리" -"고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-" +"upgrade/에 있는 파일을 포함하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -500,7 +472,6 @@ msgstr "구식 소프트웨어를 검색하고 있습니다" msgid "System upgrade is complete." msgstr "완전히 시스템을 업그레이드하였습니다." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,7 +487,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "내려받는 중, %li의 %li 파일, 속도 %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "%s분 정도 남음" @@ -528,7 +499,6 @@ msgstr "%li의 %li 파일 내려받는 중" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "변경 사항을 적용하고 있습니다" @@ -543,12 +513,10 @@ 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 bugreport." msgstr "" -"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시" -"오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시" -"오." +"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 " +"/var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -557,53 +525,51 @@ msgstr "" "바뀐 설정 파일 '%s'을(를)\n" "교체하시겠습니까?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' 명령어를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "심각한 오류 발생" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main." -"log 파일과 /var/log/dist-upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드" -"가 중단되었습니다.\n" +"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main.log 파일과 /var/log/dist-" +"upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드가 중단되었습니다.\n" "원래의 sources.list는 /etc/apt/sources.list.distUpgrade에 저장되어 있습니다." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "패키지 %d개를 삭제할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "새로운 패키지 %d개를 설치할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "패키지 %d개를 업그레이드할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -614,41 +580,38 @@ msgstr "" "\n" "총 %s개의 패키지를 다운로드해야 합니다. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에" -"도 취소할 수 없습니다." +msgstr "업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에도 취소할 수 없습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "시스템에 업그레이드할 것이 없습니다. 업그레이드를 취소합니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s 제거" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s 설치" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s 업그레이드" @@ -674,7 +637,6 @@ msgid "%li seconds" msgstr "%li초" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -694,7 +656,6 @@ msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -709,8 +670,7 @@ msgid "" msgstr "" "실행 중인 업그레이드를 취소하시겠습니까?\n" "\n" -"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이" -"드를 계속 하시기를 강력히 건의합니다." +"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이드를 계속 하시기를 강력히 건의합니다." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -769,6 +729,7 @@ msgid "_Keep" msgstr "유지(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "바꾸기(_R)" @@ -804,7 +765,6 @@ msgstr "릴리즈 정보를 다운로드 할 수 없습니다." msgid "Please check your internet connection." msgstr "인터넷 연결 상태를 확인하십시오." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "업그레이드 도구를 실행할 수 없습니다." @@ -846,9 +806,7 @@ msgstr "압축 풀기 실패" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있" -"습니다. " +msgstr "업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -858,9 +816,7 @@ msgstr "확인 실패" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습" -"니다. " +msgstr "업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -870,15 +826,12 @@ msgstr "인증 실패" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니" -"다. " +msgstr "업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" -"%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" +msgstr "%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -901,17 +854,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "중요한 보안 업데이트" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "추천하는 업데이트" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "제안하는 업데이트" @@ -924,7 +874,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "배포판 업데이트" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "기타 업데이트" @@ -946,7 +895,6 @@ msgstr "전체 선택 취소(_U)" msgid "_Check All" msgstr "전체 선택(_C)" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -980,7 +928,6 @@ msgstr "버전 %(old_version)s에서 %(new_version)s(으)로" msgid "Version %s" msgstr "버전 %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -996,16 +943,14 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업" -"그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" -"서 보실 수 있습니다." +"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 " +"http://www.ubuntu.com에서 보실 수 있습니다." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'을(를) 설치할 수 있습니다" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." @@ -1016,26 +961,22 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 " -"\"sudo apt-get install -f\"를 실행하여 이 문제를 먼저 해결하십시오." +"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 \"sudo apt-get install -f\"를 " +"실행하여 이 문제를 먼저 해결하십시오." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "없음" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1050,8 +991,7 @@ msgid "" msgstr "" "업데이트 확인을 직접 해야 합니다.\n" "\n" -"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭" -"의 소프트웨어 소스에서 설정할 수 있습니다." +"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭의 소프트웨어 소스에서 설정할 수 있습니다." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1098,8 +1038,7 @@ msgid "" msgstr "" "배포판 업그레이드를 수행하여 가능한 많은 업데이트를 설치합니다. \n" "\n" -"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에" -"서 실행했기 때문일 수 있습니다." +"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에서 실행했기 때문일 수 있습니다." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1113,9 +1052,7 @@ msgstr "소프트웨어 업데이트" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" -"합니다." +msgstr "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공합니다." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1142,10 +1079,15 @@ msgid "_Install Updates" msgstr "업데이트 설치(_I)" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "업그레이드(_p)" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "변경 사항" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "업데이트" @@ -1175,12 +1117,10 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 " -"설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 우분투 프로젝트로 일주일" -"에 한번씩 익명으로 전송합니다.\n" +"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 " +"우분투 프로젝트로 일주일에 한번씩 익명으로 전송합니다.\n" "\n" -"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위" -"를 매기는데 사용합니다." +"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위를 매기는데 사용합니다." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1268,8 +1208,7 @@ msgid "" msgstr "" "이용할 수 있는 소프트웨어에 대한 정보가 오래되었습니다.\n" "\n" -"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이" -"용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" +"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" "\n" "계속하기 위해서는 인터넷 연결이 필요합니다." @@ -1301,11 +1240,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" +"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" "\n" -"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb " -"http://ftp.debian.org sarge main\"" +"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb http://ftp.debian.org " +"sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1347,8 +1285,7 @@ msgstr "업데이트 관리자" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "" -"현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." +msgstr "현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1360,8 +1297,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 " -"합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 합니다." +"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 " +"합니다." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1389,246 +1326,199 @@ msgstr "창 크기" msgid "Configure the sources for installable software and updates" msgstr "설치할 수 있는 소프트웨어와 업데이트를 위한 소스를 설정" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "커뮤니티에서 관리" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "장치의 독점 드라이버" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "제한된 소프트웨어" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "커뮤니티에서 관리 (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "커뮤니티에서 관리하는 오픈 소스 소프트웨어" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "비자유 드라이버" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "장치의 독점 드라이버 " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "제한된 소프트웨어 (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "우분투 5.10 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "우분투 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog' 씨디롬" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "공식적으로 지원함" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "우분투 5.04 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "우분투 5.04 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "우분투 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "커뮤니티에서 관리 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "비자유 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog' 씨디롬" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "더 이상 공식적으로 지원하지 않음" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "저작권이 제한됨" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "우분투 4.10 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "우분투 4.10 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "우분투 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "데비안 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "데비안 3.1 \"Sarge\" 보안 업데이트" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "데비안 \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "데비안 \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG 호환이 되지만 비자유 소프트웨어에 의존하는 소프트웨어" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by " -#~ "a script, if you replace the file by its latest version." -#~ msgstr "" -#~ "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것" -#~ "을 잃어버릴 것입니다." +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." +#~ msgstr "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것을 잃어버릴 것입니다." +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" -#~ msgstr "" -#~ "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로" -#~ "는 약 %s이(가) 걸립니다." +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" +#~ msgstr "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로는 약 %s이(가) 걸립니다." #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "변경 사항 목록이 아직 없습니다. 잠시 후 다시 시도해 주십시오." @@ -1636,12 +1526,10 @@ msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." -#~ msgstr "" -#~ "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시" -#~ "오." +#~ msgstr "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." #~ msgid "By Canonical supported Open Source software" #~ msgstr "Canonical이 지원하는 오픈 소스 소프트웨어" #~ msgid "By copyright or legal issues restricted software" -#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" +#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" \ No newline at end of file diff --git a/po/ku.po b/po/ku.po index 54e03ec6..316cd309 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-04 06:52+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: ElîxanLoran \n" "Language-Team: Kurdish \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Piştî mehekê" msgid "After %s days" msgstr "Piştî %s roj" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s rojanekirin" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pêşkêşkera Mak" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Di dema rakirina mifteyan de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê yekê weke " "çewtiyekê ragihîne." @@ -170,7 +168,6 @@ msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" msgid "A essential package would have to be removed" msgstr "Divê pakêteke pêwist jê were rakirin" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Rojanekirin nikaribû were hesabkirin" @@ -184,10 +181,9 @@ msgid "" msgstr "" "Dema bilindkirin hesab dikir çewtiyeke ku nayê veçirandin derkete holê.\n" "\n" -"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li /" -"var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." +"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li " +"/var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Di piştrastkirina çend paketan de çewtî derket" @@ -214,7 +210,6 @@ msgstr "" "Pakêta pêwist nehate barkirin. Ji kerema xwe re vê yekê weke çewtiyekê " "ragihîne. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakêta-meta nehate kifşkirin" @@ -296,7 +291,6 @@ msgstr "" "rojanekirin.\n" "Heke tu bibêjî 'Na' wê rojanekirin betal bibe." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Bile çavkaniyên rawêjî pêk bên?" @@ -365,7 +359,6 @@ msgstr "" "bike. Çopa xwe vala bikin û bi 'sudo apt-get clean' pakêtên derbasdar yên " "sazkirinên berê rake." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Tu dixwazî dest bi bilindkirinê bikî?" @@ -437,7 +430,6 @@ msgstr "" "Di dema paqijkirinê de hin pirsgirêk derketin. Ji bo agahiyan ji kerema xwe " "re li peyama jêr binihêre. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Vedigere rewşa pergala orjînal" @@ -448,7 +440,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -456,7 +447,7 @@ msgstr "Bireveberiya paketan tê kontrol kirin" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Amadekrinên nûjenkirinê biserneket" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -482,8 +473,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng '%" -"s' êdî nayê dîtin.\n" +"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng " +"'%s' êdî nayê dîtin.\n" "Dibe ku ev çewtiyeke girîng e, ji kerema xwe re bo pakêta 'update-manager' " "vê çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li " "peyama çewtiyê zêde bike." @@ -504,7 +495,6 @@ msgstr "Li nivîsbariya kevin tê gerandin" msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -518,10 +508,10 @@ msgstr "Rojanekirin temam bû" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "Dosyan dadixe %li daxistin ji %li di %s/s de" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Nêzîka %s ma" @@ -529,11 +519,10 @@ msgstr "Nêzîka %s ma" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "Dosyan dadixe %li daxistin ji %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Guherandin tê bi kar anîn" @@ -552,8 +541,7 @@ msgstr "" "çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li peyama " "xwe ya çewtiyê zêde bike." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -562,25 +550,25 @@ msgstr "" "Pelgeha veavakirinan ya hatiye taybetkirin ya\n" "'%s' bila were guherandin?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Fermana 'diff' nehatiye dîtin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Çewtiyeke giran derket" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ji kerema xwe re vê çewtiyê ragihîne.Dosyeyên ku li /var/log/dist-upgrade/ " @@ -590,30 +578,29 @@ msgstr "" "hate tomarkirin." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s paket dê were rakirin." -msgstr[1] "%s paket dê werin rakirin." +msgstr[0] "%d pakêt dê were rakirin." +msgstr[1] "%d pakêt dê werine rakirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s paket dê were sazkirin" -msgstr[1] "%s paket dê werin sazkirin" +msgstr[0] "Dê %d pakêtên nû were sazkirin." +msgstr[1] "Dê %d pakêtên nû werine sazkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s paket dê were bilindkirin." -msgstr[1] "%s paket dê werin bilindkirin." +msgstr[0] "Dê %d pakêt were bilindkirin" +msgstr[1] "Dê %d pakêt werine bilindkirin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -623,7 +610,7 @@ msgstr "" "\n" "Pêwîst e tu bi tevahî %s daxî. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -631,17 +618,16 @@ msgstr "" "Daxistin û sazkirina bilindkirinê dibe ku bi saetan bidome û dû re jî tu " "nikare betal bike." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -649,17 +635,17 @@ msgstr "" "Ji bo pergala te bilindkirin tuneye. Karê bilindkirinê wê a niha were " "betalkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s rake" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s saz bike" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s bilind bike" @@ -685,7 +671,6 @@ msgid "%li seconds" msgstr "%li çirke" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -706,7 +691,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -726,8 +710,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide destpêkirin" +"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide " +"destpêkirin" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -771,17 +755,18 @@ msgstr "Termînal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Ji nûjenkirinê derkeve" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Bidomîne" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "Bi_parêze" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Bide _ser" @@ -799,7 +784,7 @@ msgstr "Bilindkirinan _Bidomînî" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Destpêkirina nûjenkirinê" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -817,7 +802,6 @@ msgstr "Nîşeyên weşanê nehate daxistin" msgid "Please check your internet connection." msgstr "Ji kerema xwe girêdana înternetê kontrol bike." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Amûra bilindkirinê nikaribû bimeşîne" @@ -913,30 +897,26 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Rojanekirinên ewlekariyê yên girîng" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rojanekirinên têne pêşniyarkirin" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Rojanekirinên hatine pêşniyarkirin" #: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Nivîsbariyên bi paş de şandî" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "Rojanekirinên dîstrîbusiyonê" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Rojanekirinên din" @@ -958,7 +938,6 @@ msgstr "Yekê Jî _Hilnebijêre" msgid "_Check All" msgstr "Hemûyan _Hilbijêrî" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -984,7 +963,7 @@ msgid "Checking for updates" msgstr "Rojanekirin têne venihartin." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" @@ -993,7 +972,6 @@ msgstr "Guhertoya nû: %s (Mezinahî: %s)" msgid "Version %s" msgstr "Guherto %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1018,7 +996,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Weşana belavkariya nû dikare bigihêje '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Pêrista nivîsbariyê xera bûye" @@ -1031,27 +1008,23 @@ msgid "" msgstr "" "Sazkirin an jî rakirina nivîsbariyê qet ne gengaz e. Ji kerema xwe berî her " "tiştî vê pirsgirêkê bi gerînendeyê pakêtan ya \"Synaptic\" and jî bi fermana " -"\"sudo apt-get install -f\" re di termînalê de çareser bike.\r\n" -"\r\n" +"\"sudo apt-get install -f\" re di termînalê de çareser bike. \n" +" \n" "— By ElîxanLoran on 2006-08-25 06:29:14 UTC (2 more)" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ne yek jî" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1074,9 +1047,8 @@ msgid "Not all updates can be installed" msgstr "Di lênihertina CDyê de çewtî" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Dest bi bilindkirinê were kirin?" +msgstr "Rêveberê rojanekirinê tê destpêkirin" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1156,10 +1128,15 @@ msgid "_Install Updates" msgstr "Rojanekirinan _Saz bike" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "_Bilindkirin" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "guhertin" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "rojanekirin" @@ -1233,9 +1210,8 @@ msgstr "Mifteyên peşdanasînî yên belavkariya te paş de vedigerîne" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Taybetmendiyên Nivîsbariyê" +msgstr "Çavkaniyên Nivîsbariyê" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" @@ -1278,6 +1254,13 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" +"Agahiyên nivîsbariyê yên mevcûd ne rojane ye\n" +"\n" +"Ji bo ku tu karibî ji çavkaniyên ku nû lê hatine barkirin yan jî yên " +"guherîne nivîsbarî û rojanekirinan bar bike divê tu agahiyên nivîsbariyê " +"dîsa bar bike.\n" +"\n" +"Ji bo domandinê girêdaneke înternetê ya dixebite pêwist e." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1389,240 +1372,192 @@ msgstr "Mezinahiyê paceyê" msgid "Configure the sources for installable software and updates" msgstr "Ji bo nivîsbarî û rojanekirinên têne sazkirin çavkaniyan veava bike" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yên ji aliyê komekê ber çav hatiye derbaskirin" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Ji bo cîhazan ajokerên ku çavkaniyên wan girtî ne" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Neazad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdroma Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" -msgstr "" +msgstr "Yên ji aliyê koman lê hatine nihêrtin" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 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/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neazad (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Ji bo cîhazan ajokarên xwedî-bawername " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neazad (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Nivîsbariya bi mafên weşan û belavkirinê sînor kirî" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdroma Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Rojanekirinên paş de hatine kişandin" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 -#, fuzzy msgid "Ubuntu 5.10 Security Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirinên Ewlekariyê yên Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 -#, fuzzy msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirina Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "" +msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Cdroma Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Bi piştgiriya fermî" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirinên Ewlekariyên yên Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Rojanekirinên Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" -msgstr "" +msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yên ji aliyê koman ve lê tê nihêrîn (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne-azad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cdroma Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Bi piştgirtiya fermî" +msgstr "Êdi bi awayekî fermî nayê destekkirin" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Mafê kopîkrinê yê sînorkirî" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekariyê" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Rojanekirinên Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" -msgstr "" +msgstr "Ubuntu 4.10 nivîsbariyên bi paş de kişandî (Backports)" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Rojanekirinên Ewlekariyê" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "DFSG-nivîsbariya hevgirtî ya ne azad" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "nivîsbariya hevgirtî ya ne li gorî -DFSG" #~ msgid "Cancel _Download" #~ msgstr "Daxistinê _betal bike" @@ -1650,4 +1585,4 @@ msgstr "" #~ msgstr "Kanal" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/lt.po b/po/lt.po index d1e1d4d6..aa34ab8f 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,15 +55,13 @@ msgstr "Po mėnesio" msgid "After %s days" msgstr "Po %s dienų" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Diegiami atnaujinimai" +msgstr "%s atnaujinimai" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -101,11 +98,11 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Programų pradinis kodas)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Programų pradinis kodas" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -124,12 +121,13 @@ msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Negalima atnaujinti reikiamų metapaketų" msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" @@ -184,7 +181,6 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" @@ -210,7 +206,6 @@ msgid "" msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 #, fuzzy msgid "Can't guess meta-package" @@ -279,10 +274,9 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "Ar sukurti numatytųjų šaltinių sąrašą?" +msgstr "Ar sukurti numatytųjų programinės įrangos saugyklų sąrašą?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -307,7 +301,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "Trečiųjų šalių šaltiniai išjungti" +msgstr "Trečiųjų šalių programinės įrangos saugyklos išjungtos" #: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy @@ -344,7 +338,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" @@ -420,7 +413,6 @@ msgstr "" "Išvalymo metu iškilo problema. Daugiau informacijos rasite žemiau esančiame " "pranešime. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Perkraunama sistema" @@ -431,7 +423,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -461,7 +452,7 @@ msgid "Invalid package information" msgstr "Netinkama paketo informacija" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -489,7 +480,6 @@ msgstr "Ieškoma pasenusios programinės įrangos" msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -501,24 +491,23 @@ msgid "Fetching is complete" msgstr "Atnaujinimas užbaigtas" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Atsiunčiamas failas %li iš %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Pritaikomi pakeitimai" @@ -534,9 +523,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -544,62 +532,61 @@ msgstr "" "Ar pakeisti konfigūracijos bylą\n" "„%s“?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Nerasta komanda „diff“" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Įvyko lemtinga klaida" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Praneškite apie tai kaip klaidą ir prie pranešimo pridėkite „/var/log/dist-" "upgrade.log“ bei „/var/log/dist-upgrade-apt.log“ bylas. Atnaujinimas dabar " "bus nutrauktas.\n" -"Jūsų originalioji „sources.list“ byla buvo išsaugota „/etc/apt/sources.list." -"distUpgrade“ aplanke." +"Jūsų originalioji „sources.list“ byla buvo išsaugota " +"„/etc/apt/sources.list.distUpgrade“ aplanke." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bus pašalintas %s paketas." msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bus įdiegtas %s naujas paketas." msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bus atnaujintas %s paketas." msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -609,7 +596,7 @@ msgstr "" "\n" "Turite atsisiųsti viso %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -617,35 +604,34 @@ msgid "" msgstr "" "Atnaujinimas gali užtrukti keletą valandų ir vėliau jo negalima atšaukti." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Pašalinti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Įdiegti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Atnaujinti %s" @@ -671,7 +657,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -693,7 +678,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -714,8 +698,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš naujo" +"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš " +"naujo" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -772,6 +756,7 @@ msgid "_Keep" msgstr "_Palikti" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Pa_keisti" @@ -809,7 +794,6 @@ msgstr "Nepavyko atsiųsti laidos informacijos" msgid "Please check your internet connection." msgstr "Patikrinkite savo Interneto ryšį." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nepavyko paleisti atnaujinimo priemonės" @@ -883,66 +867,58 @@ msgstr "" "serverio problema. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" +msgstr "Atsiunčiamas failas %(current)li iš %(total)li, %(speed)s/s greičiu" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" +msgstr "Atsiunčiamas failas %(current)li iš %(total)li" #: ../UpdateManager/UpdateManager.py:206 -#, fuzzy msgid "The list of changes is not available" -msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." +msgstr "Pakeitimų sąrašas neprieinamas" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." +msgstr "" +"Pakeitimų sąrašas kol kas neprieinamas.\n" +"Pabandykite vėliau." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "Nepavyko atsiųsti pakeitimų sąrašo. Patikrinkite Interneto ryšį." +msgstr "" +"Nepavyko atsiųsti pakeitimų sąrašo. \n" +"Patikrinkite Interneto ryšį." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 -#, fuzzy msgid "Important security updates" -msgstr "Ubuntu 5.10 saugumo atnaujinimai" +msgstr "Svarbūs saugumo atnaujinimai" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Rekomenduojami atnaujinimai" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 -#, fuzzy msgid "Proposed updates" -msgstr "Diegiami atnaujinimai" +msgstr "Testuojami atnaujinimai" #: ../UpdateManager/UpdateManager.py:241 -#, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Naujos programos" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "_Tęsti atnaujinimą" +msgstr "Distributyvo atnaujinimai" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 -#, fuzzy msgid "Other updates" -msgstr "Diegiami atnaujinimai" +msgstr "Kiti atnaujinimai" #: ../UpdateManager/UpdateManager.py:478 #, python-format @@ -963,14 +939,13 @@ msgstr "" msgid "_Check All" msgstr "_Patikrinti" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" @@ -986,21 +961,19 @@ msgid "Update is complete" msgstr "Atnaujinimas užbaigtas" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "Diegiami atnaujinimai" +msgstr "Ieškoma atnaujinimų" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nauja versija: %s (Dydis: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "Versija %s:" +msgstr "Versija %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1008,7 +981,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" -msgstr "Jūsų distribucija daugiau nebepalaikoma" +msgstr "Jūsų distributyvas daugiau nebepalaikomas" #: ../UpdateManager/UpdateManager.py:844 msgid "" @@ -1023,9 +996,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Nauja distributyvo versija '%s' yra išleista" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" @@ -1040,23 +1012,19 @@ msgstr "" "pasinaudokite „Synaptic“ arba terminale įvykdykite komandą „sudo apt-get " "install -f“, norėdami ištaisyti šią problemą." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1083,8 +1051,8 @@ msgstr "" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"Klaida skanuojant CD\n" -"\n" +"Klaida skanuojant CD \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1168,10 +1136,15 @@ msgstr "Į_diegti atnaujinimus" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "At_naujinti" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Pakeitimai" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1426,253 +1399,197 @@ msgstr "" "Nustatykite programinės įrangos įdiegimo šaltinius bei atnaujinimus iš " "interneto" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Prižiūrima bendruomenės (Universe)" +msgstr "Prižiūrima bendruomenės" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Ne Laisva (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CD diskas su Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 „Dapper Drake“" +msgstr "Ubuntu 6.06 LTS „Dapper Drake“" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Prižiūrima bendruomenės (Universe)" +msgstr "Prižiūrima bendruomenės (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Prižiūrima bendruomenės (Universe)" +msgstr "Bendruomenės prižiūrima laisva programinė įranga" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ne Laisva (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Nuosavybinės įrenginių valdyklės " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ne Laisva (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 „Dapper Drake“" +msgstr "CD diskas su Ubuntu 6.06 LTS „Dapper Drake“" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Naujos ir atnaujintos programos" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 „Breezy Badger“" +msgstr "CD diskas su Ubuntu 5.10 „Breezy Badger“" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Naujos programos Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 „Breezy Badger“" +msgstr "Ubuntu 5.04 „Hoary Hedgehog“" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "CD diskas Ubuntu 5.04 „Hoary Hedgehog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficialiai palaikoma" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 saugumo atnaujinimai" +msgstr "Ubuntu 5.04 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Ubuntu 5.04 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Naujos programos Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 „Breezy Badger“" +msgstr "Ubuntu 4.10 „Warty Warthog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne Laisva (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "CD diskas su Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Apribotos autorinės teisės" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 saugumo atnaujinimai" +msgstr "Ubuntu 4.10 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Ubuntu 4.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Naujos programos Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 „Sarge“ saugumo atnaujinimai" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian „Etch“ (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.lt.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian „Sid“ (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +msgstr "" +"Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" @@ -1696,8 +1613,7 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atnaujinama į Ubuntu 6.06 LTS" +#~ "Atnaujinama į Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1719,21 +1635,21 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "" #~ "Ieškoma galimų atnaujinimų\n" #~ "\n" -#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti " -#~ "saugumo spragas bei suteikti naujas funkcijas." +#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " +#~ "spragas bei suteikti naujas funkcijas." #~ msgid "Oficially supported" #~ msgstr "Prižiūrima oficialiai" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Kai kuriems atnaujinimams reikia pašalinti programinę įrangą. Naudokitės " #~ "funkcija „Žymėti visus atnaujinimus“ paketų tvarkyklėje „Synaptic­“ arba " -#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų " -#~ "sistema būtų visiškai atnaujinta." +#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų sistema " +#~ "būtų visiškai atnaujinta." #~ msgid "The following updates will be skipped:" #~ msgstr "Šie atnaujinimai nebus įdiegti:" @@ -1811,8 +1727,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #, fuzzy #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Skanuojant Jūsų saugyklos informaciją nebuvo rasta tinkamo atnaujinimo " #~ "įrašo.\n" @@ -1824,19 +1740,17 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "Skyriai:" #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Jūs turite patys įkelti naujausią informaciją apie atnaujinimus\n" +#~ "Jūs turite patys įkelti naujausią informaciją apie " +#~ "atnaujinimus\n" #~ "\n" #~ "Jūsų sistema automatiškai neieško atnaujinimų. Šią elgseną galite " -#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos " -#~ "savybės“." +#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos savybės“." #~ msgid "Reload the latest information about updates" -#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" +#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" \ No newline at end of file diff --git a/po/lv.po b/po/lv.po index 71224185..f1bfe622 100644 --- a/po/lv.po +++ b/po/lv.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: lp-upd-manager-lv\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 19:12+0000\n" -"Last-Translator: mixat \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-09-05 20:00+0000\n" +"Last-Translator: Raivis Dejus \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +58,6 @@ msgstr "Pēc viena mēneša" msgid "After %s days" msgstr "Pēc %s dienām" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -66,7 +65,6 @@ msgstr "%s atjauninājumi" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -76,7 +74,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Galvenais serveris" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,7 +123,8 @@ msgid "Error removing the key" msgstr "Kļūda aizvācot atslēgu" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Jūsu izvēlēto atslēgu nevar noņemt. Lūdzu, ziņojiet par šo kļūdu." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -163,7 +161,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nevar aprēķināt atjauninājumu" @@ -176,7 +173,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -199,7 +195,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -259,7 +254,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -316,7 +310,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -379,7 +372,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -390,7 +382,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -441,7 +432,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,7 +447,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -469,7 +459,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -485,39 +474,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -525,7 +512,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -533,7 +520,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -541,7 +528,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -549,39 +536,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -607,7 +593,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -627,7 +612,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -698,6 +682,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Aizvietot" @@ -733,7 +718,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -823,17 +807,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -846,7 +827,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -868,7 +848,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -904,7 +883,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -926,7 +904,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -938,23 +915,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nekas" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1051,10 +1024,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1278,232 +1255,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiāli atbalstītie" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Sabiedrības uzturētie (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Maksas (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Saistītie autortiesību" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Select _All" -#~ msgstr "Izvēlēties _Visu" +#~ msgstr "Izvēlēties _Visu" \ No newline at end of file diff --git a/po/mk.po b/po/mk.po index c7faea21..880eecd4 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" @@ -56,15 +56,13 @@ msgstr "После еден месец" msgid "After %s days" msgstr "После %s дена" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Инсталирам надградби..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -128,7 +125,8 @@ msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." @@ -169,7 +167,6 @@ msgstr "Не може да се надградат потребните мета msgid "A essential package would have to be removed" msgstr "Важен пакет мора да се отстрани" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да се одреди надградбата" @@ -185,7 +182,6 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при автентикација на некои пакети" @@ -213,7 +209,6 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не може да се погоди мета пакетот" @@ -281,7 +276,6 @@ msgstr "" "изберете „Да“, ќе ги надградам '%s' до '%s' записи.\n" "Ако изберете „не“, надградбата ќе прекине." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" @@ -295,8 +289,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за '%" -"s'.\n" +"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за " +"'%s'.\n" "\n" "Дали треба стандардните записи за '%s' да бидат додадени? Ако изберете „Не“, " "надградувањето ќе прекини." @@ -352,7 +346,6 @@ msgstr "" "на %s. Испразнете го ѓубрето и отстранете ги привремените пакети или " "поранешни инсталации со помош на 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Дали сакате да ја започнете надградбата?" @@ -420,7 +413,6 @@ msgstr "" "Се случи некој проблем при расчистувањето. Видете ја пораката подолу за " "повеќе информации. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -431,7 +423,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -488,7 +479,6 @@ msgstr "Барам застарен софтвер" msgid "System upgrade is complete." msgstr "Надградбата на системот е завршена." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -504,7 +494,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -516,7 +506,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -533,39 +522,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Командата „diff“ не беше пронајдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Се случи фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -573,7 +560,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -581,7 +568,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -589,7 +576,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -597,42 +584,41 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да спречите загуба на податоци, затворете ги сите отворени апликации и " "документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Отстрани %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Надгради %s" @@ -658,7 +644,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -680,7 +665,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -757,6 +741,7 @@ msgid "_Keep" msgstr "_Чувај" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Освежи" @@ -793,7 +778,6 @@ msgstr "Не можам да ги преземам белешките за из msgid "Please check your internet connection." msgstr "Ве молам проверете ја Вашата интернет врска." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не можам да ја извршам алатката за надградба" @@ -897,18 +881,15 @@ msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Безбедносни надградби за Debian Stable" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -924,7 +905,6 @@ msgstr "Надградби за Убунту 5.10" msgid "Distribution updates" msgstr "Инсталирам надградби..." -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -948,14 +928,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy, python-format +#, fuzzy msgid "Download size: %s" msgstr "Преземам промени" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Инсталирам надградби..." @@ -981,11 +960,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Верзија %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1003,15 +981,14 @@ msgid "" "information on upgrading." msgstr "" "Повеќе нема да добивате безбедносни поправки или критични надградби. " -"Надградете го системот на понова верзија на Ubuntu Linux. Видете на http://" -"www.ubuntu.com за повеќе информации за надградувањето." +"Надградете го системот на понова верзија на Ubuntu Linux. Видете на " +"http://www.ubuntu.com за повеќе информации за надградувањето." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Новото издание на дистрибуцијата, '%s', е достапно" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексот на софтвер е расипан" @@ -1026,23 +1003,19 @@ msgstr "" "менаџерот за пакети Синаптик или прво извршете „sudo apt-ge install -f“ во " "терминал за да го надминете овој проблем." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1143,10 +1116,15 @@ msgstr "Инсталирам надградби..." #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Н_адгради" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1305,8 +1283,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Внесете ја комплетната линија за APT складиштето за да го додадете\n" +"Внесете ја комплетната линија за APT складиштето за да го " +"додадете\n" "\n" "APT линијата го содржи типот, локацијата и содржината на складиштето за на " "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " @@ -1396,253 +1374,209 @@ msgstr "Големината на прозорецот" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Надградби за Убунту 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Додатен софтвер" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Неслободно (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Неслободно (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Безбедносни надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официјално поддржано" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Безбедносни надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Неслободно (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официјално поддржано" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Безбедносни надградби за Убунту 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Надградби за Убунту 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Надградби за Убунту 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Безбедносни надградби за Debian Stable" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian Testing" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian Non-US (Unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-компатибилен софтвер со неслободни зависности" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-компатибилен софтвер" @@ -1670,8 +1604,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го " -#~ "ова како бубачка." +#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " +#~ "како бубачка." #, fuzzy #~ msgid "Hide details" @@ -1777,13 +1711,13 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ "Внесете ја комплетната линија за APT складиштето за да го " #~ "додадете\n" #~ "\n" -#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за " -#~ "на пример \"deb http://ftp.debian.org sarge main\". Во " -#~ "документацијата можете да најдете детален опис на синтаксата." +#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за на " +#~ "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " +#~ "можете да најдете детален опис на синтаксата." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Додајте нова датотека со клуч во доверливиот привезок. Осигурајте се дека " #~ "сте го добиле клучот преку безбеден канал и дека му верувате на неговиот " @@ -1817,8 +1751,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Отстрани го избраниот клуч од доверливиот привезок." #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Врати ги стандардните клучеви на дистрибуцијата. Ова нема да ги смени " #~ "клучевите инсталирани од корисникот." @@ -1853,8 +1787,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Достапни надградби\n" #~ "\n" @@ -1946,8 +1880,7 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr[2] "Избравте %s пакети за надградба, со големина од %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избравте %s од %s пакет за надградба, со големина од %s" #~ msgstr[1] "Избравте %s од %s пакети за надградба, со големина од %s" #~ msgstr[2] "Избравте %s од %s пакети за надградба, со големина од %s" @@ -1962,11 +1895,11 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Веќе работи друг менаџер за пакети" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Можете да работите само со една апликација за менаџмент на пакети " -#~ "одеднаш. Ве молам прво исклучете ја оваа апликацијата." +#~ "Можете да работите само со една апликација за менаџмент на пакети одеднаш. " +#~ "Ве молам прво исклучете ја оваа апликацијата." #~ msgid "Updating package list..." #~ msgstr "Ја ажурирам листата на пакети..." @@ -1982,17 +1915,17 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Ве молам надградете до понова верзија на Убунту Линукс. Верзијата на која " -#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни " -#~ "поправки и други технички надградби. Ве молам побарајте информации за " -#~ "надградба на http://www.ubuntulinux.org." +#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни поправки " +#~ "и други технички надградби. Ве молам побарајте информации за надградба на " +#~ "http://www.ubuntulinux.org." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Постои ново издание објавено под кодното име '%s'. Ве молам побарајте ги " #~ "инструкциите за надградба на http://www.ubuntulinux.org." @@ -2001,4 +1934,4 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Никогаш пак не ја покажувај поракава" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." +#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." \ No newline at end of file diff --git a/po/ms.po b/po/ms.po index b6e8ea95..45a0d648 100644 --- a/po/ms.po +++ b/po/ms.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Selepas satu bulan" msgid "After %s days" msgstr "Selepas %s hari" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,13 +121,14 @@ msgid "Error removing the key" msgstr "Ralat semasa mengeluarkan kekunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Kekunci yang anda pilih tidak dapat di keluarkan. Sila laporkan ini sebagai " "ralat pepijat." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -169,7 +167,6 @@ msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" @@ -185,7 +182,6 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ralat mengesahkan sesetengah pakej" @@ -213,7 +209,6 @@ msgstr "" "Pakej yang diperlukan tidak dapat dipasang. Sila laporkan ini sebagai ralat " "pepijat. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." @@ -284,25 +279,24 @@ msgstr "" "mirror telah lapuk.\n" "\n" "Adakah anda tetap mahu menulis semula fail 'Sources.list' anda? Jika anda " -"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada '%" -"s'.\n" +"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada " +"'%s'.\n" "Jika anda memilih 'tidak' kemaskinian akan dibatalkan." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:267 -#, fuzzy, python-format +#, fuzzy msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas 'sources." -"list' anda.\n" +"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas " +"'sources.list' anda.\n" "\n" "Adakah kemasukan default untuk '%s' perlu ditambah? Jika anda memilih " "'Tidak' kemaskinian akan dibatalkan." @@ -363,7 +357,6 @@ msgstr "" "cakera keras %s anda. Kosong dan padamkan pakej-pakej sementara dari " "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" @@ -436,7 +429,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -447,7 +439,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -501,7 +492,6 @@ msgstr "Mencari perisian yang lapuk" msgid "System upgrade is complete." msgstr "Naiktaraf sistem sempurna." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -517,7 +507,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -529,7 +519,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -545,60 +534,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" msgstr[1] "Satu pakej yang perlu terpaksa dikeluarkan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -606,39 +593,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." +msgstr "" +"Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Buang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Pasang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Naiktaraf %s" @@ -664,7 +651,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -684,7 +670,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -756,6 +741,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -791,7 +777,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -881,17 +866,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -904,7 +886,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -926,7 +907,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -961,7 +941,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -983,7 +962,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -995,23 +973,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1116,10 +1090,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Naiktaraf %s" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1341,233 +1320,188 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Some software no longer officially supported" -#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." +#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." \ No newline at end of file diff --git a/po/nb.po b/po/nb.po index ffbc5c39..578df94b 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" @@ -55,15 +55,13 @@ msgstr "Etter en måned" msgid "After %s days" msgstr "Etter %s dager" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Installerer oppdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,10 +72,9 @@ msgstr "" msgid "Main server" msgstr "Hovedtjener" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 -#, fuzzy, python-format +#, fuzzy msgid "Server for %s" msgstr "Tjener for %s" @@ -131,11 +128,13 @@ msgid "Error removing the key" msgstr "Kunne ikke fjerne nøkkelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -174,7 +173,6 @@ msgstr "Kan ikke oppgradere nødvendige meta-pakker" msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" @@ -190,7 +188,6 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" @@ -217,7 +214,6 @@ msgid "" msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" @@ -291,7 +287,6 @@ msgstr "" "alle forekomster av '%s' endres til '%s'.\n" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" @@ -365,7 +360,6 @@ msgstr "" "papirkurven og fjern midlertidige pakker fra tidligere installasjoner ved å " "bruke 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" @@ -441,7 +435,6 @@ msgstr "" "Et problem oppstod under opprydningen. Vennligst se meldingen under for mer " "informasjon. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" @@ -452,7 +445,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -482,7 +474,7 @@ msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -510,7 +502,6 @@ msgstr "Søker etter utdatert programvare" msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -522,24 +513,23 @@ msgid "Fetching is complete" msgstr "Oppdateringen er fullført" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Laster ned fil %li av %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "Rundt %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Laster ned fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Lagrer endringer" @@ -555,9 +545,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -565,57 +554,56 @@ msgstr "" "Vil du erstatte konfigurasjonsfilen\n" "'%s?'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' ble ikke funnet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "En uopprettelig feil oppsto" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og /" -"var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" +"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og " +"/var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" "Din orginale sources.list ble lagret i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -625,7 +613,7 @@ msgstr "" "\n" "Du må laste ned totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -634,45 +622,44 @@ msgstr "" "Oppgraderingen kan ta flere timer og kan ikke avbrytes på noe senere " "tidspunkt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Oppgradér %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Rundt %li dager, %li timer og %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Rundt %li timer og %li minutter gjenstår" @@ -687,7 +674,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -709,7 +695,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -787,6 +772,7 @@ msgid "_Keep" msgstr "_Ta vare på" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Erstatt" @@ -823,7 +809,6 @@ msgstr "Kunne ikke laste ned utgivelsesnotatene" msgid "Please check your internet connection." msgstr "Vennligst kontrollér internettforbindelsen." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke kjøre oppgraderingsverktøyet" @@ -899,12 +884,12 @@ msgstr "" "nettverket eller med tjeneren. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laster ned filen %li av %li med %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Laster ned filen %li av %li med %s/s" @@ -929,19 +914,16 @@ msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 #, fuzzy msgid "Recommended updates" msgstr "Anbefalte oppdateringer" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -957,7 +939,6 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Gjenoppta oppgradering" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -982,7 +963,6 @@ msgstr "" msgid "_Check All" msgstr "Sjekk" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1009,16 +989,15 @@ msgid "Checking for updates" msgstr "Sjekker for tilgjengelige oppdateringer" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny versjon: %s (Størrelse: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Versjon %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1035,15 +1014,14 @@ msgid "" "information on upgrading." msgstr "" "Du vil ikke lenger motta flere sikkerhetsmessige eller kritiske " -"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." -"ubuntu.com for mer informasjon om oppgradering." +"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se " +"http://www.ubuntu.com for mer informasjon om oppgradering." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." @@ -1058,23 +1036,19 @@ msgstr "" "pakkehåndteringsprogrammet \"Synaptic\" eller kjør kommandoen \"sudo apt-get " "install -f\" i en terminal for å løse denne situasjonen." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1185,10 +1159,15 @@ msgstr "_Installerer oppdateringer" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "O_ppgrader" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1445,250 +1424,206 @@ msgstr "Vindusstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Sett opp programvarekanaler og oppdateringer" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Oppdateringer" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidratt programvare" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Oppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offisielt støttet" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Oppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Noe programvare er ikke lenger offisielt støttet" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhetsoppdateringer" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" @@ -1697,6 +1632,7 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "US eksport begrenset programvare" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Laster ned fil %li av %li ved ukjent hastighet" @@ -1720,8 +1656,7 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Oppgraderer til Ubuntu 6.06 LTS" +#~ "Oppgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1742,25 +1677,26 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Analyserer systemet\n" #~ "\n" -#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer " -#~ "og gir deg ny funksjonalitet." +#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer og " +#~ "gir deg ny funksjonalitet." #~ msgid "Oficially supported" #~ msgstr "Offisielt støttet" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk " -#~ "funksjonen \"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet " -#~ "\"Synaptic\" eller kjør kommandoen \"sudo apt-get dist-upgrade\" i en " -#~ "terminal for å oppgradere systemet fullstendig." +#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk funksjonen " +#~ "\"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller " +#~ "kjør kommandoen \"sudo apt-get dist-upgrade\" i en terminal for å oppgradere " +#~ "systemet fullstendig." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende pakker vil ikke bli oppgradert:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Rundt %li sekunder gjenstår" @@ -1836,8 +1772,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Backports for Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Fant ikke noen gyldig oppføring for oppgradering ved lesing av " #~ "arkivinformasjon.\n" @@ -1849,8 +1785,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du " -#~ "gjøre dette nå?" +#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du gjøre " +#~ "dette nå?" #~ msgid "Sections" #~ msgstr "Seksjoner" @@ -1902,13 +1838,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Autentiseringsnøkler\n" #~ "\n" -#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. " -#~ "Nøkler gjør det mulig å kontrollere integriteten til programvare som blir " -#~ "lastet ned." +#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. Nøkler " +#~ "gjør det mulig å kontrollere integriteten til programvare som blir lastet " +#~ "ned." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Legg til en ny nøkkelfil til den sikre nøkkelringen. Vær sikker på at du " #~ "mottok nøkkelen over en sikker kanal og at du stoler på eieren. " @@ -1939,8 +1875,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Maksimum størrelse i MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "Gjenoppret nøklene som kom med distri" #~ msgid "Set _maximum size for the package cache" @@ -1970,13 +1906,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Tilgjengelige oppdateringer\n" #~ "\n" -#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke " -#~ "på «Installer»-knappen." +#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke på " +#~ "«Installer»-knappen." #~ msgid "Cancel downloading the changelog" #~ msgstr "Avbryt nedlasting av endringslogg" @@ -2052,8 +1988,7 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr[1] "Du har valgt alle de %s oppdaterte pakkene, total størrelse %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Du har valgt %s av %s oppdaterte pakker, størrelse %s" #~ msgstr[1] "Du har valgt %s av de %s oppdaterte pakkene, total størrelse %s" @@ -2061,8 +1996,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Oppdateringene blir tilført." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Du kan bare kjøre et pakkehåndteringsprogram samtidig. Lukk det andre " #~ "programmet først." @@ -2078,19 +2013,19 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får " -#~ "ikke sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. " -#~ "Se http://www.ubuntulinux.org for informasjon om oppgradering." +#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får ikke " +#~ "sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. Se " +#~ "http://www.ubuntulinux.org for informasjon om oppgradering." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "En ny versjon med kodenavnet «%s» er tilgjengelig. Se http://www. " #~ "ubuntulinux.org/ for instruksjoner om oppgradering." @@ -2123,9 +2058,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the 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." +#~ "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." \ No newline at end of file diff --git a/po/ne.po b/po/ne.po index 2208de09..286556bc 100644 --- a/po/ne.po +++ b/po/ne.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" "MIME-Version: 1.0\n" @@ -57,15 +57,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -128,8 +125,11 @@ msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -165,7 +165,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,9 +176,10 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,9 +201,10 @@ msgstr "" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -263,7 +264,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -321,7 +321,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -384,7 +383,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -395,7 +393,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -413,7 +410,9 @@ 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/dist-" "upgrade/ in the bugreport." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -450,7 +449,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -466,7 +464,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -478,7 +476,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -495,60 +492,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -556,40 +551,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -615,7 +609,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -635,7 +628,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,6 +699,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "फेरि लोड गर्नुहोस" @@ -743,7 +736,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -752,7 +744,9 @@ msgstr "" #, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" #: ../UpdateManager/DistUpgradeFetcher.py:171 #, fuzzy @@ -837,20 +831,18 @@ msgstr "युबन्टुको एउटा नयाँ विमोचन msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +msgstr "" +"परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -866,7 +858,6 @@ msgstr "युबन्टु ५.०४ अद्यावधिकहरु" msgid "Distribution updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -890,14 +881,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy, python-format +#, fuzzy msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" @@ -922,11 +912,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "संस्करण %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -949,7 +938,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -961,23 +949,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1076,10 +1060,15 @@ msgstr "स्तरवृद्धिहरु स्थापना गर् #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "स्तरवृद्धि समाप्त" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "परिवर्तनहरु" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1238,11 +1227,12 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस\n" +"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट " +"गर्नुहोस\n" "\n" -"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि \"deb " -"http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य संरचनाको एउटा " -"विस्तृत विवरण पाउन सक्नुहुन्छ" +"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि " +"\"deb http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य " +"संरचनाको एउटा विस्तृत विवरण पाउन सक्नुहुन्छ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1326,256 +1316,211 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "योगदान गरिएको सफ्टवेयर" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "नन-फ्री (बहुभर्स)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "कार्यालय बाट समर्थित" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "कार्यालय बाट समर्थित" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "निषेधित प्रतिलिपि अधिकार" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1607,7 +1552,8 @@ msgstr "" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +#~ "दिनुहोस" #, fuzzy #~ msgid "Hide details" @@ -1663,11 +1609,11 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति " -#~ "भण्डारण गरिएको छ. बचत गर्नुहोस. \n" +#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप " +#~ "प्रति भण्डारण गरिएको छ. बचत गर्नुहोस. \n" #~ "\n" -#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड " -#~ "गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" +#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची " +#~ "फेरि लोड गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" #, fuzzy #~ msgid "Sections" @@ -1721,16 +1667,18 @@ msgstr "" #~ msgstr "" #~ "प्रमाणीकरण कुञ्जिहरु\n" #~ "\n" -#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले डाउनलोड " -#~ "गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले संभव पार्दछ" +#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले " +#~ "डाउनलोड गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले " +#~ "संभव पार्दछ" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त हुनुहोस कि तपाईंले " -#~ "एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं मालिकलाइ विश्वास गर्नुहुन्छ. " +#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त " +#~ "हुनुहोस कि तपाईंले एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं " +#~ "मालिकलाइ विश्वास गर्नुहुन्छ. " #, fuzzy #~ msgid "Add repository..." @@ -1759,11 +1707,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले प्रयोगकर्ता " -#~ "स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" +#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले " +#~ "प्रयोगकर्ता स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" #~ msgid "Set _maximum size for the package cache" #~ msgstr "प्याकेज क्यासको लागि अधिकतम आकार सेट गर्नुहोस" @@ -1790,13 +1738,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "उपलब्ध अद्यावधिकहरु\n" #~ "\n" -#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना बटन प्रयोग " -#~ "गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" +#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना " +#~ "बटन प्रयोग गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" #~ msgid "Cancel downloading the changelog" #~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस" @@ -1843,11 +1791,11 @@ msgstr "" #~ msgstr "स्तरवृद्धिहरु लागु हुँदैछन" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन सक्नुहुन्छ.कृपया पहिला " -#~ "यो अन्य अनुप्रयोग बन्द गर्नुहोस" +#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन " +#~ "सक्नुहुन्छ.कृपया पहिला यो अन्य अनुप्रयोग बन्द गर्नुहोस" #~ msgid "Updating package list..." #~ msgstr "प्याकेज सुची स्तरवृद्धि गर्दै" @@ -1861,19 +1809,20 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले चलाइरहेको संस्करण ले " -#~ "सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त गर्नेछैन. कृपया स्तरवृद्धि जानकारी को " -#~ "लागि http://www.ubuntulinux.org हेर्नुहोस" +#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले " +#~ "चलाइरहेको संस्करण ले सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त " +#~ "गर्नेछैन. कृपया स्तरवृद्धि जानकारी को लागि http://www.ubuntulinux.org " +#~ "हेर्नुहोस" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को लागि://" -#~ "www.ubuntulinux.org/ हेर्नुहोस." +#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को " +#~ "लागि://www.ubuntulinux.org/ हेर्नुहोस." #~ msgid "Never show this message again" #~ msgstr "यो संदेश फेरि कहिले पनि नदेखाउनुहोस" @@ -1894,8 +1843,8 @@ msgstr "" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया स्थिति " -#~ "ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" +#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया " +#~ "स्थिति ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "सबै प्याकेजहरु स्तरवृद्धि गर्न संभव छैन" @@ -1903,12 +1852,12 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै प्याकेजहरुको स्थापन " -#~ "र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" " -#~ "अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग गर्नुहोस" +#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै " +#~ "प्याकेजहरुको स्थापन र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि " +#~ "साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग " +#~ "गर्नुहोस" #~ msgid "Initializing and getting list of updates..." -#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" +#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" \ No newline at end of file diff --git a/po/nl.po b/po/nl.po index 412ea2ae..d43312ff 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Na één maand" msgid "After %s days" msgstr "Na %s dagen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hoofdserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -90,15 +87,13 @@ msgstr "Andere servers" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Software-updates" +msgstr "Softwarekanaal" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 -#, fuzzy msgid "Active" -msgstr "actief" +msgstr "Actief" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" @@ -127,20 +122,21 @@ msgid "Error removing the key" msgstr "Fout bij het verwijderen van de sleutel" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "De door u geselecteerde sleutel kon niet verwijderd worden. Gelieve dit als " "fout te melden." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Fout tijdens het lezen van de cd↵\n" -"↵\n" +"Fout bij het lezen van de cd\n" +"\n" "%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 @@ -172,23 +168,22 @@ msgstr "Kan de vereiste meta-pakketten niet upgraden" msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. " -"Gelieve dit als fout te rapporteren." +"Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem.\n" +"\n" +"Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " +"voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" @@ -217,13 +212,11 @@ msgstr "" "Het was niet mogelijk om een vereist pakket te installeren. Gelieve dit als " "fout te rapporteren. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,19 +225,17 @@ msgid "" "before proceeding." msgstr "" "Uw systeem bevat geen van de volgende pakketten:\n" -"ubuntu-desktop, kubuntu-desktop of edubuntu-desktop\n" -"Hierdoor was het niet mogelijk om de versie van Ubuntu te detecteren.\n" -"\n" -"Installeer eerst één van de bovenstaande pakketten met Synaptic of apt-get " +"ubuntu-desktop, kubuntu-desktop of edubuntu-desktop, waardoor het niet " +"mogelijk is om uw versie van Ubuntu te bepalen.\n" +" Installeer eerst één van de bovenstaande pakketten met Synaptic of apt-get " "voordat u verder gaat." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Ophalen is mislukt" +msgstr "Toevoegen van de cd is mislukt" #: ../DistUpgrade/DistUpgradeControler.py:75 -#, fuzzy, python-format +#, python-format 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" @@ -253,7 +244,7 @@ msgid "" "'%s'" msgstr "" "De upgrade is gestopt omdat de cd niet toegevoegd kon worden. Meld dit als " -"een bug als dit een goede Ubuntu-cd is.\n" +"een fout als dit een goede Ubuntu-cd is.\n" "\n" "De foutmelding was:\n" "'%s'" @@ -273,6 +264,11 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"De upgrade-procedure kan gebruik maken van een netwerkverbinding om de " +"laatste updates, en pakketten die niet op de huidige cd staan, op te halen\n" +"Wanneer u een snelle internetverbinding heeft of uw toegang tot het netwerk " +"is goedkoop, kunt u hier het beste op ‘Ja’ klikken. Wanneer netwerken duur " +"is voor u kunt u beter ‘Nee’ kiezen." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -298,7 +294,6 @@ msgstr "" "zal overal '%s' worden vervangen door '%s'.\n" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" @@ -334,15 +329,14 @@ msgid "Third party sources disabled" msgstr "Pakketbronnen van derden uitgeschakeld" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy 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 " "synaptic." msgstr "" "Enkele pakketbronnen van derden in uw sources.list zijn uitgeschakeld. U " -"kunt ze na de upgrade weer inschakelen via het menu Systeem -> Beheer -> " -"Software-eigenschappen of met het programma Synaptic." +"kunt ze na de upgrade weer inschakelen met het programma ‘software-" +"eigenschappen’ of met ‘synaptic’." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -371,7 +365,6 @@ msgstr "" "vrijgemaakt. Leeg uw prullenbak en verwijder de tijdelijke pakketten van " "vorige installaties via 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" @@ -381,7 +374,6 @@ msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" #: ../DistUpgrade/DistUpgradeControler.py:461 -#, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -391,7 +383,10 @@ msgid "" msgstr "" "De upgrade wordt nu afgebroken. Uw systeem bevindt zich mogelijk in een " "onbruikbare toestand. Er is een hersteloperatie uitgevoerd (dpkg --configure " -"-a)." +"-a).\n" +"\n" +"Rapporteer deze fout voor het pakket 'update-manager' en voeg hierbij de " +"bestanden die zich in /var/log/dist-upgrade/ bevinden." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -407,10 +402,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Ondersteuning voor bepaalde toepassingen is beëindigd." #: ../DistUpgrade/DistUpgradeControler.py:517 -#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -418,11 +412,12 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Deze geïnstalleerde pakketten worden niet meer officieel ondersteund, maar " -"worden door de gemeenschap beheerd ('universe').\n" +"De volgende pakketten worden niet meer door Canonical Ltd. ondersteund. U " +"kunt nog wel ondersteuning krijgen uit de gemeenschap.\n" "\n" -"Indien 'universe' niet geactiveerd is zal bij de volgende stap gevraagd " -"worden om deze pakketten te verwijderen." +"Indien u ‘door de gemeenschap onderhouden software’ (universe) niet " +"geactiveerd heeft zal bij de volgende stap gevraagd worden om deze pakketten " +"te verwijderen." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -448,7 +443,6 @@ msgstr "" "Tijdens het opruimen deed zich een probleem voor. Zie onderstaand bericht " "voor meer informatie. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" @@ -456,29 +450,28 @@ msgstr "De oorspronkelijke toestand wordt hersteld" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Backport van ‘%s’ ophalen" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Upgrade voorbereiden" +msgstr "Voorbereiden van de upgrade is mislukt" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. " -"Gelieve dit als fout te rapporteren." +"Het voorbereiden van het systeem voor de upgrade is mislukt. \n" +" \n" +"Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " +"voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -489,7 +482,7 @@ msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -497,9 +490,11 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Nu de pakketinformatie bijgewerkt is, kan het essentiële pakket '%s' niet " -"meer gevonden worden.\n" -"Dit is een ernstige fout, die gerapporteerd moet worden." +"Nu uw pakkettenlijst bijgewerkt is, kan het essentiële pakket ‘%s’ niet meer " +"gevonden worden.\n" +"Dit is een ernstige fout, die gemeld moet worden. Rapporteer deze fout voor " +"het pakket ‘update-manager’ en voeg daarbij de bestanden die zich in " +"/var/log/dist-upgrade/ bevinden." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -517,36 +512,33 @@ msgstr "Zoeken naar overbodige software" msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Plaats '%s' in station '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "De update is voltooid" +msgstr "Het downloaden is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format msgid "About %s remaining" -msgstr "Ongeveer %li minuten resterend" +msgstr "Ongeveer %s resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Downloaden van bestand %li uit %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Wijzigingen worden doorgevoerd" @@ -561,70 +553,72 @@ 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 bugreport." msgstr "" +"De upgrade wordt nu afgesloten. Rapporteer deze fout voor het pakket ‘update-" +"manager’ en voeg hierbij de bestanden die zich in /var/log/dist-upgrade/ " +"bevinden." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Het configuratiebestand vervangen?\n" +"Het aangepaste configuratiebestand vervangen?\n" "'%s'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Wanneer u besluit dit configuratiebestand te vervangen door een nieuwere " +"versie zullen al uw gemaakte wijzigingen verloren gaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "De opdracht 'diff' is niet gevonden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Er is een ernstige fout ontstaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapporteer dit als fout en voeg de bestanden /var/log/dist-upgrade.log en /" -"var/log/dist-upgrade-apt.log bij in uw foutrapport. De upgrade zal nu " -"worden afgebroken.\n" -"Uw oorspronkelijke sources.list is opgeslagen in /etc/apt/sources.list." -"distUpgrade." +"Meld dit als een fout en voeg de bestanden /var/log/dist-upgrade/main.log en " +"/var/log/dist-upgrade/apt.log bij uw foutrapport. De upgrade zal nu worden " +"afgebroken.\n" +"Uw oorspronkelijke sources.list is opgeslagen in " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "Er zal %s pakket verwijderd worden." -msgstr[1] "Er zullen %s pakketten verwijderd worden." +msgstr[0] "%d pakket zal verwijderd worden." +msgstr[1] "%d pakketten zullen verwijderd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "Er zal %s nieuw pakket geïnstalleerd worden." -msgstr[1] "Er zullen %s nieuwe pakketten geïnstalleerd worden." +msgstr[0] "%d nieuw pakket zal geïnstalleerd worden." +msgstr[1] "%d nieuwe pakketten zullen geïnstalleerd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s pakket zal een upgrade krijgen" -msgstr[1] "%s pakketten zullen een upgrade krijgen." +msgstr[0] "%d pakket zal een upgrade krijgen" +msgstr[1] "%d pakketten zullen een upgrade krijgen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -634,7 +628,7 @@ msgstr "" "\n" "U moet in totaal %s downloaden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -643,67 +637,69 @@ msgstr "" "Het upgraden kan enkele uren in beslag nemen en kan tussentijds niet worden " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Er zijn geen upgrades beschikbaar voor uw systeem. De upgrade wordt nu " +"afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s verwijderen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s installeren" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s upgraden" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Ongeveer %li dagen %li uur en %li minuten resterend" +msgstr "%li dagen %li uur en %li minuten" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Ongeveer %li uur en %li minuten resterend" +msgstr "%li uur en %li minuten" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minuten" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li seconden" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Deze download duurt ongeveer %s met een 1Mbit DSL-verbinding of %s met een " +"56k modem" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -718,7 +714,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -746,7 +741,7 @@ msgstr "Upgrade starten?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Upgraden van Ubuntu naar versie 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -782,19 +777,19 @@ msgid "Terminal" msgstr "Terminalvenster" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Upgrade hervatten" +msgstr "Upgrade _annuleren" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Doorgaan" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Behouden" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Vervangen" @@ -811,9 +806,8 @@ msgid "_Resume Upgrade" msgstr "_Upgrade hervatten" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Upgrade hervatten" +msgstr "Upgrade _starten" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -831,7 +825,6 @@ msgstr "Kon de versie-informatie niet downloaden" msgid "Please check your internet connection." msgstr "Controleer uw internetverbinding." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kon het upgrade-programma niet uitvoeren" @@ -906,72 +899,58 @@ msgstr "" "met het netwerk of de server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Downloaden van bestand %li uit %li met %s/s" +msgstr "Downloaden van bestand %(current)li uit %(total)li met %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Downloaden van bestand %li uit %li met %s/s" +msgstr "Downloaden van bestand %(current)li uit %(total)li" #: ../UpdateManager/UpdateManager.py:206 -#, fuzzy msgid "The list of changes is not available" -msgstr "" -"Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " -"Probeer het later nog eens." +msgstr "Een overzicht van de wijzigingen is nog niet beschikbaar." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " +"Een overzicht van de wijzigingen is nog niet beschikbaar.\n" "Probeer het later nog eens." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Kon de lijst met wijzigingen niet downloaden. Controleer uw " -"internetverbinding." +"Kon de lijst met wijzigingen niet downloaden. \n" +"Controleer uw internetverbinding." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 -#, fuzzy msgid "Important security updates" -msgstr "Ubuntu 5.10 veiligheidsupdates" +msgstr "Belangrijke veiligheidsupdates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aanbevolen updates" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 -#, fuzzy msgid "Proposed updates" -msgstr "Up_dates installeren" +msgstr "Voorgestelde updates" #: ../UpdateManager/UpdateManager.py:241 -#, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 backports" +msgstr "Backports" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "_Upgrade hervatten" +msgstr "Distributie-updates" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 -#, fuzzy msgid "Other updates" -msgstr "Up_dates installeren" +msgstr "Andere updates" #: ../UpdateManager/UpdateManager.py:478 #, python-format @@ -979,21 +958,18 @@ msgid "Version %s: \n" msgstr "Versie %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." -msgstr "Het overzicht van de wijzigingen wordt gedownload..." +msgstr "Een overzicht van de wijzigingen wordt gedownload..." #: ../UpdateManager/UpdateManager.py:566 -#, fuzzy msgid "_Uncheck All" -msgstr "Alles deselecteren" +msgstr "Alles _deselecteren" #: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Controleren" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1015,23 +991,21 @@ msgid "Update is complete" msgstr "De update is voltooid" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "Up_dates installeren" +msgstr "Zoeken naar beschikbare updates" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nieuwe versie: %s (Grootte: %s)" +msgstr "Van versie: %(old_version)s naar %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "Versie %s:" +msgstr "Versie %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 -#, fuzzy, python-format +#, fuzzy msgid "(Size: %s)" msgstr "(Grootte: %s)" @@ -1046,15 +1020,14 @@ msgid "" "information on upgrading." msgstr "" "U zult niet langer veiligheidsupdates of kritieke updates krijgen. Voer een " -"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." -"com voor meer informatie over upgraden." +"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie " +"http://www.ubuntu.com voor meer informatie over upgraden." #: ../UpdateManager/UpdateManager.py:863 -#, fuzzy, python-format +#, python-format msgid "New distribution release '%s' is available" -msgstr "De nieuwe Ubuntu-versie '%s' is beschikbaar" +msgstr "De nieuwe distributie-versie ‘%s’ is beschikbaar" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software-index is beschadigd" @@ -1069,30 +1042,25 @@ msgstr "" "Gebruik het pakkettenbeheerprogramma \"Synaptic\" of gebruik \"sudo apt-get " "install -f\" in een terminalvenster om eerst dit probleem te verhelpen." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Geen" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1102,33 +1070,31 @@ msgstr "" "U moet zelf controleren of er updates zijn\n" "\n" "Uw systeem controleert niet automatisch of er updates zijn. U kunt dit " -"configureren in \"Systeem\" -> \"Beheer\" -> \"Software-eigenschappen\"." +"configureren in Softwarebronnen op het tabblad Internet-" +"updates." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Houd uw systeem up-to-date" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Fout tijdens het lezen van de cd↵\n" -"↵\n" +"Niet alle updates kunnen geïnstalleerd worden \n" +"↵ \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Upgrade starten?" +msgstr "Update-beheer opstarten" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" msgstr "Wijzigingen" #: ../data/glade/UpdateManager.glade.h:8 -#, fuzzy msgid "Changes and description of the update" -msgstr "Veranderingen en beschrijving van de update" +msgstr "Wijzigingen en omschrijving van de update" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1153,6 +1119,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Voer een upgrade van de distributie uit om zoveel mogelijk updates te " +"installeren. \n" +"\n" +"Dit kan voorkomen bij een onvoltooide upgrade, onofficiële softwarepaketten " +"of bij gebruik van een ontwikkelaarsversie." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1183,9 +1154,8 @@ msgid "_Check" msgstr "_Controleren" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Upgrade hervatten" +msgstr "_Distributie-upgrade" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1197,30 +1167,32 @@ msgstr "Up_dates installeren" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy -msgid "changes" -msgstr "Wijzigingen" +msgid "_Upgrade" +msgstr "U_pgraden" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "wijzigingen" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" -msgstr "" +msgstr "updates" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internet-updates" +msgstr "Automatische updates" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "cd-rom/dvd" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Internet-updates" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internet-updates" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1232,11 +1204,18 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Om Ubuntu nog verder te verbeteren kunt u meedoen met de zogenaamde " +"populariteitswedstrijd. Er wordt dan wekelijks een anonieme rapportage naar " +"Ubuntu verzonden met een overzicht van de geïnstalleerde software en hoe " +"vaak deze gebruikt wordt.\n" +"\n" +"De resultaten worden gebruikt om de ondersteuning voor populaire programma's " +"te verbeteren en voor het bepalen van de rangorde van de resultaten bij het " +"zoeken naar programma's." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "_CD-rom toevoegen" +msgstr "Cd-rom toevoegen" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1247,9 +1226,8 @@ msgid "D_elete downloaded software files:" msgstr "Gedownloade softwarebestanden _verwijderen:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Downloaden is voltooid" +msgstr "Downloaden van:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1277,34 +1255,32 @@ msgstr "Herstel de standaard sleutels van uw distributie" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Software-eigenschappen" +msgstr "Softwarebronnen" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Broncode" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistieken" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Statistische informatie verzenden" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Derden" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Automatisch controleren op aanwezigheid van updates:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "Up_dates wel in de achtergrond downloaden, maar niet installeren" +msgstr "Up_dates wel automatisch downloaden, maar niet installeren" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1315,7 +1291,6 @@ msgid "_Install security updates without confirmation" msgstr "_Veiligheids-updates zonder te vragen installeren" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1324,10 +1299,10 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"De informatie in het kanaal is verouderd\n" +"De informatie over beschikbare software is verouderd\n" "\n" -"Om uit nieuwe of gewijzigde kanalen software en updates te installeren, moet " -"u de kanaalinformatie herladen.\n" +"Om updates te installeren uit nieuwe of gewijzigde softwarebronnen moet u de " +"informatie over beschikbare software vernieuwen.\n" "\n" "U heeft een internetverbinding nodig om door te gaan." @@ -1352,7 +1327,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1360,11 +1334,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Voer de volledige APT-regel in van het kanaal dat u wilt toevoegen\n" +"Voer de volledige APT-regel in van het software-warenhuis dat u als " +"bron wilt toevoegen\n" "\n" -"De APT-regel bevat het type, de locatie en de componenten van een kanaal, " -"bijvoorbeeld: \"deb http://ftp.debian.org sarge main\"." +"De APT-regel bevat het type, de locatie en de componenten van een software-" +"warenhuis, bijvoorbeeld: \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1380,16 +1354,15 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Bron bewerken" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "De cd-rom wordt geanalyseerd" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Bron toevoegen" +msgstr "_Bron toevoegen" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1416,14 +1389,13 @@ msgid "Check for new distribution releases" msgstr "Controleren op nieuwe distributieversies" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." msgstr "" -"Wanneer automatisch controleren voor updates uitgeschakeld is, moet u de " -"kanaallijst zelf herladen. Met deze optie kunt u er voor zorgen dat in dat " +"Indien automatisch controleren voor updates uitgeschakeld is, moet u de " +"kanalenlijst zelf herladen. Met deze optie kunt u er voor zorgen dat in dat " "soort gevallen geen herinnering gegeven wordt." #: ../data/update-manager.schemas.in.h:4 @@ -1439,12 +1411,11 @@ msgid "Stores the size of the update-manager dialog" msgstr "Onthoudt de grootte van het dialoogvenster van de update-manager" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Slaat de toestand op van het vensterdeel dat de lijst met wijzigingen en de " +"Onthoudt de toestand van het vensterdeel dat de lijst met wijzigingen en de " "omschrijvingen bevat." #: ../data/update-manager.schemas.in.h:8 @@ -1452,261 +1423,194 @@ msgid "The window size" msgstr "De venstergrootte" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Software-kanalen en internet-updates configureren" +msgstr "Softwarekanalen en internet-updates configureren" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 updates" +msgstr "Ubuntu 6.10 ‘Edgy Eft’" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Door de gemeenschap beheerd (Universe)" +msgstr "Door de gemeenschap beheerd" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 -#, fuzzy msgid "Proprietary drivers for devices" -msgstr "Proprietaire drivers voor apparaten" +msgstr "Niet-vrije stuurprogramma's voor apparaten" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Niet-vrij (Multiverse)" +msgstr "Beperkte software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom met Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS ‘Dapper Drake’" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Door de gemeenschap beheerd (Universe)" +msgstr "Door Canonical beheerde Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Door de gemeenschap beheerd (Universe)" +msgstr "Door de gemeenschap beheerd (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Door de gemeenschap beheerd (Universe)" +msgstr "Door de gemeenschap beheerde Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Niet-vrij (Multiverse)" +msgstr "Niet-vrije stuurprogramma's" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 -#, fuzzy msgid "Proprietary drivers for devices " -msgstr "Proprietaire drivers voor apparaten " +msgstr "Niet-vrije stuurprogramma's voor apparaten " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Niet-vrij (Multiverse)" +msgstr "Beperkte software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +"Software die door auteursrechten of wettelijke regelingen beperkt wordt." -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Cd-rom met Ubuntu 6.06 LTS ‘Dapper Drake’" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Updates die van een nieuwere distributie afkomstig zijn (backports)" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Cd-rom met Ubuntu 5.10 ‘Breezy Badger’" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 ‘Hoary Hedgehog’" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Cd-rom met Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "Cd-rom met Ubuntu 5.04 ‘Hoary Hedgehog’" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officieel ondersteund" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 veiligheidsupdates" +msgstr "Ubuntu 5.04 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 updates" +msgstr "Ubuntu 5.04 updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 backports" +msgstr "Ubuntu 5.04 backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 ‘Warty Warthog’" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Door de gemeenschap beheerd (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Niet-vrij (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "Cd-rom met Ubuntu 4.10 'Warty Warthog'" +msgstr "Cd-rom met Ubuntu 4.10 ‘Warty Warthog’" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Bepaalde software wordt niet meer officieel ondersteund" +msgstr "Niet meer officieel ondersteund" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Beperkte auteursrechten" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 veiligheidsupdates" +msgstr "Ubuntu 4.10 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 updates" +msgstr "Ubuntu 4.10 updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 backports" +msgstr "Ubuntu 4.10 backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" veiligheidsupdates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (onstabiel)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibel met DFSG, maar met niet-vrije afhankelijkheden" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" @@ -1730,8 +1634,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Bezig met upgraden naar Ubuntu " -#~ "6.06 LTS" +#~ "Bezig met upgraden naar Ubuntu 6.06 " +#~ "LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1752,8 +1656,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "" #~ "Uw system wordt gecontroleerd\n" #~ "\n" -#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en " -#~ "leveren nieuwe mogelijkheden." +#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " +#~ "nieuwe mogelijkheden." #, fuzzy #~ msgid "Oficially supported" @@ -1761,18 +1665,18 @@ msgstr "Software niet compatibel met DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Enkele updates vereisen dat andere softwarepaketten verwijderd worden. " -#~ "Gebruik de functie \"Pakketten bijwerken\" van het " -#~ "pakkettenbeheerprogramma \"Synaptic\" of gebruik: \"sudo apt-get dist-" -#~ "upgrade\" in een terminalvenster om uw systeem compleet bij te werken met " -#~ "de laatste updates." +#~ "Gebruik de functie \"Pakketten bijwerken\" van het pakkettenbeheerprogramma " +#~ "\"Synaptic\" of gebruik: \"sudo apt-get dist-upgrade\" in een " +#~ "terminalvenster om uw systeem compleet bij te werken met de laatste updates." #~ msgid "The following updates will be skipped:" #~ msgstr "De volgende updates worden overgeslagen:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ongeveer %li seconden resterend" @@ -1836,7 +1740,7 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Ubuntu 6.06 LTS\r\n" +#~ "Ubuntu 6.06 LTS \n" #~ "Ubuntu 6.06 updates" #~ msgid "Ubuntu 6.06 LTS Security Updates" @@ -1846,4 +1750,4 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "Ubuntu 6.06 LTS updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backports" +#~ msgstr "Ubuntu 6.06 LTS backports" \ No newline at end of file diff --git a/po/nn.po b/po/nn.po index ad52df59..dc1d3472 100644 --- a/po/nn.po +++ b/po/nn.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-19 15:52+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Etter ein månad" msgid "After %s days" msgstr "Etter %s dagar" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,7 +123,8 @@ msgid "Error removing the key" msgstr "Kunne ikkje fjerne nykjelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Nykjelen du valde kan ikkje fjernast. Ver venleg å rapportere denne feilen." @@ -166,7 +164,6 @@ msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" msgid "A essential package would have to be removed" msgstr "Ein naudsynt pakke vil måtte fjernast" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikkje forberede oppgraderinga" @@ -179,7 +176,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikkje autentisere somme pakkar" @@ -207,7 +203,6 @@ msgstr "" "Ein naudsynt pakke kunne ikkje installerast. Ver venleg og rapporter denne " "feilen. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikkje gjette på meta-pakke" @@ -274,7 +269,6 @@ msgstr "" "vil det oppdatere alle forekomstar av '%s' til '%s'.\n" "Om du veljer \"Nei\" vil oppgraderinga verte avbroten." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vil du opprette standardkjelder?" @@ -287,8 +281,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av \"sources." -"list\"-fila di.\n" +"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av " +"\"sources.list\"-fila di.\n" "\n" "Vil du legge till standard oppføring for \"%s\"? Om du vel \"Nei\" vil " "oppdateringa verte avbroten." @@ -340,7 +334,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -403,7 +396,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -414,7 +406,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -465,7 +456,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -481,7 +471,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -493,7 +483,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -509,60 +498,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -570,39 +557,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -628,7 +614,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -648,11 +633,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -719,6 +703,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -754,7 +739,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -844,17 +828,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -867,7 +848,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -889,7 +869,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -924,7 +903,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -946,7 +924,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -958,23 +935,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1071,10 +1044,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1296,229 +1273,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/oc.po b/po/oc.po index d09ca31f..eed871b2 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-30 00:43+0000\n" -"Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:16+0000\n" +"Last-Translator: Yannig MARCHEGAY (Kokoyaya) " +"\n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,6 @@ msgstr "Un mes aprèp" msgid "After %s days" msgstr "%s jorns aprèp" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s mesas a jorn" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,12 +123,13 @@ msgid "Error removing the key" msgstr "Error al moment de suprimir la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -167,7 +165,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" @@ -180,7 +177,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -203,7 +199,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -263,7 +258,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -320,7 +314,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" @@ -383,7 +376,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -394,7 +386,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -445,7 +436,6 @@ msgstr "Recèrca de logicials obsolets" msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -461,7 +451,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Environ %s restantas" @@ -473,7 +463,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicacion dels cambis" @@ -489,61 +478,59 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Impossible de trobar la comanda 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -553,39 +540,38 @@ msgstr "" "\n" "Debètz telecargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Suprimir %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Metre a jorn %s" @@ -611,7 +597,6 @@ msgid "%li seconds" msgstr "%li segondas" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -631,7 +616,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -703,6 +687,7 @@ msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Remplaçar" @@ -738,7 +723,6 @@ msgstr "Impossible de telecargar las informacions de version" msgid "Please check your internet connection." msgstr "Verificatz vòstra connexion internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible aviar l'esplech de mesa a jorn" @@ -828,17 +812,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -853,7 +834,6 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" msgid "Distribution updates" msgstr "Mesas a jorn per internet" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -877,7 +857,6 @@ msgstr "" msgid "_Check All" msgstr "_Verificar" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -909,11 +888,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Version %s :" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -935,7 +913,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -947,23 +924,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1069,10 +1042,15 @@ msgstr "_Installar las mesas a jorn" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Metre a jorn" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Cambis" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "mesas a jorn" @@ -1298,244 +1276,200 @@ msgstr "La talha de la fenèstra" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Pas liure (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM que conten Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Pas liure (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pas liure (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM que conten Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM que conten Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pas liure (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mesas a jorn de securitat per Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (en tèst)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1561,4 +1495,4 @@ msgstr "" #~ msgstr "_Personalisar" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/pa.po b/po/pa.po index 25960a09..0e940c7d 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:43+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" "MIME-Version: 1.0\n" @@ -56,15 +56,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,7 +160,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -175,7 +172,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -198,7 +194,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -258,7 +253,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -315,7 +309,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -378,7 +371,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -389,7 +381,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -441,7 +432,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,7 +447,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -469,7 +459,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -485,60 +474,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -546,39 +533,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -604,7 +590,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -624,7 +609,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -697,6 +681,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -734,7 +719,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -826,18 +810,15 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -852,7 +833,6 @@ msgstr "" msgid "Distribution updates" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -875,14 +855,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." @@ -911,7 +890,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -933,7 +911,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -945,23 +922,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1062,10 +1035,15 @@ msgid "_Install Updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1299,229 +1277,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1574,4 +1507,4 @@ msgstr "" #, fuzzy #~ msgid "Sections:" -#~ msgstr "ਵੇਰਵਾ" +#~ msgstr "ਵੇਰਵਾ" \ No newline at end of file diff --git a/po/pl.po b/po/pl.po index f438b3ec..512fc57c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,15 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: update-manager cvs\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-02 19:44+0000\n" -"Last-Translator: White Eagle \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-10 08:44+0000\n" +"Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,7 +54,6 @@ msgstr "Po miesiącu" msgid "After %s days" msgstr "Po %s dniach" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +61,6 @@ msgstr "%s aktualizacji" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serwer główny" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +119,8 @@ msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -166,7 +163,6 @@ msgstr "Nie można zaktualizować wymaganych meta-pakietów" msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" @@ -183,7 +179,6 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" @@ -207,9 +202,9 @@ msgstr "Nie można zainstalować \"%s\"" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +msgstr "" +"Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" @@ -286,11 +281,10 @@ msgstr "" "lustrzanego dla aktualizacji. To może się zdarzyć, jeśli używasz wewnętrzny " "serwer lustrzany lub informacje o serwerze są nieaktualne.\n" "\n" -"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz \"Tak" -"\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" +"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz " +"\"Tak\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" @@ -303,8 +297,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla \"%s" -"\".\n" +"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla " +"\"%s\".\n" "\n" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." @@ -332,8 +326,8 @@ msgid "" "synaptic." msgstr "" "Niektóre kanały osób trzecich w pliku sources.list zostały wyłączone. Możesz " -"ponownie je włączyć po aktualizacji używając narzędzia \"software-properties" -"\" lub programu Synaptic." +"ponownie je włączyć po aktualizacji używając narzędzia \"software-" +"properties\" lub programu Synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -358,11 +352,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na %" -"s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji używając " -"\"sudo apt-get clean\"." +"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na " +"%s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji " +"używając \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" @@ -409,6 +402,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. nie zapewnia już wsparcia dla tych pakietów. Nadal możesz " +"uzyskać wsparcie od społeczności Ubuntu.\n" +"\n" +"Jeśli nie włączyłeś repozytoriów utrzymywanych przez społeczność (universe), " +"zostanie zasugerowane ich usunięcie w następnym kroku." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -434,7 +432,6 @@ msgstr "" "Wystąpił problem podczas oczyszczania. Więcej informacji znajduje się w " "poniższych wiadomościach. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" @@ -442,10 +439,9 @@ msgstr "Przywracanie pierwotnego stanu systemu" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Pobieranie backportu \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -453,7 +449,7 @@ msgstr "Sprawdzanie menedżera pakietów" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Przygotowanie aktualizacji nie powiodło się" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -461,6 +457,9 @@ msgid "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Przygotowanie systemu do aktualizacji nie powiodło się. Proszę zgłosić to " +"jako błąd pakietu \"update-manager\" i dołączyć do raportu pliki z " +"/var/log/dist-upgrade ." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -481,8 +480,8 @@ msgid "" msgstr "" "Po aktualizacji informacji o pakietach niezbędny pakiet \"%s\" nie może " "zostać odnaleziony.\n" -"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-manager" -"\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." +"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-" +"manager\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -500,7 +499,6 @@ msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,7 +514,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Pobieranie pliku %li z %li z prędkością %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Pozostało około %s" @@ -528,7 +526,6 @@ msgstr "Pobieranie pliku %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Zatwierdzanie zmian" @@ -546,8 +543,7 @@ msgstr "" "Aktualizacja zostaje przerwana. Prosimy o wysłanie raportu o błędzie pakietu " "'update-manager' dołączając pliki w /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -556,36 +552,37 @@ msgstr "" "Zastąpić własny plik konfiguracji\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Utracisz wszystkie wprowadzone zmiany do tego pliku konfiguracyjnego, jeśli " +"wybierzesz jego zamianę na nowszą wersję." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Polecenie \"diff\" nie zostało odnalezione" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Wystąpił błąd krytyczny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosimy o wysłanie raportu o tym błędzie i dołączeniu plików /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log w swoim raporcie. " "Aktualizacja zostaje przerwana.\n" -"Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." -"distUpgrade." +"Pierwotny plik sources.list został zapisany w " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -593,7 +590,7 @@ msgstr[0] "%d pakiet zostanie usunięty." msgstr[1] "%d pakiety zostaną usunięte." msgstr[2] "%d pakietów zostanie usuniętych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -601,7 +598,7 @@ msgstr[0] "%d nowy pakiet zostanie zainstalowany." msgstr[1] "%d nowe pakiety zostaną zainstalowane." msgstr[2] "%d nowych pakietów zostanie zainstalowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -609,7 +606,7 @@ msgstr[0] "%d pakiet zostanie zaktualizowany." msgstr[1] "%d pakiety zostaną zaktualizowane." msgstr[2] "%d pakietów zostanie zaktualizowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -620,7 +617,7 @@ msgstr "" "\n" "Musisz pobrać w sumie %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -628,35 +625,34 @@ msgstr "" "Pobieranie i instalacja aktualizacji może potrwać kilka godzin i nie może " "zostać przerwana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Brak dostępnych aktualizacji. Aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Usuń %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instaluj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Aktualizuj %s" @@ -682,13 +678,14 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Pobieranie może trwać około %s przy łączu 1 Mbit i około %s przy łączu " +"56kbit." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -704,7 +701,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -769,17 +765,18 @@ msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Przerwij aktualizację" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "K_ontynuuj" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Zachowaj" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Zas_tąp" @@ -797,7 +794,7 @@ msgstr "_Wznów aktualizację" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Rozpocznij aktualizację" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -815,7 +812,6 @@ msgstr "Pobranie informacji o wydaniu było niemożliwe" msgid "Please check your internet connection." msgstr "Proszę sprawdzić swoje połączenie internetowe." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nie można było uruchomić narzędzia aktualizacji" @@ -849,7 +845,8 @@ msgstr "Pobranie nie powiodło się" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " +msgstr "" +"Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -872,6 +869,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Weryfikacja aktualizacji nie powiodła się. Mógł wystąpić problem z siecią " +"lub z serwerem. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -888,12 +887,12 @@ msgstr "" #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "Pobieranie pliku %(current)li z %(total)li z prędkością %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "Pobieranie pliku %(current)li z %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" @@ -904,24 +903,25 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Lista zmian nie jest dostępna.\n" +"Proszę spróbować później." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Nie udało się pobrać listy zmian. \n" +"Proszę sprawdzić swoje połączenie intenetowe." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Ważne aktualizacje bezpieczeństwa" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aktualizacje polecane" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aktualizacje proponowane" @@ -932,9 +932,8 @@ msgstr "Backporty" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Aktualizacje dystrybucji" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Inne aktualizacje" @@ -946,7 +945,7 @@ msgstr "Wersja %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "Pobieranie listy zmian..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -956,7 +955,6 @@ msgstr "Odznacz wszystkie" msgid "_Check All" msgstr "Zaznacz wszystkie" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -985,14 +983,13 @@ msgstr "Sprawdzanie dostępności aktualizacji" #: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "Z wersji %(old_version)s do %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Wersja %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1017,7 +1014,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nowe wydanie dystrybucji \"%s\" jest dostępne" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" @@ -1032,23 +1028,19 @@ msgstr "" "Proszę użyć \"Synaptic Menedżer Pakietów\" lub wydać polecenie \"sudo apt-" "get install -f\" w terminalu, aby naprawić ten problem." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Brak" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1061,6 +1053,10 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Musisz sprawdzić dostępność aktualizacji ręcznie\n" +"\n" +"Aktualizacja automatyczna nie jest włączona. Możesz ustawić tę funkcję w " +"Źródła oprogramowania w zakładce Aktualizacje internetowe" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1068,7 +1064,8 @@ msgstr "Utrzymuj system w pełni zaktualizowany" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "Nie wszystkie aktualizacje mogą zostać zainstalowane" +msgstr "" +"Nie wszystkie aktualizacje mogą zostać zainstalowane" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1152,10 +1149,14 @@ msgid "_Install Updates" msgstr "_Instaluj aktualizacje" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "zmiany" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "aktualizacje" @@ -1195,7 +1196,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" -msgstr "" +msgstr "Dodaj CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1395,6 +1396,7 @@ msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" +"Zapamiętuje położenie wysuwalnego obszaru zawierającego listę zmian i opis" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1404,233 +1406,191 @@ msgstr "Rozmiar okna" msgid "Configure the sources for installable software and updates" msgstr "Konfiguruj źródła pakietów oprogramowania i aktualizacji" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Pod opieką społeczeństwa" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Własnościowe sterowniki dla urządzeń" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ograniczone oprogramowanie" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM z Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Oprogramowanie Open Source wspierane przez firmę Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Obsługiwane przez społeczność (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Oprogramowanie Open Source pod opieką społeczeństwa" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Sterowniki nie-wolnodostępne" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Własnościowe sterowniki dla urządzeń " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Oprogramowanie nie-wolnodostępne (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +"Oprogramowanie ograniczone prawami autorskimi lub problemami natury prawnej" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM z Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aktualizacje backportowane" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM z Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Wspierane oficjalnie" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aktualizacje dla Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Aktualizacje dla Ubuntu 5.04 (backporty)" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·4.10·\"Warty·Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Utrzymywane przez społeczność (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM z Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Już nieobsługiwane" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "O ograniczonych prawach kopiowania" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aktualizacje dla Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Aktualizacje dla Ubuntu 4.10 (backporty)" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Debiana 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (wersja testowa)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (wersja unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1641,22 +1601,21 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" -#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. " -#~ "Proszę zgłosić to jako błąd. " +#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " +#~ "zgłosić to jako błąd. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop " -#~ "lub edubuntu-desktop. Nie jest możliwe określenie używanej wersji " -#~ "Ubuntu.\n" +#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop lub " +#~ "edubuntu-desktop. Nie jest możliwe określenie używanej wersji Ubuntu.\n" #~ " Przed kontynuowaniem proszę zainstalować jeden z powyższych pakietów." #~ msgid "" @@ -1669,8 +1628,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "lub za pomocą Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" #~ "Aktualizacja została przerwana. System może znajdować się w stanie " #~ "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" @@ -1692,6 +1651,7 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " #~ "zasugerowane ich usunięcie. " +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1701,30 +1661,37 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "być odnaleziony.\n" #~ "To wskazuje na poważny problem, proszę zgłosić ten błąd." +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Około %li dni %li godzin %li minut pozostało" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Około %li godzin %li minut pozostało" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Około %li minut pozostało" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Około %li sekund pozostało" #~ msgid "Download is complete" #~ msgstr "Pobieranie zostało zakończone." +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Pobieranie pliku %li z %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Aktualizacja została przerwana. Proszę zgłosić ten błąd." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1733,40 +1700,42 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log " -#~ "oraz ~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" -#~ "Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." -#~ "distUpgrade." +#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log oraz " +#~ "~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" +#~ "Pierwotny plik sources.list został zapisany w " +#~ "/etc/apt/sources.list.distUpgrade." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pakiet zostanie usunięty." #~ msgstr[1] "%s pakiety zostaną usunięte." #~ msgstr[2] "%s pakietów zostanie usuniętych." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nowy pakiet zostanie zainstalowany." #~ msgstr[1] "%s nowe pakiety zostaną zainstalowane." #~ msgstr[2] "%s nowy pakietów zostanie zainstalowane." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pakiet zostanie zaktualizowany." #~ msgstr[1] "%s pakiety zostaną zaktualizowane." #~ msgstr[2] "%s pakietów zostanie zaktualizowanych." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Konieczne pobranie ogółem %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" #~ "Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." @@ -1788,15 +1757,17 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacja Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" -#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy " -#~ "lub z serwerem. " +#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy lub " +#~ "z serwerem. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" @@ -1830,13 +1801,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Niektóre aktualizacje wymagają dalszego usuwania oprogramowania. Aby " -#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji" -#~ "\" w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade" -#~ "\" w terminalu." +#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji\" " +#~ "w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade\" w " +#~ "terminalu." #~ msgid "The following updates will be skipped:" #~ msgstr "Następujące pakiety zostaną pominięte:" @@ -1850,18 +1821,17 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Select _All" #~ msgstr "Zaznacz w_szystkie" +#, python-format #~ msgid "From version %s to %s" #~ msgstr "Z wersji %s do %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" +#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" #~ "\n" #~ "System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie " #~ "można to zmienić w \"System\" -> \"Administracja\" -> \"Software " @@ -1875,8 +1845,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Sprawdzanie systemu\n" #~ "\n" -#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe " -#~ "punkty bezpieczeństwa i dostarczyć nowe funkcje." +#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " +#~ "bezpieczeństwa i dostarczyć nowe funkcje." #~ msgid "Cancel _Download" #~ msgstr "_Przerwij pobieranie" @@ -1884,8 +1854,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1897,33 +1867,31 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Aby kontynuować potrzebne jest działające połączenie internetowe." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to add\n" +#~ "Enter the complete APT line of the source that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" +#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" #~ "\n" -#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo " -#~ "\"deb http://ftp.debian.org sarge main\"." +#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo \"deb " +#~ "http://ftp.debian.org sarge main\"." #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" -#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone " -#~ "to koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na " -#~ "ukrycie pokazywanego w tym przypadku.powiadamiania." +#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone to " +#~ "koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na ukrycie " +#~ "pokazywanego w tym przypadku.powiadamiania." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych " -#~ "aktualizacji" +#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych aktualizacji" #~ msgid "" #~ "OpenSource software that is officially supported by Canonical Ltd. (main)" @@ -1936,8 +1904,7 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Proprietary drivers for devices (restricted) " #~ msgstr "Własnościowe sterowniki dla urządzeń (restricted) " -#~ msgid "" -#~ "Software that is restricted by copyright or legal issues (multiverse)" +#~ msgid "Software that is restricted by copyright or legal issues (multiverse)" #~ msgstr "" #~ "Oprogramowanie ograniczone prawami kopiowania lub wątpliowściami prawnymi " #~ "(multiverse)" @@ -2014,8 +1981,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje dla Ubuntu 6.06 LTS (Backporty)" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Podczas skanowania informacji o repozytoriach nie odnaleziono poprawnych " #~ "wpisów potrzebnych do aktualizacji.\n" @@ -2082,13 +2049,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " -#~ "klikając przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " +#~ "przycisk Instaluj." #~ msgid "Repository" #~ msgstr "Repozytorium" @@ -2108,21 +2075,20 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Klucze autentykacyjne\n" #~ "\n" -#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. " -#~ "Klucz pozwala na sprawdzenie integralności oprogramowania które jest " -#~ "pobierane z sieci." +#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. Klucz " +#~ "pozwala na sprawdzenie integralności oprogramowania które jest pobierane z " +#~ "sieci." #~ msgid "A_uthentication" #~ msgstr "A_utentykacja" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Dodaje plik z kluczem do listy zaufanych kluczy. Należy upewnić sie, że " -#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego " -#~ "źródła. " +#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego źródła. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Usuwaj _tymczasowe pliki z pakietami" @@ -2144,11 +2110,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to " -#~ "na klucze zainstalowane przez użytkownika." +#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to na " +#~ "klucze zainstalowane przez użytkownika." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Maksymalny rozmiar pamięci podręcznej" @@ -2172,9 +2138,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione." -#~ "Aby rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-" -#~ "get\"." +#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione.Aby " +#~ "rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-get\"." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Nie można uaktualnić wszystkich pakietów" @@ -2182,13 +2147,12 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "Oznacza to, że do aktualizacji wymagane sa dodatkowe działania (takie jak " -#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać " -#~ "z funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać " -#~ "polecenie \"apt-get dist-upgrade\"." +#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać z " +#~ "funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać polecenie " +#~ "\"apt-get dist-upgrade\"." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2199,11 +2163,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje są teraz instalowane." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " -#~ "Należy najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " +#~ "najpierw zamknąć aplikację która teraz działa." #~ msgid "Updating package list..." #~ msgstr "Aktualizacja listy pakietów..." @@ -2213,14 +2177,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna " -#~ "wersja nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych " -#~ "krytycznych uaktualnień. Informacje o tym jak uaktualnić dystrybucję " -#~ "można znaleźć na stronie http://www.ubuntulinux.org (Witryna w języku " -#~ "angielskim)" +#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna wersja " +#~ "nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych krytycznych " +#~ "uaktualnień. Informacje o tym jak uaktualnić dystrybucję można znaleźć na " +#~ "stronie http://www.ubuntulinux.org (Witryna w języku angielskim)" #, fuzzy #~ msgid "There is a new release of Ubuntu available!" @@ -2231,11 +2194,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " -#~ "Należy najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " +#~ "najpierw zamknąć aplikację która teraz działa." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicjowanie i pobieranie listy aktualizacji..." @@ -2273,13 +2236,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " -#~ "klikając przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " +#~ "przycisk Instaluj." #~ msgid "CD disk" -#~ msgstr "Płyta CD" +#~ msgstr "Płyta CD" \ No newline at end of file diff --git a/po/pt.po b/po/pt.po index b58467c3..815988d6 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 18:27+0000\n" -"Last-Translator: Susana \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 11:04+0000\n" +"Last-Translator: Tiago Silva \n" "Language-Team: Ubuntu Portuguese Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,6 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Depois de %s dias" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,7 +60,6 @@ msgstr "actualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,7 +69,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Erro ao remover a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." @@ -167,7 +165,6 @@ msgstr "Não foi possível actualizar os meta-pacotes necessários" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" @@ -184,7 +181,6 @@ msgstr "" "Por favor reporte este erro no pacote 'update-manager' e inclua os ficheiros " "contidos em /var/log/dist-upgrade/ no seu relatório de erro." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" @@ -211,7 +207,6 @@ msgid "" msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" @@ -293,7 +288,6 @@ msgstr "" "Se escolher 'Sim' ele vai actualizar todos os '%s' para '%s' pacotes.↵\n" "Se escolher \"não\" a actualização irá ser cancelada." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" @@ -362,11 +356,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A actualização abortará agora. Por favor liberte %s de espaço em disco em %" -"s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " +"A actualização abortará agora. Por favor liberte %s de espaço em disco em " +"%s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " "usando 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" @@ -406,7 +399,6 @@ msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações já terminou." #: ../DistUpgrade/DistUpgradeControler.py:517 -#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -414,11 +406,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Estes pacotes instalados já não são suportados oficialmente, e agora são " -"apenas suportados pela comunidade ('universe').\n" +"A Canonical Ltd. já não suporta oficialmente os pacotes de software que se " +"seguem. Pode ainda obter suporte a partir da comunidade.\n" "\n" -"Se não tem o repositório 'universe' activo será sugerida a remoção destes " -"pacotes no próximo passo." +"Caso não tenha activado o software mantido pela comunidade (universe), irá " +"ser sugerida a remoção destes pacotes no próximo passo." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -444,7 +436,6 @@ msgstr "" "Ocorreu algum problema durante a limpeza. Por favor verifique a mensagem " "abaixo para mais informação. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" @@ -455,7 +446,6 @@ msgid "Fetching backport of '%s'" msgstr "A obter backport de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -514,7 +504,6 @@ msgstr "À procura de software obsoleto" msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -530,7 +519,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "A obter o ficheiro %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Cerca de %s restantes" @@ -542,7 +531,6 @@ msgstr "A obter o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando alterações" @@ -558,11 +546,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "A actualização será agora abortada. Por favor relate a ocorrência deste erro " -"no pacote 'update-manager' e inclua os ficheiros que se encontram em /var/" -"log/dist-upgrade/ no relatório de erro." +"no pacote 'update-manager' e inclua os ficheiros que se encontram em " +"/var/log/dist-upgrade/ no relatório de erro." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -571,7 +558,7 @@ msgstr "" "Substituir ficheiro de configuração personalizado\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -579,52 +566,51 @@ msgstr "" "Perderá todas as alterações que fez a este ficheiro de configuração caso o " "substitua por uma versão mais recente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate este erro e inclua os ficheiros /var/log/dist-upgrade/main." -"log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A actualização " -"abortará agora.\n" -"O ficheiro original sources.list foi guardado em /etc/apt/sources.list." -"distUpgrade." +"Por favor relate este erro e inclua os ficheiros /var/log/dist-" +"upgrade/main.log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A " +"actualização abortará agora.\n" +"O ficheiro original sources.list foi guardado em " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "o pacote %d será removido." msgstr[1] "os pacotes %d serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será actualizado." msgstr[1] "%d pacotes serão actualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, python-format msgid "" "\n" "\n" @@ -632,9 +618,9 @@ msgid "" msgstr "" "\n" "\n" -"Tem de efectuar o download de um total de %s. " +"Tem que descarregar um de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -642,19 +628,18 @@ msgstr "" "A obtenção e instalação da actualização poderá demorar várias horas e não " "poderá ser cancelada a qualquer instante posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -662,17 +647,17 @@ msgstr "" "Não há actualizações disponíveis para o seu sistema. A actualização será " "agora cancelada." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -698,7 +683,6 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -721,7 +705,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -796,6 +779,7 @@ msgid "_Keep" msgstr "_Manter" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Substituir" @@ -831,7 +815,6 @@ msgstr "Impossível de descarregar as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor verifique a sua ligação à internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossível de executar a ferramenta de actualização" @@ -849,7 +832,8 @@ msgstr "A descarregar a ferramenta de actualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "A ferramenta de actualização guiá-lo-á pelo processo de actualização." +msgstr "" +"A ferramenta de actualização guiá-lo-á pelo processo de actualização." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -925,25 +909,21 @@ msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Falha a descarregar a lista de alterações. \n" -"Por favor verifique a sua ligação à internet." +"Falha ao descarregar a lista de alterações. \n" +"Por favor verifique a sua ligação à Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizações de segurança importantes" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizações recomendadas" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizações propostas" @@ -956,7 +936,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "_Actualizações de Distribuição" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizações" @@ -978,7 +957,6 @@ msgstr "_Desmarcar Todos" msgid "_Check All" msgstr "_Verificar Todos" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1013,7 +991,6 @@ msgstr "Da versão: %(old_version)s para %(new_version)s" msgid "Version %s" msgstr "Versão %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1038,7 +1015,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Está disponível a nova versão '%s' da distribuição" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está quebrado" @@ -1053,30 +1029,25 @@ msgstr "" "gestor de pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" numa " "consola para corrigir este problema em primeiro lugar." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1086,8 +1057,8 @@ msgstr "" "Tem de verificar por actualizações manualmente\n" "\n" "O seu sistema não procura por actualizações automaticamente. Pode configurar " -"este comportamento em \"Sistema\" -> \"Administração\" -> \"Propriedades do " -"Software\"." +"este comportamento em Fontes de Software no separador " +"Actualizações na Internet" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1096,8 +1067,8 @@ msgstr "Mantenha o seu sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Não é possível instalar todas as actualizações\r\n" -"\r\n" +"Não é possível instalar todas as actualizações \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1182,10 +1153,15 @@ msgid "_Install Updates" msgstr "_Instalar Actualizações" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "A_ctualização" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "alterações" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "actualizações" @@ -1302,7 +1278,6 @@ msgid "_Install security updates without confirmation" msgstr "_Instalar actualizações de segurança sem confirmação" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1311,11 +1286,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação de repositórios está desactualizada\n" +"A informação acerca de software disponível está " +"desactualizada\n" "\n" -"Tem de reler a informação de repositórios para instalar software e " -"actualizações a partir de repositórios recentemente adicionados ou " -"alterados. \n" +"Tem de recarregar a informação sobre software disponível para instalar " +"software e actualizações a partir de repositórios recentemente adicionados " +"ou alterados. \n" "\n" "Necessita de uma ligação internet activa para continuar." @@ -1402,7 +1378,6 @@ msgid "Check for new distribution releases" msgstr "Verificar por novos lançamentos de distribuições" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " @@ -1410,7 +1385,7 @@ msgid "" msgstr "" "Se a opção para verificar automaticamente por actualizações estiver " "desactivada, tem de reler a lista de repositórios manualmente. Esta opção " -"permite desactivar a lembrança mostrada neste caso." +"permite esconder a lembrança mostrada neste caso." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1425,12 +1400,11 @@ msgid "Stores the size of the update-manager dialog" msgstr "Guarda o tamanho do diálogo do gestor de actualizações" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Guarda o estado da lista que contém a lista de alterações e a descrição" +"Guarda o estado do expansor que contém a lista de alterações e a descrição" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1440,235 +1414,190 @@ msgstr "Tamanho da Janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os repositórios de software e actualizações instaláveis" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Drivers proprietários para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software Restrito" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com o Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software de Código Aberto suportado pela Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela comunidade (universal)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Fonte Aberto mantido pela comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores não-livres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Drivers proprietários para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Não-livre (Multiverse)" +msgstr "Software não-livre (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright ou questões legais" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 -#, fuzzy msgid "Backported updates" msgstr "Actualizações dos repositórios \"backport\"" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Actualizações" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado Oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizações do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sem mais suporte oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Direitos de autor restritos" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizações do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Actualizações de Segurança" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatível-DFSG com Dependências Não-Livres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" @@ -1691,8 +1620,7 @@ msgstr "Software compatível-DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "A actualizar para Ubuntu 6.10" +#~ "A actualizar para Ubuntu 6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Actualizações de segurança importantes do Ubuntu" @@ -1719,16 +1647,17 @@ msgstr "Software compatível-DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas actualizações requerem a remoção de software. Utilize a função " -#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade" -#~ "\" numa consola para actualizar completamente o seu sistema." +#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade\" " +#~ "numa consola para actualizar completamente o seu sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes actualizações serão ignoradas:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Cerca de %li segundos restantes" @@ -1749,14 +1678,12 @@ msgstr "Software compatível-DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo " -#~ "tempo" +#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou " -#~ "'Synaptic'." +#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou 'Synaptic'." #~ msgid "Channels" #~ msgstr "Repositórios" @@ -1806,8 +1733,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Ubuntu 6.06 LTS Backports" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Ao pesquisar o seu repositório de informação não foi encontrada nenhuma " #~ "entrada válida de actualização.\n" @@ -1826,15 +1753,15 @@ msgstr "Software compatível-DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "A efectuar download de alterações\n" +#~ "A efectuar download de " +#~ "alterações\n" #~ "\n" #~ "É necessário obter as alterações de um servidor central" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" #~ "Não existe espaço suficiente no seu sistema para descarregar os pacotes " #~ "necessários. Por favor liberte algum espaço antes de tentar novamente por " @@ -1847,8 +1774,8 @@ msgstr "Software compatível-DFSG" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" -#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de " -#~ "um problema de rede. Por favor verifique a rede e tente novamente. " +#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de um " +#~ "problema de rede. Por favor verifique a rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1873,8 +1800,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Tem a certeza que pretende cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " #~ msgstr "" #~ "Cancelar durante uma actualização pode deixar o seu sistema num estado " #~ "instável. É fortemente aconselhado a prosseguir a operação. " @@ -1889,4 +1816,4 @@ msgstr "Software compatível-DFSG" #~ msgstr "Nunca exibir esta mensagem novamente" #~ msgid "CD" -#~ msgstr "CD" +#~ msgstr "CD" \ No newline at end of file diff --git a/po/pt_BR.po b/po/pt_BR.po index a6f8f269..a71e37c0 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-02 11:49+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Andre Noel \n" "Language-Team: Ubuntu-BR \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Após %s dias" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "Atualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Erro removendo a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave selecionada não pode ser removida. Por favor reporte isto como um " "bug." @@ -169,7 +167,6 @@ msgstr "Não foi possível atualizar os meta-pacotes requeridos" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Não foi possível processar a atualização" @@ -187,7 +184,6 @@ msgstr "" "Por favor reporte esse erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" @@ -215,7 +211,6 @@ msgstr "" "Não foi possível instalar um pacote requerido. Por favor relate isto como um " "erro. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Não foi possível determinar o meta-pacote" @@ -296,7 +291,6 @@ msgstr "" "'Sim' atualizará todas '%s' para '%s' entradas.\n" "Se você selecionar 'não' a atualização será cancelada." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar fontes padrão?" @@ -370,7 +364,6 @@ msgstr "" "de disco no %s. Esvazie sua lixeira e remova pacotes temporários de " "instalações anteriores usando 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" @@ -417,6 +410,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. não provê mais suporte para os seguintes pacotes de " +"softwares. Você pode continuar obtendo suporte da comunidade.\n" +"\n" +"Se você não tiver habilitado os softwares mantidos pela comunidade " +"(universe), esses pacotes serão sugeridos para remoção no próximo passo." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -442,7 +440,6 @@ msgstr "" "Alguns problemas ocorreram durante a limpeza. Por favor veja a mensagem " "abaixo para maiores informações. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurando o estado original do sistema" @@ -453,7 +450,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -461,7 +457,7 @@ msgstr "Verificando o gerenciador de pacotes" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Preparação para a atualização falhou" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -469,6 +465,9 @@ msgid "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Preparação do sistema para atualização falhou. Pro favor, reporte isso como " +"um bug do pacote 'update-manager' e inclua os arquivos no /var/log/dist-" +"upgrade/ no relatório do bug." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -487,8 +486,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Depois que a sua informação do pacote foi atualizada, o pacote essencial '%" -"s' não pôde mais ser encontrado.\n" +"Depois que a sua informação do pacote foi atualizada, o pacote essencial " +"'%s' não pôde mais ser encontrado.\n" "Isso indica uma falha grave, por favor reporte isso como um erro no pacote " "do 'update-manager' e inclua os arquivos contidos em /var/log/dist-upgrade/ " "no relatório de erros." @@ -509,7 +508,6 @@ msgstr "Buscando programas obsoletos" msgid "System upgrade is complete." msgstr "A atualização do sistema está completa." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -526,7 +524,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Obtendo arquivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Restam %s aproximadamente" @@ -538,7 +536,6 @@ msgstr "Obtendo arquivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando mudanças" @@ -557,8 +554,7 @@ msgstr "" "'update-manager' e inclua os arquivos em /var/log/dist-upgrade/ no relatório " "de erros." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -567,56 +563,57 @@ msgstr "" "Substituir o arquivo de configurações customizadas\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Você irá perder qualquer mudança que tenha feito nesse arquivo de " +"configuração se você escolher substituir ele por uma versão mais nova." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-upgrade." -"log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização será " -"abortada agora.\n" +"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-" +"upgrade.log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização " +"será abortada agora.\n" "Seu sources.list original foi salvo em /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacote será removido." msgstr[1] "%d pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será atualizado." msgstr[1] "%d pacotes serão atualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -627,7 +624,7 @@ msgstr "" "\n" "Você tem que baixar um total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -635,17 +632,16 @@ msgstr "" "A obtenção e instalação da atualização pode levar muitas horas e não poderá " "ser cancelada depois." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -653,17 +649,17 @@ msgstr "" "Não há atualizações disponíveis para o seu sistema. A atualização será " "cancelada agora." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Atualizar %s" @@ -689,13 +685,14 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Esse download irá durar %s com uma conexão ADSL de 1Mbps e %s com um modem " +"56k" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -711,7 +708,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -731,7 +727,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicie o seu sistema para finalizar a atualização" +msgstr "" +"Reinicie o seu sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -775,17 +772,18 @@ msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Cancelar Atualização" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Continuar" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Manter" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Substituir" @@ -803,7 +801,7 @@ msgstr "Continua_r Atualização" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Iniciar Atualização" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -821,7 +819,6 @@ msgstr "Não foi possível obter as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor, verifique sua conexão de internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Não foi possível executar a ferramenta de atualização" @@ -897,12 +894,12 @@ msgstr "" #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "Baixando arquivo %(current)li de %(total)li a %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "Baixando arquivo %(current)li de %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" @@ -913,24 +910,25 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Essa lista de mudanças não está disponível ainda.\n" +"Por favor tente mais tarde." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Falha ao baixar a lista de mudanças. \n" +"Por favor verifique sua conexão internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Principais Atualizações de Segurança" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Atualizações recomendadas" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Atualizações sugeridas" @@ -941,9 +939,8 @@ msgstr "Backports" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Atualizações da distribuição" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras atualizações" @@ -955,7 +952,7 @@ msgstr "Versão %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "Baixando lista de mudanças..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -965,7 +962,6 @@ msgstr "_Desmarcar Todos" msgid "_Check All" msgstr "_Marcar Todos" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -993,14 +989,13 @@ msgstr "Verificando por atualizações" #: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "Da versão %(old_version)s para %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versão %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1025,7 +1020,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uma nova versão da distribuição '%s' está disponível" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O index do software está quebrado" @@ -1040,23 +1034,19 @@ msgstr "" "Gerenciador de Pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" " "em um terminal para resolver esse problema primeiro." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1069,6 +1059,11 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Você deve marcar para a atualização manualmente\n" +"\n" +"Seu sistema não verifica as atualizações automaticamente. Você deve " +"configurar esse comportamento em Fontes de Softwares na aba " +"Atualizações Internet." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1161,10 +1156,15 @@ msgid "_Install Updates" msgstr "_Instalar Atualizações" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "At_ualizar" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "mudanças" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "atualizações" @@ -1288,8 +1288,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação sobre programas disponíveis está desatualizada\n" +"A informação sobre programas disponíveis está " +"desatualizada\n" "\n" "Para instalar programas e atualizações de fontes recentemente adicionadas ou " "alteradas, você tem que recarregar as informações sobre programas " @@ -1399,7 +1399,8 @@ msgstr "Exibir detalhes de uma atualização" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" +msgstr "" +"Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1416,233 +1417,190 @@ msgstr "O tamanho da janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os canais de software e atualizações via internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores proprietários para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restrito" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Programa de Código Aberto mantido pela Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela Comunidade (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Programa de Código Aberto mantido pela Comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Drivers Não-livres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores proprietários para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Programas restritos (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Software restrito por copyright ou problemas legais" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Atualizações \"Backport\"" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Atualizações do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Atualizações do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela Comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livres (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Não é mais suportado oficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrito" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Atualizações do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testando)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instável)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programa compatível com a DFSG mas com Dependências Não-Livres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1656,22 +1614,22 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "A unresolvable problem occured while calculating the upgrade.\n" #~ "\n" -#~ "Please report this bug against the 'update-manager' package and include " -#~ "the files in /var/log/dist-upgrade/ in the bugreport." +#~ "Please report this bug against the 'update-manager' package and include the " +#~ "files in /var/log/dist-upgrade/ in the bugreport." #~ msgstr "" -#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por " -#~ "favor relate isto como um erro." +#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por favor " +#~ "relate isto como um erro." #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "O seu sistema não possui um pacote ubuntu-desktop, kubuntu-desktop ou " -#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você " -#~ "está executando.\n" +#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você está " +#~ "executando.\n" #~ "Por favor instale um desses pacotes primeiro usando o Synaptic ou apt-get " #~ "antes de continuar." @@ -1680,9 +1638,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. " -#~ "Você poderá reabilitá-las depois de atualizar com a ferramenta " -#~ "'propriedades do programa' ou com o synaptic." +#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. Você " +#~ "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " +#~ "programa' ou com o synaptic." #~ msgid "Some software no longer officially supported" #~ msgstr "Alguns softwares não são mais oficialmente suportado." @@ -1700,6 +1658,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " #~ "sugeridos à remoção no próximo passo. " +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1707,16 +1666,19 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Substituir arquivo de configuração\n" #~ "'%s' ?" +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pacote será removido." #~ msgstr[1] "%s pacotes serão removidos." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s novo pacote será instalado." #~ msgstr[1] "%s novos pacotes serão instalados." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pacote será atualizado." @@ -1728,9 +1690,10 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "Seu sistema já foi atualizado." +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" #~ msgstr "" #~ "Este download demorará cerca de %s com um modem 56k e cerca de %s com uma " #~ "conexão 1Mbit DSL." @@ -1738,26 +1701,27 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atualizando para o Ubuntu 6.10" +#~ "Atualizando para o Ubuntu 6.10" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" #~ "Falha na verificação da atualização. Pode haver um problema com a rede ou " #~ "com o servidor. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Obtendo arquivo %li de %li a %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de alterações não está disponível ainda. Por favor, tente " -#~ "novamente mais tarde." +#~ "A lista de alterações não está disponível ainda. Por favor, tente novamente " +#~ "mais tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1793,21 +1757,21 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Select _All" #~ msgstr "Selecion_ar Todos" +#, python-format #~ msgid "From version %s to %s" #~ msgstr "Da versão %s para %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Você deve verificar por atualizações manualmente\n" #~ "\n" #~ "O seu sistema não procura por atualizações automaticamente. Você pode " -#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> " -#~ "\"Propriedades de Programas\"." +#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> \"Propriedades " +#~ "de Programas\"." #~ msgid "" #~ "Examining your system\n" @@ -1817,8 +1781,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Verificando as Atualizações Disponíveis\n" #~ "\n" -#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades " -#~ "de segurança, e prover novas funcionalidades para você." +#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " +#~ "segurança, e prover novas funcionalidades para você." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _Download" @@ -1826,8 +1790,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1839,8 +1803,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Você necessita uma conexão de internet para continuar." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to add\n" +#~ "Enter the complete APT line of the source that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1853,8 +1817,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" #~ "Se a verificação automática de atualizações for desativada, você terá que " #~ "recarregar manualmente a lista de canais. Esta opção perminte que você " @@ -1881,17 +1845,18 @@ msgstr "Programas não compatíveis com a DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas atualizações requerem a remoção de outros pacotes.Use a função " -#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou " -#~ "rode \"sudo apt-get dist-upgrade\" em um terminal para atualizar seu " -#~ "sistema completamente." +#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou rode " +#~ "\"sudo apt-get dist-upgrade\" em um terminal para atualizar seu sistema " +#~ "completamente." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes atualizações serão puladas:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Aproximadamente %li segundos restando" @@ -1912,8 +1877,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo " -#~ "tempo" +#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1972,8 +1936,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Backports do Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Enquanto analisava as informações de repositórios não foi encontrada uma " #~ "entrada válida para a atualização.\n" @@ -2024,12 +1988,12 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" #~ "Não há espaço suficiente no seu sistema para obter os pacotes requeridos. " -#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-" -#~ "get clean'" +#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-get " +#~ "clean'" #~ msgid "Error fetching the packages" #~ msgstr "Erro ao obter os pacotes" @@ -2039,8 +2003,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" #~ "Alguns problemas ocorreram durante a obtenção dos pacotes. Isso é bem " -#~ "provável que seja por problemas de rede. Por favor verifique a sua " -#~ "conexão de rede e tente novamente. " +#~ "provável que seja por problemas de rede. Por favor verifique a sua conexão " +#~ "de rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -2065,11 +2029,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Tem certeza que deseja cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " #~ msgstr "" -#~ "Cancelar durante a atualização pode deixar o sistema em um estado " -#~ "instável. É fortemente recomendável que a operação continue. " +#~ "Cancelar durante a atualização pode deixar o sistema em um estado instável. " +#~ "É fortemente recomendável que a operação continue. " #, fuzzy #~ msgid "Sources" @@ -2092,13 +2056,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -2118,16 +2082,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -2152,11 +2116,11 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -2189,13 +2153,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -2204,11 +2166,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -2218,33 +2180,33 @@ msgstr "Programas não compatíveis com a DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "There is a new release of Ubuntu available!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -2276,10 +2238,10 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." \ No newline at end of file diff --git a/po/qu.po b/po/qu.po index 78b14d30..ca3261c1 100644 --- a/po/qu.po +++ b/po/qu.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:50+0000\n" +"Last-Translator: Rosetta Administrators \n" "Language-Team: Quechua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,6 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -313,7 +307,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -376,7 +369,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -387,7 +379,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -438,7 +429,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -466,7 +456,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -482,60 +471,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +530,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,7 +587,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -621,11 +606,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -692,6 +676,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -727,7 +712,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -817,17 +801,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -840,7 +821,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -862,7 +842,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -897,7 +876,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,7 +897,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -931,23 +908,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1044,10 +1017,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1269,229 +1246,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/ro.po b/po/ro.po index 5bde5c14..169a83c3 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?" -"1:2)\n" +"Plural-Forms: " +"nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?1:2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "După o lună" msgid "After %s days" msgstr "După %s zile" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s actualizări" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "Server principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,11 +122,12 @@ msgid "Error removing the key" msgstr "Eroare la ştergerea cheii." #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -169,7 +167,6 @@ msgstr "Este imposibilă actualizarea meta-pachetelor cerute" msgid "A essential package would have to be removed" msgstr "Un pachet esenţial ar trebui şters" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Imposibil de calculat actualizarea" @@ -182,7 +179,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -211,7 +207,6 @@ msgstr "" "Nu am reuşit să instalez pachetul cerut. Vă rugăm raportaţi acest lucru ca " "bug (eroare). " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Imposibl de ghicit meta-pachet" @@ -290,7 +285,6 @@ msgstr "" "Doriţi să rescrieţi fişierul 'sources.list' oricum? Dacă selectaţi 'Da' se " "vor modifica toate intrările din '%s' în '%s'." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generez surse implicite?" @@ -359,7 +353,6 @@ msgstr "" "pe disc pe %s. Goliţi coşul de gunoi şi ştergeţi pachetele temporare de la " "instalările vechi folosind 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" @@ -431,7 +424,6 @@ msgstr "" "O problemă a apărut în timpul acţiunii de curăţenie. Vă rugăm vedeţi mesajul " "de mai jos pentru informaţii suplimentare. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 #, fuzzy msgid "Restoring original system state" @@ -443,7 +435,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -478,8 +469,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"După ce informaţiile despre pachete au fost actualizate pachetul esenţial '%" -"s' nu mai poate fi găsit.\n" +"După ce informaţiile despre pachete au fost actualizate pachetul esenţial " +"'%s' nu mai poate fi găsit.\n" "Aceasta indică o eroare serioasă, vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." @@ -499,7 +490,6 @@ msgstr "Caut software învechit" msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -515,7 +505,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Descarc fişierul %li din %li la %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Mai rămâne aproximativ %s" @@ -527,7 +517,6 @@ msgstr "Se descarcă fişierul %li din %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Se aplică modificările" @@ -545,44 +534,42 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Comanda 'diff' nu a putut fi localizată" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "S-a produs o eroare fatală" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Vă rugăm raportaţi aceasta ca eroare şi includeţi fişierele /var/log/dist-" "upgrade/main.log şi /var/log/dist-upgrade/apt.log în raportul dumneavoastră. " "Actualizarea se orpeşte acum.\n" -"Fişierul iniţial sources.list a fost salvat în /etc/apt/sources.list." -"distUpgrade." +"Fişierul iniţial sources.list a fost salvat în " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -590,7 +577,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -598,7 +585,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -606,7 +593,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -617,7 +604,7 @@ msgstr "" "\n" "Trebuie să descărcaţi un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -625,35 +612,34 @@ msgstr "" "Descărcarea şi intalarea actualizărilor poate dura câteva ore şi nu poate fi " "abandonată mai târziu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi " "documentele." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Şterge %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalează %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualizează %s" @@ -679,7 +665,6 @@ msgid "%li seconds" msgstr "%li secunde" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -701,7 +686,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -777,6 +761,7 @@ msgid "_Keep" msgstr "_Păstrează" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Înlocuieşte" @@ -813,7 +798,6 @@ msgstr "Nu pot descărca notiţele de lansare" msgid "Please check your internet connection." msgstr "Verificaţi conexiunea internet" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nu pot rula utilitarul de actualizare" @@ -913,17 +897,14 @@ msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizări importante de securitate" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizări recomandate" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Pachete propuse" @@ -938,7 +919,6 @@ msgstr "Actualizări de securitate Ubuntu 5.04" msgid "Distribution updates" msgstr "_Continuă Actualizarea" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Alte actualizări" @@ -961,7 +941,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -989,7 +968,7 @@ msgid "Checking for updates" msgstr "_Instalează actualizarile" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versiunea nouă: %s (Mărime: %s)" @@ -998,7 +977,6 @@ msgstr "Versiunea nouă: %s (Mărime: %s)" msgid "Version %s" msgstr "Versiunea %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1023,7 +1001,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Noua versiune '%s' este disponibilă" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indexul software este deteriorat" @@ -1038,23 +1015,19 @@ msgstr "" "managerul de pachete \"Synaptic\" sau rulaţi \"sudo apt-get install -f\" " "într-un terminal pentru a remedia această problemă." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nimic" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1162,10 +1135,15 @@ msgid "_Install Updates" msgstr "_Instalează actualizări" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "A_ctualizează" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "modificări" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "actualizări" @@ -1322,9 +1300,9 @@ msgstr "" "Introduceţi linia APT completă a locaţiei pe care doriţi să o " "adăugaţi\n" "\n" -"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de exemplu" -"\"deb http://ftp.debian.org sarge main\". Puteţi găsi o descriere " -"detaliată a sintaxei în documentaţie." +"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de " +"exemplu\"deb http://ftp.debian.org sarge main\". Puteţi găsi o " +"descriere detaliată a sintaxei în documentaţie." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1407,235 +1385,191 @@ msgstr "Dimensiunea ferestrei" msgid "Configure the sources for installable software and updates" msgstr "Configurează sursele pentru software instalabil şi actualizări" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Software în contribuţie" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom cu Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pachete non-libere" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restricţionat (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom cu Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizări portate înapoi" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizări Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom cu Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Pachete suportate oficial" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizări Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pachete non-libere (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom cu Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Pachete suportate oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrictiv" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizări de securitate Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizări Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizări de securitate Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibil DFSG cu dependenţe negratuite" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software incompatibil DFSG" @@ -1753,13 +1687,13 @@ msgstr "Software incompatibil DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " -#~ "apăsând pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " +#~ "pe butonul Instalează." #~ msgid "Repository" #~ msgstr "Locaţie" @@ -1779,8 +1713,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "" #~ "Chei autentificare\n" #~ "\n" -#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul " -#~ "unei chei estede a permite verificarea integrităţii unui pachet software " +#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul unei " +#~ "chei estede a permite verificarea integrităţii unui pachet software " #~ "descărcat." #~ msgid "A_uthentication" @@ -1788,8 +1722,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Adăugaţi o nouă cheie în keyring-ul de încredere. Asiguraţi-vă că aţi " #~ "obţinut cheia printr-un canal sigur şi că aveţi încredere în proprietarul " @@ -1806,8 +1740,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Restaurează cheile implicite furnizate împreună cu distribuţia. Această " #~ "acţiune nu va influenţa cheile instalate ca utilizator." @@ -1832,8 +1766,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "Actualizările sunt în curs de aplicare." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1843,8 +1777,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1867,13 +1801,13 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " -#~ "apăsând pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " +#~ "pe butonul Instalează." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/ru.po b/po/ru.po index a5b5e36a..da731af8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-03 02:07+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Через месяц" msgid "After %s days" msgstr "Через %s дней" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s обновлений" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Основной сервер" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Ошибка при удалении ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." @@ -168,7 +166,6 @@ msgstr "Невозможно обновить требуемые мета-пак msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" @@ -185,7 +182,6 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" @@ -213,7 +209,6 @@ msgstr "" "Невозможно установить необходимый пакет. Пожалуйста, отправьте отчет об " "ошибке. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" @@ -293,7 +288,6 @@ msgstr "" "обновлены все записи '%s' на '%s'.\n" "Ответ 'Нет' отменит обновление." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" @@ -306,8 +300,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"В результате просмотра 'sources.list' не найдена действующая запись для '%" -"s'.\n" +"В результате просмотра 'sources.list' не найдена действующая запись для " +"'%s'.\n" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." @@ -364,7 +358,6 @@ msgstr "" "%s. Очистите вашу корзину и удалите временные пакеты, оставшиеся от " "предыдущих установок с помощью команды 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" @@ -441,7 +434,6 @@ msgstr "" "При очистке возникла проблема. Более полная информация приведена в сообщении " "ниже. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" @@ -452,7 +444,6 @@ msgid "Fetching backport of '%s'" msgstr "Загрузка '%s' из репозитария backports" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -460,7 +451,7 @@ msgstr "Проверка менеджера пакетов" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Подготовка к обновлению завершилась неудачей" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -468,6 +459,9 @@ msgid "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Подготовка системы к обновлению завершилась неудачей. Пожалуйста, отправьте " +"отчет об ошибке приложения 'update-manager' и приложите к отчету файлы в " +"/var/log/dist-upgrade/." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -506,7 +500,6 @@ msgstr "Поиск устаревших программ" msgid "System upgrade is complete." msgstr "Обновление системы завершено." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -522,7 +515,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Загрузка файла %li из %li со скоростью %s/с" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Осталось приблизительно %s минут" @@ -534,7 +527,6 @@ msgstr "Загрузка файла %li из %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Применение изменений" @@ -552,8 +544,7 @@ msgstr "" "Обновление прервано. Пожалуйста сообщите об ошибке в пакете 'update-manager' " "и включите файлы, находящиеся в /var/log/dist-upgrade/ в сообщение об ошибке" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -562,35 +553,36 @@ msgstr "" "Заменить изменённый конфигурационный файл\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Вы потеряете все изменения, которые сделали в этом файле конфигурации, если " +"замените его новой версией." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Не найдена команда 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Произошла неисправимая ошибка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Пожалуйста, отправьте отчет об ошибке и включите в него файлы /var/log/dist-" "upgrade.log и /var/log/dist-upgrade-apt.log. Обновление прервано.\n" -"Оригинальный файл sources.list был сохранен как /etc/apt/sources.list." -"distUpgrade." +"Оригинальный файл sources.list был сохранен как " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -598,7 +590,7 @@ msgstr[0] "%d пакет будет удален." msgstr[1] "%d пакета будут удалены." msgstr[2] "%d пакетов будут удалены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -606,7 +598,7 @@ msgstr[0] "%d новый пакет будет установлен." msgstr[1] "%d новых пакета будут установлены." msgstr[2] "%d новых пакетов будут установлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -614,7 +606,7 @@ msgstr[0] "%d пакет будет обновлен." msgstr[1] "%d пакета будут обновлены." msgstr[2] "%d пакетов будут обновлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -625,7 +617,7 @@ msgstr "" "\n" "Всего требуется загрузить %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -633,35 +625,34 @@ msgstr "" "Загрузка и установка обновлений может занять несколько часов и не может быть " "прервано в любой момент." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Для вашей системы не доступно ни одно обновление. Обновление будет отменено." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Удалить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Установить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Обновить %s" @@ -687,13 +678,14 @@ msgid "%li seconds" msgstr "%li секунд" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Эта загрузка займет примерно %s при использовании 1Мбит DSL-соединения и " +"примерно %s при использовании модема на скорости 56кбит" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -702,12 +694,12 @@ msgstr "Требуется перезагрузка" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" +msgstr "" +"Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -771,17 +763,18 @@ msgstr "Терминал" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "Отменить обновление" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "Продолжить" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "Оставить" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Заменить" @@ -799,7 +792,7 @@ msgstr "Продолжить обновление" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "Начать обновление" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -817,7 +810,6 @@ msgstr "Не могу загрузить сведения о релизе" msgid "Please check your internet connection." msgstr "Пожалуйста, проверьте соединение с интернет." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Невозможно запустить утилиту обновления" @@ -908,24 +900,25 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Список изменений еще недоступен.\n" +"Пожалуйста, повторите попытку позже." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Ошибка при загрузке списка изменений. \n" +"Пожалуйста, проверьте ваше соединение с Интернет." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Важные обновления безопасности" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Рекомендованые обновления" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Предлагаемые обновления" @@ -938,7 +931,6 @@ msgstr "Бэкпорты" msgid "Distribution updates" msgstr "Обновления дистрибутива" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Прочие обновления" @@ -960,7 +952,6 @@ msgstr "Сбросить все" msgid "_Check All" msgstr "Проверить все" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -996,7 +987,6 @@ msgstr "С версии %(old_version)s на %(new_version)s" msgid "Version %s" msgstr "Версия %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1021,7 +1011,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индекс программ поврежден" @@ -1036,23 +1025,19 @@ msgstr "" "используйте менеджер пакетов \"Synaptic\" или запустите в терминале \"sudo " "apt-get install -f\"." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Нет" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Кб" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Кб" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1161,10 +1146,15 @@ msgid "_Install Updates" msgstr "Установить обновления" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Обновить" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "изменения" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "обновления" @@ -1413,251 +1403,207 @@ msgstr "Размер окна" msgid "Configure the sources for installable software and updates" msgstr "Настроить источники установки программ и обновлений" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Поддерживается сообществом" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Проприетарные драйвера устройств" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Несвободное ПО" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM с Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Open Source приложения, поддерживаемые Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Поддерживается сообществом (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Поддерживаемое сообществом свободное ПО" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Несвободные драйвера" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Проприетарные драйвера устройств " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Несвободное обеспечение (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Программы, ограниченные патентами или законами" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD с Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Обновления в бэкпортах" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD с Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Обновления Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 бэкпорты" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официально поддерживается" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Обновления безопасности Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Обновления Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 бэкпорты" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддерживается сообществом (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободное (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Официально больше не поддерживается" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограниченные авторские права" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Обновления безопасности Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Обновления Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 бэкпорты" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Обновления безопасности Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-совместимое ПО с зависимостями от несвободного ПО" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by " -#~ "a script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." #~ msgstr "" #~ "Если вы замените файл его поздней версией, вы потеряете все изменения " #~ "сделанные вами или скриптами." +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" #~ msgstr "" #~ "Скачивание займёт примерно %s при 56к модеме и примерно %s при 1Мбит DSL-" #~ "подключении" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте " -#~ "позднее." +#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1674,6 +1620,7 @@ msgstr "Не-DFSG-совместимое ПО" #~ "Программное обеспечение, ограниченное копирайтом или другими правовыми " #~ "проблемами" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Загрузка файла %li из %li с неизвестной скоростью" @@ -1724,17 +1671,17 @@ msgstr "Не-DFSG-совместимое ПО" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Некоторые обновления требуют удаления других приложений. Для полного " -#~ "обновления системы используйте функцию \"Пометить все обновления\" " -#~ "менеджера пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get " -#~ "dist-upgrade\"." +#~ "обновления системы используйте функцию \"Пометить все обновления\" менеджера " +#~ "пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get dist-upgrade\"." #~ msgid "The following updates will be skipped:" #~ msgstr "Следующие обновления будут пропущены:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Осталось приблизительно %li секунд" @@ -1810,4 +1757,4 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgstr "Обновления Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/rw.po b/po/rw.po index 506ca601..6455a0e8 100644 --- a/po/rw.po +++ b/po/rw.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:43+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" "MIME-Version: 1.0\n" @@ -63,15 +63,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Kwinjiza porogaramu" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -81,7 +79,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -136,7 +133,8 @@ msgstr "i Urufunguzo" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -173,7 +171,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -187,7 +184,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -211,7 +207,6 @@ msgid "" "bug. " msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -271,7 +266,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -329,7 +323,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -392,7 +385,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -403,7 +395,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -457,7 +448,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -473,7 +463,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -485,7 +475,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -502,57 +491,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -560,40 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -619,7 +605,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -639,7 +624,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +696,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Kongera Gutangiza" @@ -750,7 +735,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -846,18 +830,15 @@ msgid "" msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "5" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -873,14 +854,13 @@ msgstr "5" msgid "Distribution updates" msgstr "Byarangiye" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Kwinjiza porogaramu" #: ../UpdateManager/UpdateManager.py:478 -#, fuzzy, python-format +#, fuzzy msgid "Version %s: \n" msgstr "Verisiyo \n" @@ -897,14 +877,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" @@ -928,11 +907,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Verisiyo" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -955,7 +933,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -967,23 +944,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1084,10 +1057,15 @@ msgstr "Kwinjiza porogaramu" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Byarangiye" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Amahinduka" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1328,252 +1306,207 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Kohereza Nta gukoresha bisesuye" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Kigenga" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Kigenga" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 #, fuzzy msgid "Non-free (Multiverse)" msgstr "Kigenga" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "Uburenganzira bw'umuhimbyi" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "5" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "4. 10" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1704,8 +1637,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "> Ukoresha: Utubuto" @@ -1792,8 +1725,7 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "i Bya i Igikorwa Nka gukora iyinjizaporogaramu:%s Cyangwa ni Bya ngombwa " #~ "Gukoresha Cyangwa Kubona Kuri i" @@ -1808,8 +1740,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1824,16 +1756,16 @@ msgstr "" #, fuzzy #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi " -#~ "Ibyangombwa HTTP www org kugirango Ibisobanuro" +#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi Ibyangombwa " +#~ "HTTP www org kugirango Ibisobanuro" #, fuzzy #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "A Gishya Na: i ni Bihari HTTP www org kugirango Amabwiriza" #, fuzzy @@ -1842,8 +1774,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1872,4 +1804,4 @@ msgstr "" #, fuzzy #~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "com" +#~ msgstr "com" \ No newline at end of file diff --git a/po/sk.po b/po/sk.po index 50335ccb..e8f9c5da 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:43+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" @@ -55,17 +55,15 @@ msgstr "Po mesiaci" msgid "After %s days" msgstr "Po %s dňoch" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Nainštalovať _aktualizácie" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy, python-format +#, fuzzy msgid "%s (%s)" msgstr "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,11 +123,12 @@ msgid "Error removing the key" msgstr "Chyba pri odstraňovaní kľúča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Nemôžem aktualizovať požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" @@ -184,7 +181,6 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" @@ -210,7 +206,6 @@ msgid "" "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." @@ -283,7 +278,6 @@ msgstr "" "nahradené všetky '%s' záznamy '%s' záznamami.\n" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" @@ -296,8 +290,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre '%" -"s'.\n" +"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre " +"'%s'.\n" "\n" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." @@ -356,7 +350,6 @@ msgstr "" "vyprázdnením svojho kôša, prípadne odstránením dočasných inštalačných " "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" @@ -432,7 +425,6 @@ msgstr "" "Počas čistenia sa vyskytli problémy. Pre viac informácií si pozrite nižšie " "uvedené správy. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" @@ -443,7 +435,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -473,7 +464,7 @@ msgid "Invalid package information" msgstr "Neplatná informácia o balíku" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -481,8 +472,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík '%" -"s'.\n" +"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík " +"'%s'.\n" "To znamená závažný problém. Nahláste to ako chybu." #: ../DistUpgrade/DistUpgradeControler.py:733 @@ -501,7 +492,6 @@ msgstr "Vyhľadávanie zastaraného softvéru" msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -513,24 +503,23 @@ msgid "Fetching is complete" msgstr "Aktualizácia je dokončená" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "Zostáva %li minút" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Sťahujem %li súbor z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikujem zmeny" @@ -546,9 +535,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -556,62 +544,61 @@ msgstr "" "Nahradiť konfiguračný súbor\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Príkaz 'diff' nebol nájdený." -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Nastala závažná chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nahláste to ako chybu a k svojmu hláseniu priložte súbory /var/log/dist-" "upgrade.log a /var/log/dist-upgrade-apt.log. Aktualizácia bude teraz " "prerušená.\n" -"Váš pôvodný súbor 'sources.list' bol uložený ako /etc/apt/sources.list." -"distUpgrade." +"Váš pôvodný súbor 'sources.list' bol uložený ako " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bude odstránený %s balík." msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bude nainštalovaný %s nový balík." msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bude aktualizovaný %s balík." msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -621,52 +608,52 @@ msgstr "" "\n" "Musíte stiahnuť celkom %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." +msgstr "" +"Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Odstrániť %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Inštalovať %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Aktualizovať %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Zostáva %li dní %li hodín %li minút" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Zostáva %li hodín %li minút" @@ -681,7 +668,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -703,7 +689,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -780,6 +765,7 @@ msgid "_Keep" msgstr "_Ponechať" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Nahradiť" @@ -816,7 +802,6 @@ msgstr "Nebolo možné stiahnuť poznámky k vydaniu" msgid "Please check your internet connection." msgstr "Skontrolujte si internetové pripojenie." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nebolo možné spustiť aktualizačný program" @@ -890,12 +875,12 @@ msgstr "" "problémom alebo nedostupňosťou servera. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Sťahovanie súboru %li z %li pri %s/s" @@ -920,18 +905,15 @@ msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -947,7 +929,6 @@ msgstr "Ubuntu 5.10 - backporty" msgid "Distribution updates" msgstr "_Pokračovať v aktualizácii" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -972,7 +953,6 @@ msgstr "" msgid "_Check All" msgstr "_Skontrolovať" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1000,16 +980,15 @@ msgid "Checking for updates" msgstr "Kontrolujem aktualizácie..." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verzia: %s (veľkosť: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Verzia %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1027,15 +1006,14 @@ msgid "" msgstr "" "Nebudete mať k dispozícii žiadne nové bezpečnostné ani kritické " "aktualizácie. Prejdite preto na najnovšiu verziu distribúcie Ubuntu Linux. " -"Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." -"com.\"" +"Pre viac informácií o prechode na novšiu verziu si pozrite " +"http://www.ubuntu.com.\"" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "K dispozícii je nové vydanie distribúcie '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Index softvéru je poškodený" @@ -1050,24 +1028,20 @@ msgstr "" "Na odstránenie tohto problému použite správcu balíkov 'Synaptic' alebo " "spustite 'sudo apt-get install -f' v termáli." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "Žiadna" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1179,10 +1153,15 @@ msgstr "Nainštalovať _aktualizácie" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Aktualizovať" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Zmeny" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1344,11 +1323,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete pridať\n" +"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " +"pridať\n" "\n" -"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " -"\"deb·http://ftp.debian.org·sarge·main\"." +"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " +"\"deb·http://ftp.debian.org·sarge·main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1440,250 +1419,206 @@ msgstr "Veľkosť okna" msgid "Configure the sources for installable software and updates" msgstr "Nastaviť zdroje softvéru a internetové aktualizácie" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 - aktualizácie" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Udržiavané komunitou (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Softvér závislý na neslobornom softvéri" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Udržiavané komunitou (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neslobodné (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neslobodné (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 - aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 - backporty" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálne podporované" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 - aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 - backporty" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodné (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Niektoré programy už nie sú viac oficiálne podporované" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "S obmedzujúcou licenciou" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 - backporty" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Softvér kompatibilný s DFSG bez závislostí na neslobodnom softvére" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" @@ -1692,6 +1627,7 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Softvér s obmedzených exportom pre USA" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" @@ -1715,8 +1651,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Prebieha aktualizácia na Ubuntu " -#~ "6.06 LTS" +#~ "Prebieha aktualizácia na Ubuntu 6.06 " +#~ "LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1745,17 +1681,18 @@ msgstr "Softvér nekompatibilný s DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste " -#~ "vykonali úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie" -#~ "\" správcu balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade" -#~ "\" v termináli." +#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste vykonali " +#~ "úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie\" správcu " +#~ "balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade\" v " +#~ "termináli." #~ msgid "The following updates will be skipped:" #~ msgstr "Nasledujúce balíky nebudú aktualizované:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zostáva %li sekúnd" @@ -1838,15 +1775,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Nebol nájdený žiadny platný záznam" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na " -#~ "použitie pre upgrade.\n" +#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na použitie " +#~ "pre upgrade.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Upgrade neočakávane skončil. Váš systém môže byt v nestabilnom stave. Pre " #~ "opravu skúste teraz spustiť (dpkg --configure -a)." @@ -1855,8 +1792,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log " -#~ "a ~/dist-upgrade-apt.log. Upgrade teraz skončí. " +#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log a " +#~ "~/dist-upgrade-apt.log. Upgrade teraz skončí. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1871,14 +1808,14 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených " -#~ "vo vašich zdrojoch softvéru. Chcete to urobiť teraz?" +#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených vo " +#~ "vašich zdrojoch softvéru. Chcete to urobiť teraz?" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analyzuje sa váš systém\n" #~ "\n" @@ -1886,8 +1823,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Softvérové aktualizácie môžu opravovať chyby, odstraňovať bezpečnostné " #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." @@ -1898,15 +1835,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "installed therefor" #~ msgstr "" #~ "Automaticky budú inštalované len bezpečnostné aktualizácie z oficiálnych " -#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček " -#~ "'unattended-upgrades'." +#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček 'unattended-" +#~ "upgrades'." #~ msgid "Sections" #~ msgstr "Sekcie:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1914,8 +1851,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " #~ "pridať\n" #~ "\n" -#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " -#~ "\"deb·http://ftp.debian.org·sarge·main\"." +#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " +#~ "\"deb·http://ftp.debian.org·sarge·main\"." #~ msgid "Sections:" #~ msgstr "Sekcie:" @@ -1947,8 +1884,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "umožňuje overiť integritu stiahnutého softvéru." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Pridať nový kľúč do zväzku dôveryhodných kľúčov. Uistite sa, že ste kľúč " #~ "dostali bezpečnou cestou, a že môžete veriť jeho vydavateľovi. " @@ -1978,8 +1915,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Maximálna veľkosť archívu na disku (v MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Obnoví pôvodné kľúče dodávané s vašou distribúciou. Toto neovplyvní " #~ "používateľom nainštalovnané kľúče." @@ -2011,8 +1948,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostupné aktualizácie\n" #~ "\n" @@ -2093,8 +2030,7 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr[2] "Vybrali ste %s balíkov na aktualizáciu, veľkosť %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[1] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[2] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" @@ -2103,8 +2039,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Práve prebieha aktualizácia." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Môžete mať spustenú najviac jednu aplikáciu na správu balíkov. Prosím, " #~ "najprv zavrite druhú aplikáciu." @@ -2117,8 +2053,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Prejdite prosím, na novšiu verziu distribúcie Ubuntu Linux. Verzia, ktorú " #~ "používate nie je viac podporovaná. To znamená, že už nie sú k dispozícii " @@ -2129,12 +2065,12 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Bola nájdená novšia verzia Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". " -#~ "Pre viac informácií o prechode na vyššiu verziu si pozrite http://www." -#~ "ubuntulinux.org." +#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". Pre " +#~ "viac informácií o prechode na vyššiu verziu si pozrite " +#~ "http://www.ubuntulinux.org." #~ msgid "Never show this message again" #~ msgstr "Už viac nezobrazovať toto upozornenie" @@ -2147,4 +2083,4 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "A_utentifikácia" #~ msgid "Packages to install:" -#~ msgstr "Balíky na inštaláciu:" +#~ msgstr "Balíky na inštaláciu:" \ No newline at end of file diff --git a/po/sl.po b/po/sl.po index 34f6b509..e02fc98a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-01 13:08+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%" -"100==4 ? 2 : 3\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Po enem mesecu" msgid "After %s days" msgstr "Po %s dnevih" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Napaka pri odstranitvi kluča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Kluč, katerega ste izbrali, se ne more odstraniti. Prosim, javite to kot " "napako." @@ -155,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Vaš sistem vsebuje pokvarjene pakete, ki se ne morejo obnoviti s to " -"programsko opremo.\r\n" +"programsko opremo. \n" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." @@ -167,7 +165,6 @@ msgstr "Ne morem nadgraditi zahtevanih meta-paketov" msgid "A essential package would have to be removed" msgstr "Bistven paket se bo moral odstraniti" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ne morem izračunati nadgradnje" @@ -180,7 +177,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Napaka pristnosti nekaterih paketov" @@ -196,7 +192,7 @@ msgstr "" "paketov." #: ../DistUpgrade/DistUpgradeCache.py:312 -#, fuzzy, python-format +#, fuzzy msgid "Can't install '%s'" msgstr "Ne morem namestiti '%s'" @@ -207,7 +203,6 @@ msgid "" msgstr "" "Nemogoče je bilo namestiti zahtevani paket. Prosim, javite to kot napaka. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ne morem ugibati meta-paketa" @@ -275,7 +270,6 @@ msgstr "" "izberete 'Yes', vam bo posodobilo vse vhode iz '%s' v '%s'.\n" "Če izberete 'no', se bo posodobitev prekinila." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Proizvedem pomanjkljive izvore?" @@ -343,7 +337,6 @@ msgstr "" "prostora na %s. Izpraznite koš in odstranite začasne pakete prejšnjih " "namesitev z uporabo 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Želite pričeti z nadgradnjo?" @@ -410,7 +403,6 @@ msgstr "" "Med čiščenjem je prišlo do problema. Prosim, poglejte sporočilo spodaj za " "več informacij. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -421,7 +413,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -472,7 +463,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "Nadgrajevanje sistema je dokončano" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -488,7 +478,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -500,7 +490,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -516,39 +505,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -557,7 +544,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -566,7 +553,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -575,7 +562,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -583,39 +570,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Odstrani %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Namesti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Nadgradi %s" @@ -641,7 +627,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -661,7 +646,6 @@ msgstr "Nadgrajevanje je končano in potreben je ponoven zagon" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -732,6 +716,7 @@ msgid "_Keep" msgstr "_Obdrži" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Zamenjaj" @@ -767,7 +752,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -857,17 +841,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -880,7 +861,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -902,7 +882,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -939,7 +918,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -961,7 +939,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -973,23 +950,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1086,10 +1059,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Nadgradi %s" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1311,229 +1289,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/sq.po b/po/sq.po index e362c418..f5a258aa 100644 --- a/po/sq.po +++ b/po/sq.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-30 21:20+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Pas një muaji" msgid "After %s days" msgstr "Pas %s ditësh" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s përmirësimet" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Gabim gjatë largimit të çelësit" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Çelësi i zgjedhur nuk mund të largohet.Ju lutemi krijoni këtu një raport për " "gabimin." @@ -170,7 +168,6 @@ msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." msgid "A essential package would have to be removed" msgstr "Një paketë themelore u deshtë të largohej" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Aktualizimi nuk mund të llogaritej" @@ -185,7 +182,6 @@ msgstr "" "Një problem i pazgjidhshëm ndodhi gjatë aktualizimit.Ju lutemi krijoni një " "raport për këtë gabim." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." @@ -213,7 +209,6 @@ msgstr "" "Një paketë i nevojshëm nuk mundi të instalohet.Ju lutemi raportoni këtë " "problem. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -278,7 +273,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -335,7 +329,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -398,7 +391,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -409,7 +401,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -460,7 +451,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -476,7 +466,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -488,7 +478,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -504,60 +493,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -565,39 +552,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -623,7 +609,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -643,11 +628,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -714,6 +698,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -749,7 +734,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -839,17 +823,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -862,7 +843,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -884,7 +864,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -919,7 +898,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -941,7 +919,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -953,23 +930,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1066,10 +1039,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1291,229 +1268,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/sr.po b/po/sr.po index 7de46d87..260a66e0 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-01 10:04+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Posle jednog meseca" msgid "After %s days" msgstr "Posle %s dana" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgstr "Грешка у уклањању кључа" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Кључ који сте изабрали није могуће уклонити. Молим вас пријавите ово као " "грешку." @@ -173,7 +171,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -186,7 +183,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -209,7 +205,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -269,7 +264,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -320,17 +314,16 @@ msgid "Not enough free disk space" msgstr "Нема довољно места на диску" #: ../DistUpgrade/DistUpgradeControler.py:369 -#, fuzzy, python-format +#, fuzzy 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 using 'sudo " "apt-get clean'." msgstr "" -"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску %" -"s. Испразните канту за отпаtке и уклоните привремене пакете предходних " +"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску " +"%s. Испразните канту за отпаtке и уклоните привремене пакете предходних " "инсталација користећи команду 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -393,7 +386,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -404,7 +396,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -456,7 +447,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "Унапређење система је завршено" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -472,7 +462,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -484,7 +474,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -500,40 +489,38 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 #, fuzzy msgid "The 'diff' command was not found" msgstr "Команда 'diff' није нађена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -541,7 +528,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -549,7 +536,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -557,7 +544,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -565,41 +552,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "" "Да би спречили губитак података затворите све активне програме и документа." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Унапреди %s" @@ -625,7 +611,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -646,7 +631,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,6 +702,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -753,7 +738,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -843,17 +827,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -866,7 +847,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -888,7 +868,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -924,7 +903,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -946,7 +924,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -958,23 +935,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1071,10 +1044,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Унапреди %s" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1296,229 +1274,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/sv.po b/po/sv.po index 3630e8d5..e3ede40a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 03:32+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 05:06+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" @@ -56,7 +56,6 @@ msgstr "Efter en månad" msgid "After %s days" msgstr "Efter %s dagar" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "Uppdateringar för %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Huvudserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Fel vid borttagning av nyckeln" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Nyckeln du valde kan inte tas bort. Rapportera detta som ett fel." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -168,7 +166,6 @@ msgstr "Kan inte uppdatera de obligatoriska meta-paketen" msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppgraderingen" @@ -185,7 +182,6 @@ msgstr "" "Rapportera det här felet mot paketet \"update-manager\" och inkludera " "filerna i /var/log/dist-upgrade/ i felrapporten." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" @@ -213,7 +209,6 @@ msgstr "" "Det var inte möjligt att installera ett nödvändigt paket. Rapportera detta " "som ett fel. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" @@ -296,7 +291,6 @@ msgstr "" "här kommer det att uppdatera alla \"%s\" till \"%s\".\n" "Om du väljer \"Nej\" kommer uppdateringen avbrytas." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generera standardkällor?" @@ -368,7 +362,6 @@ msgstr "" "papperskorg och ta bort temporära paket från tidigare installationer genom " "att använda \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppgraderingen?" @@ -388,8 +381,8 @@ msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " "En återhämtning kördes (dpkg --configure -a).\n" "\n" -"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i /" -"var/log/dist-upgrade/ i felrapporten." +"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i " +"/var/log/dist-upgrade/ i felrapporten." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -445,7 +438,6 @@ msgstr "" "Något fel inträffade vid upprensningen. Se meddelandet nedan för mer " "information. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Återställer ursprungligt systemtillstånd" @@ -456,7 +448,6 @@ msgid "Fetching backport of '%s'" msgstr "Hämtar bakåtportering av \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -473,8 +464,8 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Förberedelse av systemet för uppgraderingen misslyckades. Rapportera det här " -"som ett fel mot paketet \"update-manager\" och inkludera filerna i /var/log/" -"dist-upgrade/ i felrapporten." +"som ett fel mot paketet \"update-manager\" och inkludera filerna i " +"/var/log/dist-upgrade/ i felrapporten." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -515,7 +506,6 @@ msgstr "Söker efter föråldrad programvara" msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -531,7 +521,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Hämtar fil %li av %li i %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Ungefär %s återstående" @@ -543,7 +533,6 @@ msgstr "Hämtar fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Verkställer ändringar" @@ -558,11 +547,10 @@ 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 bugreport." msgstr "" -"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-manager" -"\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." +"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-" +"manager\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -571,7 +559,7 @@ msgstr "" "Ersätt den anpassade konfigurationsfilen\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -579,50 +567,49 @@ msgstr "" "Du kommer att förlora de ändringar du har gjort i den här " "konfigurationsfilen om du väljer att ersätta den med en senare version." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Kommandot \"diff\" hittades inte" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ett ödesdigert fel uppstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapportera detta som ett fel och bifoga filerna /var/log/dist-upgrade/main." -"log och /var/log/dist-upgrade/apt.log i din rapport. Uppgraderingen avbryts " -"nu.\n" +"Rapportera detta som ett fel och bifoga filerna /var/log/dist-" +"upgrade/main.log och /var/log/dist-upgrade/apt.log i din rapport. " +"Uppgraderingen avbryts nu.\n" "Din ursprungliga sources.list sparades som /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kommer att tas bort." msgstr[1] "%d paket kommer att tas bort." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nytt paket kommer att installeras." msgstr[1] "%d nya paket kommer att installeras." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket kommer att uppgraderas." msgstr[1] "%d paket kommer att uppgraderas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -633,7 +620,7 @@ msgstr "" "\n" "Du måste hämta totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -641,17 +628,16 @@ msgstr "" "Hämtning och installation av uppgraderingen kan ta flera timmar och kan inte " "avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -659,17 +645,17 @@ msgstr "" "Det finns inga tillgängliga uppgraderingar för ditt system. Uppgraderingen " "kommer nu att avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Ta bort %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installera %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Uppgradera %s" @@ -695,7 +681,6 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -718,7 +703,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -794,6 +778,7 @@ msgid "_Keep" msgstr "_Behåll" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Ersätt" @@ -829,7 +814,6 @@ msgstr "Det gick inte att hämta versionsfaktan" msgid "Please check your internet connection." msgstr "Kontrollera din Internetanslutning." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Det gick inte att köra uppgraderingsverktyget" @@ -933,17 +917,14 @@ msgstr "" "Misslyckades med att hämta listan över ändringar. \n" "Kontrollera din Internetanslutning." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Viktiga säkerhetsuppdateringar" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rekommenderade uppdateringar" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Föreslagna uppdateringar" @@ -956,7 +937,6 @@ msgstr "Bakåtporteringar" msgid "Distribution updates" msgstr "Uppdateringar för utgåva" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Övriga uppdateringar" @@ -978,7 +958,6 @@ msgstr "_Avmarkera allt" msgid "_Check All" msgstr "_Kontrollera alla" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1013,7 +992,6 @@ msgstr "Från version %(old_version)s till %(new_version)s" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1038,7 +1016,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Ny distributionsutgåva \"%s\" finns tillgänglig" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programindexet är trasigt" @@ -1053,23 +1030,19 @@ msgstr "" "pakethanteraren \"Synaptic\" eller kör \"sudo apt-get install -f\" i en " "terminal för att rätta till det här problemet först." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1178,10 +1151,14 @@ msgid "_Install Updates" msgstr "_Installera uppdateringar" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "_Uppgradera" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "ändrar" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "uppdaterar" @@ -1430,235 +1407,193 @@ msgstr "Fönsterstorleken" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "Konfigurera källorna för installerbara programvaror och uppdateringar" +msgstr "" +"Konfigurera källorna för installerbara programvaror och uppdateringar" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Gemenskapsunderhållen" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Properitära drivrutiner för enheter" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Inskränkt programvara" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Öppen källkodsprogramvara som stöds av Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Gemenskapsunderhållen (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Öppen källkodsprogramvara underhållen av gemenskapen" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ickefria drivrutiner" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Properitära drivrutiner för enheter " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Inskränkt programvara (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Programvara begränsad av upphovsrätt eller juridiska avtal" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Bakåtporterade uppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Stöds officiellt" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Uppdateringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Bakåtporteringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Gemenskapsunderhållen (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ickefri (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Stöds inte längre officiellt" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begränsad upphovsrätt" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Uppdateringar för Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Bakåtporteringar för Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Säkerhetsuppdateringar" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://ftp.se.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel programvara med icke-fria beroenden" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Icke-DFSG-kompatibel programvara" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1669,22 +1604,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" #~ "Ett problem uppstod som inte gick att lösa när uppgraderingen beräknades. " #~ "Rapportera detta som ett fel. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller " -#~ "edubuntu-desktop och det gick inte att identifiera vilken version av " -#~ "Ubuntu du använder.\n" +#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller edubuntu-" +#~ "desktop och det gick inte att identifiera vilken version av Ubuntu du " +#~ "använder.\n" #~ " Installera ett av dessa paket först med synaptic eller apt-get innan du " #~ "fortsätter." @@ -1694,15 +1629,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "synaptic." #~ msgstr "" #~ "Vissa tredjepartskällor i din sources.list blev inaktiverade. Du kan " -#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties" -#~ "\" eller med synaptic." +#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " +#~ "eller med synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" -#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart " -#~ "tillstånd. En återhämtning kördes (dpkg --configure -a)." +#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " +#~ "En återhämtning kördes (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Viss programvara stöds inte officiellt längre" @@ -1714,13 +1649,14 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "If you don't have 'universe' enabled these packages will be suggested for " #~ "removal in the next step. " #~ msgstr "" -#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu " -#~ "enbart gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" " -#~ "aktiverat kommer dessa paket föreslås för borttagning i nästa steg. " +#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " +#~ "gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" aktiverat " +#~ "kommer dessa paket föreslås för borttagning i nästa steg. " #~ msgid "Restoring originale system state" #~ msgstr "Återställer ursprunglig systemstatus" +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1730,30 +1666,37 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "nödvändiga paketet \"%s\" längre.\n" #~ "Det här tyder på ett allvarligt fel, rapportera detta som ett fel." +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Ungefär %li dagar, %li timmar och %li minuter återstår" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Ungefär %li timmar och %li minuter återstår" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Ungefär %li minuter återstår" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefär %li sekunder återstår" #~ msgid "Download is complete" #~ msgstr "Hämtningen är färdig" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Hämtar fil %li av %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Uppdateringen avbryts nu. Rapportera detta som ett fel." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1762,38 +1705,38 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade." -#~ "log och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen " -#~ "avbryts nu.\n" -#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list." -#~ "distUpgrade." +#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade.log " +#~ "och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen avbryts nu.\n" +#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s paket kommer att tas bort." #~ msgstr[1] "%s paket kommer att tas bort." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nytt paket kommer att installeras." #~ msgstr[1] "%s nya paket kommer att installeras." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s paket kommer att uppgraderas." #~ msgstr[1] "%s paket kommer att uppgraderas." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Du behöver hämta totalt %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" #~ "Uppgraderingen kan ta flera timmar och kan inte avbrytas under tiden." @@ -1806,8 +1749,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Uppgraderar till Ubuntu 6.06 LTS" +#~ "Uppgraderar till Ubuntu 6.06 " +#~ "LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Hämtar och installerar uppgraderingarna" @@ -1816,15 +1759,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgraderar Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" -#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem " -#~ "med nätverket eller med servern. " +#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem med " +#~ "nätverket eller med servern. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Hämtar fil %li av %li med okänd hastighet" @@ -1843,13 +1788,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Vissa uppdateringar kräver att andra program avinstalleras. Använd " -#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic " -#~ "eller kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera " -#~ "ditt system helt och hållet." +#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic eller " +#~ "kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera ditt " +#~ "system helt och hållet." #~ msgid "The following updates will be skipped:" #~ msgstr "Följande uppdateringar kommer att hoppas över:" @@ -1863,6 +1808,7 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Show details" #~ msgstr "Visa detaljer" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Ny version: %s (storlek: %s)" @@ -1877,14 +1823,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Du måste leta efter uppdateringar manuellt\n" #~ "\n" -#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan " -#~ "konfigurera detta beteende i \"System\" -> \"Administration\" -> " +#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan konfigurera " +#~ "detta beteende i \"System\" -> \"Administration\" -> " #~ "\"Programvaruinställningar\"." #~ msgid "" @@ -1925,8 +1870,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1944,17 +1889,16 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Komponenter" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" +#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" #~ "\n" -#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till " -#~ "exempel \"deb http://ftp.debian.org sarge main\"." +#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till exempel " +#~ "\"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Lägg till kanal" @@ -1972,12 +1916,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" #~ "Om automatisk kontroll av uppdateringar är inaktiverad behöver du läsa om " -#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja " -#~ "påminnelser som visas i det här läget." +#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja påminnelser " +#~ "som visas i det här läget." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -2009,12 +1953,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" #~ "Uppdateringen avbryter nu. Vänligen frigör minst %s diskutrymme. Töm din " -#~ "papperskorg och ta bort temporära paket från tidigare installationer " -#~ "genom att köra \"sudo apt-get clean\"." +#~ "papperskorg och ta bort temporära paket från tidigare installationer genom " +#~ "att köra \"sudo apt-get clean\"." #~ msgid "%s remaining" #~ msgstr "%s återstår" @@ -2023,15 +1967,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Ingen giltig källa funnen" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Ingen giltig källa för uppdatering hittades när din förrådsinformation " #~ "söktes igenom.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Uppdateringen avbryts nu. Ditt system kan vara i ett oanvändbart läge. En " #~ "återställning körs nu (dpkg --configure -a)." @@ -2041,8 +1985,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" #~ "Var vänlig rapportera detta som en bugg och inkludera filerna ~/dist-" -#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen " -#~ "avbryts nu. " +#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts " +#~ "nu. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -2062,17 +2006,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analyserar ditt system\n" #~ "\n" -#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge " -#~ "dig nya funktioner." +#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dig " +#~ "nya funktioner." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Programuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dina " #~ "program nya funktioner." @@ -2082,22 +2026,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "automatically. The software package \"unattended-upgrades\" needs to be " #~ "installed therefor" #~ msgstr "" -#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer " -#~ "att installeras automatiskt. Programpaketet \"unattended-upgrades\" " -#~ "behöver därför installeras" +#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer att " +#~ "installeras automatiskt. Programpaketet \"unattended-upgrades\" behöver " +#~ "därför installeras" #~ msgid "Sections" #~ msgstr "Avdelningar:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga till\n" +#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga " +#~ "till\n" #~ "\n" #~ "APT-raden innehåller typ, plats och avdelningar för kanalen, till exempel " #~ "\"deb http://ftp.debian.org sarge main\"." @@ -2133,8 +2077,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Need to get the changes from the central server" #~ msgstr "" #~ "Nätverksinställningar\n" -#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer " -#~ "åt andra datorer" +#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer åt " +#~ "andra datorer" #~ msgid "Show available updates and choose which to install" #~ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras" @@ -2215,8 +2159,7 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Det går inte att uppgradera alla paket." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "" -#~ "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." +#~ msgstr "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." #~ msgid "The updates are being applied." #~ msgstr "Uppdateringarna verkställs." @@ -2225,11 +2168,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgradering slutförd" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " -#~ "andra programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " +#~ "programmet först." #, fuzzy #~ msgid "Updating package list..." @@ -2251,11 +2194,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " -#~ "andra programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " +#~ "programmet först." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initierar och hämtar lista med uppdateringar..." @@ -2411,18 +2354,16 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Försäkra dig om att du angav e-postadressen och aktiveringskoden korrekt" #~ msgid "" -#~ "Unable to show help because the help files were missing. Please report " -#~ "this to your vendor." +#~ "Unable to show help because the help files were missing. Please report this " +#~ "to your vendor." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till " -#~ "din leverantör." +#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till din " +#~ "leverantör." #~ msgid "" -#~ "Unable to show help because there are no applications available to view " -#~ "help." +#~ "Unable to show help because there are no applications available to view help." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är " -#~ "tillgängliga." +#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är tillgängliga." #~ msgid "Are you sure you want to open %d package information windows?" #~ msgstr "Är du säker på att du vill öppna %d fönster med paketinformation?" @@ -2663,11 +2604,10 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Löser beroenden" #~ msgid "" -#~ "You must agree to the licenses covering this software before installing " -#~ "it." +#~ "You must agree to the licenses covering this software before installing it." #~ msgstr "" -#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan " -#~ "du kan installera den." +#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan du " +#~ "kan installera den." #~ msgid "I Agree" #~ msgstr "Jag accepterar" @@ -3168,8 +3108,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Kanalprenumerationer på kanal %s" #~ msgid "" -#~ "You do not have permission to subscribe or unsubscribe from channels. " -#~ "You will be unable to make any changes to the subscriptions." +#~ "You do not have permission to subscribe or unsubscribe from channels. You " +#~ "will be unable to make any changes to the subscriptions." #~ msgstr "" #~ "Du har inte rättighet att prenumerera eller säga upp prenumerationer på " #~ "kanaler. Du kommer inte att kunna göra ändringar i prenumerationer." @@ -3190,8 +3130,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Privilegium" #~ msgid "" -#~ "If you remove superuser privileges from yourself, you will be unable to " -#~ "re-add them.\n" +#~ "If you remove superuser privileges from yourself, you will be unable to re-" +#~ "add them.\n" #~ "\n" #~ "Are you sure you want to do this?" #~ msgstr "" @@ -3313,8 +3253,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Information" #~ msgid "" -#~ "Unable to show help because it was not found or because you don't have " -#~ "any help viewers available." +#~ "Unable to show help because it was not found or because you don't have any " +#~ "help viewers available." #~ msgstr "" #~ "Kan inte visa hjälp eftersom den inte hittades eller eftersom du inte har " #~ "några hjälpvisare tillgängliga." @@ -3424,10 +3364,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Executive Summary" #~ msgstr "Sammanfattning" -#~ msgid "" -#~ "Update packages individually (NOTE: This is an unsupported operation)" -#~ msgstr "" -#~ "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" +#~ msgid "Update packages individually (NOTE: This is an unsupported operation)" +#~ msgstr "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" #~ msgid "Actual widget tag" #~ msgstr "Riktig widgettagg" @@ -3571,8 +3509,7 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Städar upp..." #~ msgid "" -#~ "The packages you requested are being downloaded and installed on your " -#~ "system." +#~ "The packages you requested are being downloaded and installed on your system." #~ msgstr "" #~ "Paketen du begärde håller på att hämtas och installeras på ditt system." @@ -3678,9 +3615,9 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "packages. You must free up some disk space before you can continue. Some " #~ "options include:" #~ msgstr "" -#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta " -#~ "de begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. " -#~ "Det finns en del alternativ:" +#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta de " +#~ "begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. Det " +#~ "finns en del alternativ:" #~ msgid "Removing some packages from your system" #~ msgstr "Tar bort en del paket från ditt system" @@ -3692,14 +3629,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Töm din cache." #~ msgid "" -#~ "Warning! There may not be sufficient disk " -#~ "space to install this package, and installation of this package may fail. " -#~ "You should free up some disk space before continuing." +#~ "Warning! There may not be sufficient disk space " +#~ "to install this package, and installation of this package may fail. You " +#~ "should free up some disk space before continuing." #~ msgstr "" #~ "Varning! Det kan finnas otillräckligt med " -#~ "diskutrymme för att installera detta paket, och installation av detta " -#~ "paket kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du " -#~ "fortsätter." +#~ "diskutrymme för att installera detta paket, och installation av detta paket " +#~ "kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du fortsätter." #~ msgid "1 Package" #~ msgstr "1 paket" @@ -3717,25 +3653,24 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "nödvändiga installationer" #~ msgid "Please wait, loading page..." -#~ msgstr "" -#~ "Var vänlig vänta, läser in sidan..." +#~ msgstr "Var vänlig vänta, läser in sidan..." #~ msgid "" #~ "You have no packages from this channel currently installed on your system." #~ msgstr "" -#~ "Du har för närvarande inte några paket från denna kanal installerade på " -#~ "ditt system." +#~ "Du har för närvarande inte några paket från denna kanal installerade på ditt " +#~ "system." #~ msgid "" -#~ "You can visit the channel's about page " -#~ "to get more information about what software is available, or you can go " +#~ "You can visit the channel's about page to " +#~ "get more information about what software is available, or you can go " #~ "directly to the install page to " #~ "install software." #~ msgstr "" -#~ "Du kan besöka kanalens om-sida för att " -#~ "få mer information om vilken programvara som är tillgänglig, eller gå " -#~ "direkt till installationssidan för " -#~ "att installera program." +#~ "Du kan besöka kanalens om-sida för att få " +#~ "mer information om vilken programvara som är tillgänglig, eller gå direkt " +#~ "till installationssidan för att " +#~ "installera program." #~ msgid "View the about page." #~ msgstr "Visa om-sidan." @@ -3747,8 +3682,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Gå tillbaka till sammanfattningen." #~ msgid "" -#~ "You don't have any packages installed from this channel. The following " -#~ "pre-defined sets of packages are available, or you may select individual " +#~ "You don't have any packages installed from this channel. The following pre-" +#~ "defined sets of packages are available, or you may select individual " #~ "packages from the Install page." #~ msgstr "" #~ "Du har inga paket installerade från denna kanal. Följande fördefinierade " @@ -3756,37 +3691,37 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "href=updater:available_page>installationssidan." #~ msgid "" -#~ "To install new software from this channel, visit the install page." +#~ "To install new software from this channel, visit the install page." #~ msgstr "" -#~ "För att installera ny programvara går du till installationssidan." +#~ "För att installera ny programvara går du till installationssidan." #~ msgid "" -#~ "To remove already installed software from this channel, visit the remove page." +#~ "To remove already installed software from this channel, visit the remove page." #~ msgstr "" -#~ "För att ta bort redan installerad programvara från denna kanal går du " -#~ "till borttagningssidan." +#~ "För att ta bort redan installerad programvara från denna kanal går du till " +#~ "borttagningssidan." #~ msgid "Unsubscribe from this channel." #~ msgstr "" -#~ "Säg upp prenumerationen på " -#~ "denna kanal." +#~ "Säg upp prenumerationen på denna " +#~ "kanal." #~ msgid "" -#~ "There is 1 update available in this channel, totalling %s " -#~ "of data to be downloaded." +#~ "There is 1 update available in this channel, totalling %s of " +#~ "data to be downloaded." #~ msgstr "" #~ "Det finns 1 uppdatering tillgänglig i denna kanal, som kräver att " #~ "%s data hämtas." #~ msgid "" -#~ "There are %s updates available in this channel, totalling %s of data to be downloaded." +#~ "There are %s updates available in this channel, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver " -#~ "att %s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver att " +#~ "%s data hämtas." #~ msgid "Essential Updates" #~ msgstr "Nödvändiga uppdateringar" @@ -3818,36 +3753,34 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "ditt system.

" #~ msgid "" -#~ "

You can go to the Update page to " -#~ "view available updates for your software in this channel, or return to " -#~ "the Summary to view all available updates." -#~ "

" +#~ "

You can go to the Update page to view " +#~ "available updates for your software in this channel, or return to the Summary to view all available updates.

" #~ msgstr "" -#~ "

Du kan gå till uppdateringssidan " -#~ "för att se de uppdateringar till din programvara som finns i denna kanal, " -#~ "eller gå tillbaka till sammanfattningen " -#~ "för att se alla tillgängliga uppdateringar.

" +#~ "

Du kan gå till uppdateringssidan för " +#~ "att se de uppdateringar till din programvara som finns i denna kanal, eller " +#~ "gå tillbaka till sammanfattningen för att se " +#~ "alla tillgängliga uppdateringar.

" #~ msgid "" #~ "

You can go to the Summary to view all " #~ "available updates for your system.

" #~ msgstr "" -#~ "

Du kan gå till sammanfattningen för " -#~ "att se alla uppdateringar som är tillgängliga för ditt system.

" +#~ "

Du kan gå till sammanfattningen för att " +#~ "se alla uppdateringar som är tillgängliga för ditt system.

" #~ msgid "" #~ "The following packages from this channel are available for " #~ "installation." #~ msgstr "" -#~ "Följande paket från denna kanal är tillgängliga för " -#~ "installation." +#~ "Följande paket från denna kanal är tillgängliga för installation." #~ msgid "" -#~ " Package names that are in gray indicate " -#~ "that a newer version of this package is already installed." +#~ " Package names that are in gray indicate that " +#~ "a newer version of this package is already installed." #~ msgstr "" -#~ " Paketnamn som är grå indikerar att en " -#~ "nyare version av detta paket redan är installerat." +#~ " Paketnamn som är grå indikerar att en nyare " +#~ "version av detta paket redan är installerat." #~ msgid "Name:" #~ msgstr "Namn:" @@ -3889,18 +3822,18 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Du prenumererar för närvarande på alla tillgängliga kanaler!" #~ msgid "" -#~ "There is one update available for your system, totalling %s " -#~ "of data to be downloaded." +#~ "There is one update available for your system, totalling %s of " +#~ "data to be downloaded." #~ msgstr "" -#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver " -#~ "att %s data hämtas." +#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver att " +#~ "%s data hämtas." #~ msgid "" -#~ "There are %s updates available for your system, totalling %s of data to be downloaded." +#~ "There are %s updates available for your system, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga för ditt system, som " -#~ "kräver att %s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga för ditt system, som kräver " +#~ "att %s data hämtas." #~ msgid " Of these updates, one is urgent." #~ msgstr " Utav dessa uppdateringar är en brådskande." @@ -3918,8 +3851,7 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Synlig felsökningsnivå, går från 0 (ingenting) till 6 (allting)" #~ msgid "Log file debugging level, ranges from 0 (nothing) to 6 (everything)" -#~ msgstr "" -#~ "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" +#~ msgstr "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" #~ msgid "The XAuthority file (usually from GDM)" #~ msgstr "XAuthority-filen (vanligtvis från GDM)" @@ -3938,11 +3870,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Hämtar kanalgrafik..." #~ msgid "" -#~ "An error occurred trying to parse the channel list. You should ensure " -#~ "that you are running a supported distribution and try again later." +#~ "An error occurred trying to parse the channel list. You should ensure that " +#~ "you are running a supported distribution and try again later." #~ msgstr "" -#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig " -#~ "om att du använder en distribution som stöds och försöka igen senare." +#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig om " +#~ "att du använder en distribution som stöds och försöka igen senare." #~ msgid "Navigation" #~ msgstr "Navigering" @@ -4148,4 +4080,4 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "translator-credits" #~ msgstr "" #~ "Christian Rose\n" -#~ "Skicka synpunkter på översättningen till sv@li.org" +#~ "Skicka synpunkter på översättningen till sv@li.org" \ No newline at end of file diff --git a/po/ta.po b/po/ta.po index 25ea2785..9e86e706 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-04 02:52+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "ஒரு மாதத்திற்க்கு பின்" msgid "After %s days" msgstr "%s நாட்களுக்கு பிறகு" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -315,7 +309,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -378,7 +371,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -389,7 +381,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -442,7 +433,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -458,7 +448,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -470,7 +460,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -486,61 +475,59 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 #, fuzzy msgid "The 'diff' command was not found" msgstr "'diff' என்ற கட்டளை இல்லை" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -548,39 +535,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s நீக்கு" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s நிறுவு" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s மேம்படுத்து" @@ -606,7 +592,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -627,11 +612,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -698,6 +682,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -733,7 +718,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -823,17 +807,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -846,7 +827,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -868,7 +848,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -903,7 +882,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -925,7 +903,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -937,23 +914,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1050,10 +1023,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "%s மேம்படுத்து" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1275,229 +1253,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/th.po b/po/th.po index 2b9c2bae..3707d111 100644 --- a/po/th.po +++ b/po/th.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:44+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "หลังจาก 1 เดือน" msgid "After %s days" msgstr "หลังจาก %s วัน" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s ปรับปรุง" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "เซิร์ฟเวอร์หลัก" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,7 +119,8 @@ msgid "Error removing the key" msgstr "มีปัญหาขณะลบกุจแจ" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -153,8 +151,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " -"หรือ apt-get ก่อนดำเนินการต่อไป" +"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ " +"กรุณาซ่อมโดยใช้โปรแกรม synaptic หรือ apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -164,7 +162,6 @@ msgstr "ไม่สามารถปรับปรุง meta แพกเก msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" @@ -181,7 +178,6 @@ msgstr "" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" @@ -192,8 +188,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " -"คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" +"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ " +"นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย คุณอาจจะลองอีกครั้งภายหลังก็ได้ " +"กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -206,7 +203,6 @@ msgid "" "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" @@ -221,8 +217,8 @@ msgid "" msgstr "" "ระบบของคุณไม่มีอูบันตูเดสก์ท็อป คูบันตูเดสก์ท็อป หรือ เอ็ดดูบันตูเดกส์ท็อป " "แพกเกจและไม่สามารถที่จะตรวจสอบได้ว่าคุณใช้อูบันตูรุ่นไหนอยู่\n" -" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic หรือโปรแกรม apt-get " -"ก่อนดำเนินการต่อไป" +" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic " +"หรือโปรแกรม apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -237,7 +233,8 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" +"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก " +"กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" "\n" "ปัญหาคือ : \n" "'%s'" @@ -257,9 +254,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ ่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" -"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ 'ตกลง' " -"ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" +"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ " +"่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" +"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ " +"'ตกลง' ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -277,13 +275,14 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "ไม่เจอรายการของเซิรฟ์เวอร์เสริมสำหรับปรับปรุงขณะที่ตรวจสอบแหล่งข้อมูลของคุณ " -"นี่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริมล้าสมัย\n" +"นี" +"่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริม" +"ล้าสมัย\n" "\n" -"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก 'Yes' " -"ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" +"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก " +"'Yes' ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "สร้าง default sources?" @@ -308,7 +307,8 @@ msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" +msgstr "" +"การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -348,9 +348,9 @@ msgid "" "apt-get clean'." msgstr "" "การปรับปรุงถูกยกเลิกแล้ว กรุณาฟรีอย่างน้อย %s ของดิสก์พื้นที่บน %s " -"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" +"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-" +"get clean'" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" @@ -367,8 +367,8 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" -"configure -a)\n" +"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง " +"โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --configure -a)\n" "\n" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" @@ -382,8 +382,8 @@ msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " -"mediaและลองอีกครั้ง " +"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ " +"installation mediaและลองอีกครั้ง " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -397,8 +397,9 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจากชุมชน " -"แต่เพียงอย่างเดียว\n" +"" +"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจาก" +"ชุมชน แต่เพียงอย่างเดียว\n" "\n" "ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป" @@ -422,9 +423,10 @@ msgstr "เกิดข้อผิดพลาดขณะแก้ไขปร msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " +msgstr "" +"เกิดปัญหาขึ้นขณะทำการเก็บกวาด " +"กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "คืนระบบสู่สถานะแรกเริ่ม" @@ -435,24 +437,23 @@ msgid "Fetching backport of '%s'" msgstr "ดึงพอร์ตย้อนหลังของ '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "กำลังเตรียมปรับปรุงรุ่น" +msgstr "การเตรียมการปรับปรุงรุ่นมีปัญหา" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy 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/dist-" "upgrade/ in the bugreport." -msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา" +msgstr "" +"การเตรียมระบบสำหรับการปรับปรุงรุ่นมีปัญหา กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ " +"'update-manager' และแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -491,7 +492,6 @@ msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -507,7 +507,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "กำลังดึงไฟล์ %li จาก %li ที่ %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "เหลือประมาณ %s" @@ -519,7 +519,6 @@ msgstr "กำลังดึงไฟล์ %li จาก %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "กำลังเปลี่ยนแปลง" @@ -534,11 +533,10 @@ 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 bugreport." msgstr "" -"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และ " -"กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" +"manager' และ กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -547,53 +545,56 @@ msgstr "" "เปลี่ยนไฟล์ปรับแต่งที่แก้ไขเอง\n" "'%s' หรือไม่?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"" +"คุณจะสูญเสียข้อมูลปรับแต่งที่ได้ทำไว้ในไฟล์ปรับแต่งถ้าคุณเลือกที่จะเปลี่ยนไปใช" +"้ไฟล์รุ่นใหม่กว่านี้" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "ไม่เจอคำสั่ง 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "เกิดข้อผิดพลาดอย่างร้ายแรง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and /var/log/dist-" -"upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" -"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ /etc/apt/sources.list.distUpgrade" +"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and " +"/var/log/dist-upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" +"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ " +"/etc/apt/sources.list.distUpgrade" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d แพกเกจจะถูกลบออก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d แพกเกจใหม่จะถูกติดตั้ง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -603,39 +604,40 @@ msgstr "" "\n" "คุณจะต้องดาวน์โหลดทั้งหมด %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" +msgstr "" +"ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง " +"และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "ไม่มีข้อมูลปรับปรุงรุ่นสำหรับระบบของคุณ การปรับปรุงรุ่นจึงถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "ลบออก %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "ติดตั้ง %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "ปรับปรุงรุ่น %s" @@ -661,13 +663,14 @@ msgid "%li seconds" msgstr "%li วินาที" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ด้วยการสื่อสารแบบ 1Mbit DSL และประมาณ %s " +"ถ้าใช้ 56K โมเดม" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -676,12 +679,13 @@ msgstr "ต้องเริ่มระบบใหม่" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" +msgstr "" +"การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ " +"คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -696,7 +700,8 @@ msgid "" msgstr "" "ต้องการยกเลิกการปรับปรุงที่กำลังทำอยู่หรือไม่?\n" "\n" -"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" +"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง " +"ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -743,19 +748,19 @@ msgid "Terminal" msgstr "เทอร์มินัล" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" +msgstr "_ยกเลิกการปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "ดำเนินการ_ต่อไป" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_คงไว้" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "แ_ทนที่" @@ -772,9 +777,8 @@ msgid "_Resume Upgrade" msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" +msgstr "เ_ริ่มการปรับปรุงรุ่น" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -792,7 +796,6 @@ msgstr "ไม่สามารถดาวน์โหลดบันทึก msgid "Please check your internet connection." msgstr "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ไม่สามารถเรียกใช้เครื่องมือปรับปรุง" @@ -834,7 +837,9 @@ msgstr "ไม่สามารถเอาออกมาได้" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "" +"ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ " +"อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -844,7 +849,8 @@ msgstr "ไม่สามารถตรวจเช็คความถูก msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " +msgstr "" +"ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -854,13 +860,15 @@ msgstr "ไม่สามารถยืนยันว่าเป็นขอ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "" +"ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว %(speed)s/s" +"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว " +"%(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -872,31 +880,29 @@ msgid "The list of changes is not available" msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" +msgstr "" +"รายการของการเปลี่ยนแปลงยังไม่มีให้ \n" +"กรุณาตรวจอีกทีภายหลัง" #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +"ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง \n" +"กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "ปรับปรุงด้านความปลอดภัยที่สำคัญ" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "การปรับปรุงที่แนะนำให้ทำ" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "การปรับปรุงที่เสนอให้ทำ" @@ -909,7 +915,6 @@ msgstr "พอร์ตย้อนหลัง" msgid "Distribution updates" msgstr "ปรับปรุงชุดเผยแพร่" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "_ปรับปรุงอื่นๆ" @@ -932,7 +937,6 @@ msgstr "ไ_ม่เลือกทั้งหมด" msgid "_Check All" msgstr "เ_ลือกทั้งหมด" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -966,7 +970,6 @@ msgstr "จากรุ่นเก่า: %(old_version)s ไปสู่รุ msgid "Version %s" msgstr "รุ่น %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -991,7 +994,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "มีชุดแจกจ่ายใหม่ '%s' " -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" @@ -1002,26 +1004,23 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ \"Synaptic\" หรือ " -"คำสั่ง \"sudo apt-get install -f\" ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ " +"\"Synaptic\" หรือ คำสั่ง \"sudo apt-get install -f\" " +"ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "ไม่มี" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1036,8 +1035,8 @@ msgid "" msgstr "" "คุณต้องตรวจหารายการปรับปรุงด้วยตนเอง\n" "\n" -"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" +"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื " +"คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1084,8 +1083,8 @@ msgid "" msgstr "" "ดำเนินการปรับปรุงชุดเผยแพร่ ทำการติดตั้งปรับปรุงมากที่สุดเท่าที่จะทำได้ \n" "\n" -"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ " -"หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" +"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น " +"ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1099,7 +1098,8 @@ msgstr "ซอฟต์แวร์ปรับปรุง" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" +msgstr "" +"ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1127,10 +1127,15 @@ msgstr "_ติดตั้งปรัยปรุง" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_ปรับปรุง" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "เปลี่ยนแปลง" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "ปรับปรุง" @@ -1160,7 +1165,8 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " +"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู " +"กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " "รายการของซอฟต์แวร์ที่ติดตั้งและความถี่ในการเรียกใช้งานจะถูกเก็บไว้ " "และส่งโดยไม่ระบุชื่อไปที่โครงการอูบันตูอาทิตย์ละครั้ง\n" "\n" @@ -1195,7 +1201,10 @@ msgstr "ปรัปรุงทางอินเทอร์เน็ต" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเท่านั้น" +msgstr "" +"" +"การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเ" +"ท่านั้น" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1286,10 +1295,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"กรุณาเติมให้ครบบรรทัด APT ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" +"กรุณาเติมให้ครบบรรทัด APT " +"ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" "\n" -"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb http://ftp." -"debian.org sarge main\"" +"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb " +"http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1332,7 +1342,9 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่นได้(ถ้าเป็นไปได้)" +"" +"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่น" +"ได้(ถ้าเป็นไปได้)" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1344,7 +1356,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ คุณจะต้องโหลดช่องรายการใหม่เอง " +"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ " +"คุณจะต้องโหลดช่องรายการใหม่เอง " "ตัวเลือกนี้ทำให้ซ่อนคำเตือนที่จะแสดงในกรณีนี้ได้" #: ../data/update-manager.schemas.in.h:4 @@ -1373,235 +1386,191 @@ msgstr "ขนาดของหน้าต่าง" msgid "Configure the sources for installable software and updates" msgstr "ปรับแต่งแหล่งสำหรับซอฟต์แวร์และปรับปรุงที่ติดตั้งได้" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "อูบันตู 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "ชุมชนดูแล" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "ซอฟต์แวร์จำกัดการใช้งาน" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "ซีดีรอมที่มีอูบันตู 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "ชุมชนดูแล (Universe)" +msgstr "ซอฟต์แบบเปิดเผยสนับสนุนโดย Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "ชุมชนดูแล (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "ชุมชนดูแล ซอฟต์แวร์แบบเปิดเผย" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "ไดรเวอร์ที่ไม่ฟรี" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์ " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "ซอฟต์แวร์จำกัดการใช้งาน(Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "ซอฟต์แวร์นี้มีลิขสิทธ์หรือข้อกฏหมายจำกัดอยู่" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "ซีดีรอมที่มีอูบันตู 6.06 LST 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "การปรับปรุงแบบย้อนหลัง" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "อูบันตู 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "อูบันตู 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "อูบันตู 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "ซีดีรอมที่มีอูบันตู 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "สนับสนุนอย่างเป็นทางการ" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "อูบันตู 5.04 ปรับปรุง" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "อูบันตู 5.04 พอร์ตย้อนหลัง" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "อูบันตู 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "ชุมชนดูแล (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "ซีดีรอมที่มีอูบันตู 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "ไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "จำกัดลิขสิทธิ์" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "อูบันตู 4.10 ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "อูบันตู 4.10 ปรับปรุง" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "อูบันตู 4.10 พอร์ตย้อนหลัง" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "เดเบียน 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "เดเบียน 3.1 \"Sarge\" ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "เดเบียน \"Etch\" (กำลังทดสอบ)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "เดเบียน \"Sid\" (ผันผวน)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอยู่กับไม่ฟรี" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" @@ -1653,16 +1622,17 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All Upgrades\" " -#~ "ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get dist-upgrade" -#~ "\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" +#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All " +#~ "Upgrades\" ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get " +#~ "dist-upgrade\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" #~ msgid "The following updates will be skipped:" #~ msgstr "การปรับปรุงต่อไปนี้จะถูกข้ามไป:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "เหลือประมาณ %li วินาที" @@ -1736,12 +1706,12 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" #~ "การปรับปรุงถูกยกเลิก กรุณาทำให้มีพื้นที่ว่างในดิสก์อย่างน้อย %s " -#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get " -#~ "clean'." +#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo " +#~ "apt-get clean'." #~ msgid "%s remaining" -#~ msgstr "%s เหลืออีก" +#~ msgstr "%s เหลืออีก" \ No newline at end of file diff --git a/po/tr.po b/po/tr.po index 495e1825..3c455939 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-27 21:59+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Kayra Akman \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Bir ay sonra" msgid "After %s days" msgstr "%s gün sonra" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s güncellemeleri" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Ana sunucu" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -116,18 +113,21 @@ msgstr "Seçili dosyayı aktarmada hata" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." +msgstr "" +"Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Anahtar kaldırmada hata" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -165,7 +165,6 @@ msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" msgid "A essential package would have to be removed" msgstr "Gerekli bir paketin kaldırılması gerekmekte" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Güncelleme hesaplanamadı" @@ -182,7 +181,6 @@ msgstr "" "Lütfen bu hatayı 'update-manager' için bildirin, hata raporuna /var/log/dist-" "upgrade/ konumundaki dosyaları da ekleyin." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulamasında hata" @@ -206,9 +204,9 @@ msgstr "'%s' yüklenemiyor" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +msgstr "" +"Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Meta-paket kestirilemedi" @@ -289,7 +287,6 @@ msgstr "" "'Evet'i seçersiniz '%s'den '%s'e kadar olan girdiler güncellenecek.\n" "'Hayır'ı seçerseniz güncelleme iptal edilecek." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Öntanımlı depolar kaydedilsin mi??" @@ -360,7 +357,6 @@ msgstr "" "Çöpünüzü boşaltın ve 'sudo apt-get clean' kullanarak önceden kurulumların " "geçici paketlerini kaldırın." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" @@ -380,8 +376,8 @@ msgstr "" "Yükseltmeden şimdi iptal ediliyor. Sisteminiz kararsız bir durumda olabilir. " "Bir kurtarma işlemi gerçekleştirildi. (dpkg --configure -a).\n" "\n" -"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine /" -"var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." +"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine " +"/var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -432,7 +428,6 @@ msgstr "" "Temizleme sırasında bazı sorunlar oluştu. Bilgi için lütfen aşağıdaki mesaja " "bakın. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Orijinal sistem durumuna geri dönülüyor" @@ -443,7 +438,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -499,7 +493,6 @@ msgstr "Kullanılmayan yazılımlar aranıyor" msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,7 +509,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Dosyalar indiriliyor. İnen: %li Toplam: %li Hız: %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Yaklaşık %s kaldı" @@ -528,7 +521,6 @@ msgstr "Dosyalar inidiriliyor. İnen: %li Toplam: %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Değişiklikler uygulanıyor" @@ -547,8 +539,7 @@ msgstr "" "bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki dosyaları da " "ekleyin." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -557,25 +548,25 @@ msgstr "" "Özelleştirilmiş yapılandırma dosyası\n" "'%s' değiştirilsin mi?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' komutu bulunamadı" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Giderilemez bir hata oluştu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bu hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ " @@ -584,26 +575,25 @@ msgstr "" "kaydedildi." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kaldırılacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d yeni paket kurulacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket yükseltilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -614,7 +604,7 @@ msgstr "" "\n" "Toplam %s indirmeniz gerekmektedir. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -622,18 +612,17 @@ msgstr "" "Yükseltmeyi indirmek ve kurmak saatlerce sürebilir ve daha sonra iptal " "edilemez." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sisteminiz güncel" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -641,17 +630,17 @@ msgstr "" "Sisteminiz için olası herhangi bir yükseltme yok. Yükseltme işlemi şimdi " "iptal edilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Şunu kaldır: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s'i kur" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s'i yükselt" @@ -677,7 +666,6 @@ msgid "%li seconds" msgstr "%li saniye" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -699,7 +687,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -719,7 +706,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Yükseltmeyi tamamlamak için sistemi yeniden başlatın" +msgstr "" +"Yükseltmeyi tamamlamak için sistemi yeniden başlatın" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -774,6 +762,7 @@ msgid "_Keep" msgstr "_Koru" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Değiştir" @@ -796,7 +785,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" -"Suggestions: \t\t\r\n" +"Suggestions: \t\t \n" "Yayın notları bulunamadı" #: ../UpdateManager/DistUpgradeFetcher.py:69 @@ -811,7 +800,6 @@ msgstr "Yayın notları indirilemedi" msgid "Please check your internet connection." msgstr "İnternet bağlantınızı kontrol ediniz." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Yükseltme aracı çalıştırılamadı." @@ -854,7 +842,8 @@ msgstr "Çıkarılamadı" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " +msgstr "" +"Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -904,17 +893,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Önemli güvenlik güncelleştirmeleri" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Önerilen güncellemeler" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Teklif edilmiş güncellemeler" @@ -927,7 +913,6 @@ msgstr "Backport edilmiş yazılımlar" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Diğer güncellemeler" @@ -949,7 +934,6 @@ msgstr "Hiç_birini Seçme" msgid "_Check All" msgstr "_Hepsini Seç" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -983,7 +967,6 @@ msgstr "" msgid "Version %s" msgstr "Sürüm %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1009,7 +992,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Yeni dağıtım yayını '%s' ulaşılabilir" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Yazılım dizini bozulmuş" @@ -1024,23 +1006,19 @@ msgstr "" "durumu düzeltmek için öncelikle \"Synaptic\" paket yöneticisini kullanın ya " "da uçbirim penceresine \"sudo apt-get install -f\" komutunu yazıp çalıştırın." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Hiçbiri" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1062,8 +1040,8 @@ msgstr "Sisteminizi güncel tutun" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"CD taramada hata\r\n" -"\r\n" +"CD taramada hata \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1147,10 +1125,15 @@ msgid "_Install Updates" msgstr "Güncelemeleri _Yükle" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "_Yükselt" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "değişiklikler" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "güncellemeler" @@ -1391,229 +1374,185 @@ msgstr "Pencere boyutu" msgid "Configure the sources for installable software and updates" msgstr "Kurulabilir yazılım ve güncellemeler için kaynakları yapılandır" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Topluluk tarafından bakılan" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Aygıtlar için kapalı kaynak sürücüler" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Kısıtlı yazılımlar" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Topluluk tarafından bakılan (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Topluluk tarafından bakılan Açık Kaynak Kodlu yazılımlar" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Özgür olmayan sürücüler" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Aygıtlar için lisanslı sürücüler " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Kısıtlı yazılımlar (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Geritaşınmış (backported) güncellemeler" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Geritaşınmış Yazılımlar (Backports)" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog' Cdrom'u" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi olarak desteklenenler" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Geritaşınmış Yazılımlar (Backports)" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Topluluk tarafından bakılan (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Özgür olmayan (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' Cdrom'u" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Artık resmi olarak desteklenmiyor" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Sınırlı telif hakkı" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Geritaşınmış Yazılımlar (Backports)" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (test)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (kararsız)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Özgür Olmayan Bağımlılığı Bulunan DFSG Uyumlu Yazılım" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG Uyumlu Olmayan Yazılım" @@ -1651,4 +1590,4 @@ msgstr "DFSG Uyumlu Olmayan Yazılım" #~ msgstr "Ubuntu 6.06 Güvenlik Güncelleştirmeleri" #~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" +#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" \ No newline at end of file diff --git a/po/uk.po b/po/uk.po index 1e85b1f9..ff1f2a21 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-20 22:36+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: KBabel 1.11.2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 @@ -56,7 +56,6 @@ msgstr "Через місяць" msgid "After %s days" msgstr "Через %s днів" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Помилка видалення ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -164,7 +162,6 @@ msgstr "Не можливо поновити необхідні meta-пакун msgid "A essential package would have to be removed" msgstr "Це призведе до видалення !essential! пакунку системи" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" @@ -204,7 +200,6 @@ msgid "" msgstr "" "Неможливо встановити необхідний пакунок. Сповістіть про це як про помилку. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" @@ -264,7 +259,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Створити джерела за замовчуванням?" @@ -324,7 +318,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати оновлення системи?" @@ -392,7 +385,6 @@ msgstr "" "При очищенні системи виникли проблеми. Прочитайте детальнішу інформацію " "нижче. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -403,7 +395,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -454,7 +445,6 @@ msgstr "Пошук програм, що не використовуються" msgid "System upgrade is complete." msgstr "Оновлення системи завершено." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -470,7 +460,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -482,7 +472,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -499,39 +488,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Команда 'diff' не знайдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Виникла невиправна помилка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -539,7 +526,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -547,7 +534,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -555,7 +542,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -563,40 +550,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "Для запобігання втраті інформації закрийте усі програми та документи." +msgstr "" +"Для запобігання втраті інформації закрийте усі програми та документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#, fuzzy msgid "Remove %s" msgstr "Видалити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#, fuzzy msgid "Install %s" msgstr "Встановити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Оновити %s" @@ -622,7 +609,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -644,7 +630,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -719,6 +704,7 @@ msgid "_Keep" msgstr "Затримати" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Перезавантажити" @@ -755,7 +741,6 @@ msgstr "Не вдалося завантажити примітки випуск msgid "Please check your internet connection." msgstr "Будь ласка, перевірте ваше з'єднання з Інтернетом." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 #, fuzzy msgid "Could not run the upgrade tool" @@ -849,17 +834,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -872,7 +854,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -894,7 +875,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -930,7 +910,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -947,15 +926,14 @@ msgid "" "information on upgrading." msgstr "" "Ви більше не будете отримувати оновлень критичних оновлень та оновлень " -"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на http://www." -"ubuntu.com для подальшої інформації про оновлення." +"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на " +"http://www.ubuntu.com для подальшої інформації про оновлення." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -967,23 +945,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1083,10 +1057,15 @@ msgid "_Install Updates" msgstr "Встановлення оновлень..." #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Оновити" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1316,233 +1295,190 @@ msgstr "Розмір вікна" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Офіційно підтримуються" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Підтримується спільнотою (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Не-вільний (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Обмежені авторські права" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Оновлення безпеки Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестовий)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабільний)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1553,32 +1489,32 @@ msgstr "" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" #~ "Під час розрахунку оновлення виникла невиправна помилка. Будь ласка, " #~ "повідомте про це як про помилку програми. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "Ваша система не містить пакунків ubuntu-desktop, kubuntu-desktop або " #~ "edubuntu-desktop, через що не вдалося встановити, яку версію ubuntu Ви " #~ "використовуєте.\n" -#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи " -#~ "synaptic або apt-get." +#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи synaptic " +#~ "або apt-get." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" #~ "Оновлення системи щойно зупинено. Внаслідок цього система може працювати " -#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або " -#~ "скористайтесь програмою Synaptic для налаштування системи." +#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або скористайтесь " +#~ "програмою Synaptic для налаштування системи." #~ msgid "Some software no longer officially supported" #~ msgstr "Деяке програмне забезпечення більше офіційно не підтримується" @@ -1587,12 +1523,14 @@ msgstr "" #~ msgid "Restoring originale system state" #~ msgstr "Перезавантаження системи" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Залишилось близько %li хвилин" #~ msgid "Download is complete" #~ msgstr "Завантадення пакунків завершено" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Завантажується файл %li of %li at %s/s" @@ -1600,6 +1538,7 @@ msgstr "" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1609,41 +1548,43 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Будь ласка, повідмте це я помилку, включивши в повідомлення файли ~/dist-" #~ "upgrade.log and ~/dist-upgrade-apt.log . Апргрейд щойно перервано." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s пакунків буде видалено." #~ msgstr[1] "" #~ msgstr[2] "" +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s пакунків буде встановлено." #~ msgstr[1] "" #~ msgstr[2] "" +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "буде проведено оновлення %s пакунка." #~ msgstr[1] "буде проведено оновлення %s пакунків." #~ msgstr[2] "буде проведено оновлення %s пакунків." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Потрібно завантажити всього %s пакунків." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" -#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може " -#~ "бути перервано протягом усього часу." +#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може бути " +#~ "перервано протягом усього часу." #~ msgid "Could not find any upgrades" #~ msgstr "Не знайдено пакунків для оновлення" @@ -1691,6 +1632,7 @@ msgstr "" #~ msgid "Show details" #~ msgstr "Показати деталі" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Нова версія: %s (Розмір: %s)" @@ -1725,17 +1667,16 @@ msgstr "" #~ msgstr "Компоненти" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" +#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" #~ "\n" -#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb http://" -#~ "ftp.debian.org sarge main\". Докладні приклади можна знайти у " +#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb " +#~ "http://ftp.debian.org sarge main\". Докладні приклади можна знайти у " #~ "документації." #~ msgid "Add Channel" @@ -1766,4 +1707,4 @@ msgstr "" #~ msgstr "Оновлення Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" +#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/ur.po b/po/ur.po index 12322795..f9a2a9ad 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -55,7 +55,6 @@ msgstr "ایک ماھ باد" msgid "After %s days" msgstr "بعد %s دن" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,7 +159,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +171,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +193,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +252,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,7 +308,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -377,7 +370,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -388,7 +380,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -439,7 +430,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +445,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +457,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,60 +472,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -544,39 +531,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -602,7 +588,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -622,7 +607,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -693,6 +677,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -728,7 +713,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -818,17 +802,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -841,7 +822,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -863,7 +843,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -898,7 +877,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -920,7 +898,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -932,23 +909,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1045,10 +1018,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1271,232 +1248,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/vi.po b/po/vi.po index 25886b33..3e3715ab 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager Gnome HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:45+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Sau một tháng" msgid "After %s days" msgstr "Sau %s ngày" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -118,14 +115,16 @@ msgstr "Gặp lỗi khi nhập tâp tin đã chọn" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." +msgstr "" +"Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -164,7 +163,6 @@ msgstr "Không thể nâng cấp các gói gốc được yêu cầu" msgid "A essential package would have to be removed" msgstr "Một gói quan trọng cần phải bị gỡ bỏ" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Không thể tính được dung lượng cần nâng cấp" @@ -178,7 +176,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gặp lỗi khi đang xác thực một số gói" @@ -205,7 +202,6 @@ msgid "" "bug. " msgstr "Không thể cài đặt được gói yêu cầu. Vui lòng thông báo lỗi này. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Không thể đoán được gói gốc" @@ -265,7 +261,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -323,7 +318,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -386,7 +380,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -397,7 +390,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -452,7 +444,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -468,7 +459,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -480,7 +471,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -497,57 +487,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -555,40 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -614,7 +601,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -634,7 +620,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -706,6 +691,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Tải lại" @@ -742,7 +728,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -840,18 +825,15 @@ msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -867,7 +849,6 @@ msgstr "Bản cập nhật Ubuntu 5.10" msgid "Distribution updates" msgstr "Đang cài đặt bản cập nhật..." -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -891,7 +872,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -922,11 +902,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Phiên bản %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -949,7 +928,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -961,23 +939,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1076,10 +1050,15 @@ msgstr "Đang cài đặt bản cập nhật..." #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Nâng cấp xong" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Đổi" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1323,256 +1302,211 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Bản cập nhật Ubuntu 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Phần mềm đã đóng góp" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Không tự do (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Không tự do (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Được hỗ trợ một cách chính thức" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Không tự do (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Được hỗ trợ một cách chính thức" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Bản quyền bị giới hạn" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Bản cập nhật Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 « Sarge »" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Bản cập nhật bảo mặt ổn định Debian" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Thử ra Debian" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Không Mỹ Debian (Bất định)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1701,12 +1635,12 @@ msgstr "" #~ msgstr "" #~ "Khóa xác thực\n" #~ "\n" -#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép " -#~ "bạn thẩm tra toàn vẹn của phần mềm đã tải về." +#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép bạn " +#~ "thẩm tra toàn vẹn của phần mềm đã tải về." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Thêm tập tin khóa mới vào vòng khóa tin cây. Hãy đảm bảo bạn đã nhận khóa " #~ "này qua kênh bảo mật, và bạn tin cây người sở hữu khóa này. " @@ -1736,11 +1670,11 @@ msgstr "" #~ msgstr "Cỡ tối đa, theo MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành " -#~ "động này sẽ không sửa đổi khóa nào tự cài đặt." +#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành động " +#~ "này sẽ không sửa đổi khóa nào tự cài đặt." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Đặt cỡ tối _đa cho bộ nhớ tạm gói" @@ -1769,13 +1703,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Bản nâng cấp công bố\n" #~ "\n" -#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn " -#~ "giản hãy sử dụng nút « Cài đặt »." +#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn giản " +#~ "hãy sử dụng nút « Cài đặt »." #~ msgid "Cancel downloading the changelog" #~ msgstr "Thôi tải về Bản ghi đổi..." @@ -1831,19 +1765,18 @@ msgstr "" #~ msgstr[0] "Bạn đã chọn tất cả %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Bạn đã chọn %s trong %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "The updates are being applied." #~ msgstr "Đang áp dụng những bản cập nhật." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. " -#~ "Vui lòng đóng ứng dụng khác trước khi tiếp tục." +#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. Vui " +#~ "lòng đóng ứng dụng khác trước khi tiếp tục." #~ msgid "Updating package list..." #~ msgstr "Đạng cập nhật danh sách gói..." @@ -1856,22 +1789,22 @@ msgstr "" #~ 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. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản " -#~ "hiện thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " +#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản hiện " +#~ "thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " #~ " để tìm thông tin nâng cấp." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "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 để 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 " +#~ " để 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." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." +#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." \ No newline at end of file diff --git a/po/xh.po b/po/xh.po index d18e6633..e5270ec4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -55,7 +55,6 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,7 +159,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +171,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +193,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +252,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,7 +308,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -377,7 +370,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -388,7 +380,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -439,7 +430,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +445,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +457,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,60 +472,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -544,39 +531,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -602,7 +588,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -622,7 +607,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -693,6 +677,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -728,7 +713,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -820,18 +804,15 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bonisa izihlaziyo" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -846,7 +827,6 @@ msgstr "" msgid "Distribution updates" msgstr "Bonisa izihlaziyo" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -869,7 +849,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -905,7 +884,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -927,7 +905,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -939,23 +916,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1054,10 +1027,14 @@ msgid "_Install Updates" msgstr "Bonisa izihlaziyo" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1285,229 +1262,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1575,8 +1507,8 @@ msgstr "" #~ msgstr "" #~ "Ulwazi oluhlaziyiweyo\n" #~ "\n" -#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda " -#~ "funda olu lwazi lulandelayo ngocoselelo." +#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda funda " +#~ "olu lwazi lulandelayo ngocoselelo." #~ msgid "Run now" -#~ msgstr "Phumeza inkqubo ngoku" +#~ msgstr "Phumeza inkqubo ngoku" \ No newline at end of file diff --git a/po/zh_CN.po b/po/zh_CN.po index 41d42065..8510173c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:36+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:00+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "一月后" msgid "After %s days" msgstr "%s天后" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主服务器" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,7 +119,8 @@ msgid "Error removing the key" msgstr "删除密钥时候出错" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -152,9 +150,7 @@ msgstr "破损的软件包" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" -"你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" -"apt-get修复它们。" +msgstr "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者apt-get修复它们。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -164,7 +160,6 @@ msgstr "不能升级要求的元包" msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "无法计算升级" @@ -178,10 +173,8 @@ msgid "" msgstr "" "在计算升级时遇到一个无法解决的问题。\n" "\n" -"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文" -"件包含在错误报告中。" +"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文件包含在错误报告中。" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" @@ -191,9 +184,7 @@ 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 a list of " "unauthenticated packages." -msgstr "" -"无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" -"件包的列表。" +msgstr "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软件包的列表。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -206,7 +197,6 @@ msgid "" "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "无法猜出元包" @@ -219,8 +209,8 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-desktop软件包所以无法" -"确定你运行的ubuntu的版本。\n" +"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-" +"desktop软件包所以无法确定你运行的ubuntu的版本。\n" " 请先用新立得或apt-get安装以上所举软件包中的一个。" #: ../DistUpgrade/DistUpgradeControler.py:74 @@ -274,12 +264,10 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像" -"或镜像信息过时了.\n" +"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像或镜像信息过时了.\n" "一定要重写您的'sources.list'吗?如果选'Yes'将会更新所有'%s'到'%s'条目.\n" "如果选'no'更新将被取消." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "生成默认的源?" @@ -315,9 +303,7 @@ 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 " "synaptic." -msgstr "" -"sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得" -"包管理器来重新启用它们." +msgstr "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得包管理器来重新启用它们." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -340,10 +326,8 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-" -"get clean'命令来删除之前安装的临时软件包。" +"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-get clean'命令来删除之前安装的临时软件包。" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" @@ -360,11 +344,9 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" -"a)。\n" +"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -a)。\n" "\n" -"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文" -"件。" +"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文件。" #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -415,7 +397,6 @@ msgid "" "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" @@ -426,7 +407,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -464,8 +444,7 @@ msgid "" msgstr "" "包信息被更新后核心包'%s'没有找到。\n" "\n" -"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/" -"dist-upgrade/中的文件。" +"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/dist-upgrade/中的文件。" #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -483,7 +462,6 @@ msgstr "寻找陈旧的软件包" msgid "System upgrade is complete." msgstr "系统更新完毕" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -499,7 +477,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "下载文件 %li/%li 速度是%s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "大约还要 %s" @@ -511,7 +489,6 @@ msgstr "下载第 %li 个文件(共 %li 个文件)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在应用更新" @@ -525,12 +502,9 @@ msgstr "无法安装'%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 bugreport." -msgstr "" -"升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-" -"upgrade/中的文件。" +msgstr "升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-upgrade/中的文件。" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -539,53 +513,51 @@ msgstr "" "替换定制配置文件\n" "“%s”吗?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "外部命令“diff”没有找到" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "出现致命错误" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt." -"log。升级现在取消。\n" +"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt.log。升级现在取消。\n" "你原始的sources.list已保存在/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d 个软件包将被删除。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d 个新的软件包将被安装。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 个软件包将被升级" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -596,39 +568,38 @@ msgstr "" "\n" "你需要下载了总共 %s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "下载及升级会持续几个小时,且不可取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "您的系统已为最新" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "你的系统没有可用升级。升级被取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "删除%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "安装%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "升级%s" @@ -654,7 +625,6 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -674,7 +644,6 @@ msgstr "升级已经完成并需要重启。你要现在重启么?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -749,6 +718,7 @@ msgid "_Keep" msgstr "维持原状(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "替换(_R)" @@ -785,7 +755,6 @@ msgstr "无法下载发行说明" msgid "Please check your internet connection." msgstr "请检查你的互联网连接。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "不能运行升级工具" @@ -851,12 +820,12 @@ msgid "" msgstr "认证升级信息失败。可能是网络或服务器的问题。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下载文件 %li/%li 速度是 %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "正在下载文件 %li/%li 速度是 %s/s" @@ -878,17 +847,14 @@ msgid "" "Please check your Internet connection." msgstr "无法下载更新列表。请检查您的网络连接。" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要安全更新" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建议更新" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "建议更新" @@ -902,7 +868,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "继续升级(_R)" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其它更新" @@ -925,7 +890,6 @@ msgstr "取消全部(_U)" msgid "_Check All" msgstr "选中全部(_C)" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -950,7 +914,7 @@ msgid "Checking for updates" msgstr "检查更新" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "新版本:%s(大小:%s)" @@ -959,7 +923,6 @@ msgstr "新版本:%s(大小:%s)" msgid "Version %s" msgstr "版本 %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -975,8 +938,7 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见" -"\r\n" +"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见 \n" "http://www.ubuntu.com 来获取更多有关升级的信息。" #: ../UpdateManager/UpdateManager.py:863 @@ -984,7 +946,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "软件索引已被破坏" @@ -995,26 +956,21 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-" -"get install -f\"来修正这个问题。" +"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-get install -f\"来修正这个问题。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "无" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1030,8 +986,7 @@ msgid "" msgstr "" "你必须手动检测升级\n" "\n" -"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改" -"变." +"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改变." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1119,10 +1074,15 @@ msgid "_Install Updates" msgstr "安装更新(_I)" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "升级(_p)" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "变化" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "更新" @@ -1152,8 +1112,7 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度" -"每周会被匿名发送给Unbuntu。\n" +"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度每周会被匿名发送给Unbuntu。\n" "\n" "其结果用于流行软件支持及应用软件搜索排名。" @@ -1278,8 +1237,7 @@ msgid "" "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "输入你想增加的完整的频道 APT 命令行\n" -"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org " -"sarge main\"。" +"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org sarge main\"。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1333,9 +1291,7 @@ 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 this " "case." -msgstr "" -"如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下" -"要出现的提醒语。" +msgstr "如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下要出现的提醒语。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1364,232 +1320,188 @@ msgstr "窗口大小" msgid "Configure the sources for installable software and updates" msgstr "设定可安装和升级的源" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "社区维护(Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "设备的专有驱动" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "受限软件" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "社区维护(Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "社区维护(universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "社区维护开源软件" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "非自由驱动" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "设备的属性驱动 " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "受限软件(Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported 更新" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 移植" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'光盘" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支持" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "社区维护" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'光盘" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "官方不再支持" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版权限制" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" 安全更新" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (测试)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (非稳定)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "带有非自由依赖关系的DFSG兼容软件" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" @@ -1597,6 +1509,7 @@ msgstr "非DFSG兼容软件" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "受到版权或法律问题限制的软件" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下载文件 %li/%li 速度未知" @@ -1618,8 +1531,7 @@ msgstr "非DFSG兼容软件" #, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" -#~ msgstr "" -#~ "正在升级到 Ubuntu 6.06 LTS" +#~ msgstr "正在升级到 Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1647,15 +1559,16 @@ msgstr "非DFSG兼容软件" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并" -#~ "运行 “sudo apt-get dist-upgrade”来彻底更你新的系统。" +#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并运行 “sudo apt-get dist-" +#~ "upgrade”来彻底更你新的系统。" #~ msgid "The following updates will be skipped:" #~ msgstr "将跳过以下的升级包" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大约还要%li秒" @@ -1728,8 +1641,8 @@ msgstr "非DFSG兼容软件" #~ msgstr "Ubuntu 6.06 LTS 后备支持" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "在检查你的源的信息时未能找到有效的升级记录\n" #~ msgid "Repositories changed" @@ -1841,4 +1754,4 @@ msgstr "非DFSG兼容软件" #~ msgstr "CD" #~ msgid "Non-free software" -#~ msgstr "非自由软件" +#~ msgstr "非自由软件" \ No newline at end of file diff --git a/po/zh_HK.po b/po/zh_HK.po index a1cc8f61..65d2dc88 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.42.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-16 01:18+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" "MIME-Version: 1.0\n" @@ -53,7 +53,6 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 日後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,7 +60,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,7 +69,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,7 +118,8 @@ msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -148,9 +146,7 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" -"系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" -"套件。" +msgstr "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復套件。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -160,7 +156,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級過程" @@ -173,7 +168,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -183,9 +177,7 @@ 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 a list of " "unauthenticated packages." -msgstr "" -"有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套" -"件。" +msgstr "有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -198,7 +190,6 @@ msgid "" "bug. " msgstr "有必須的套件無法安裝,請匯報問題。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -258,7 +249,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -315,7 +305,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" @@ -378,7 +367,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -389,7 +377,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -440,7 +427,6 @@ msgstr "正在搜尋過時的軟件" msgid "System upgrade is complete." msgstr "已完成系統升級。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,7 +442,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -468,7 +454,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -485,57 +470,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "找不到「diff」指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +526,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,7 +583,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -621,7 +602,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -692,6 +672,7 @@ msgid "_Keep" msgstr "保留(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "取代(_R)" @@ -727,7 +708,6 @@ msgstr "無法下載發行通告" msgid "Please check your internet connection." msgstr "請檢查網絡連線是否正常。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -817,17 +797,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -840,7 +817,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -862,7 +838,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -896,7 +871,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,7 +893,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -931,23 +904,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1044,10 +1013,15 @@ msgid "_Install Updates" msgstr "安裝軟件更新(_I)" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "升級(_P)" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1274,233 +1248,190 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "正式支援" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟件 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟件 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1「Sarge」" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1「Sarge」安全性更新" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian 「Etch」(測試版)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "ftp://ftp.hk.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian 「Sid」(不穩定版)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟件,但依賴於非自由軟件" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "和 DFSG 不相容的軟件" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1511,19 +1442,19 @@ msgstr "和 DFSG 不相容的軟件" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因" -#~ "此無法偵測正在執行哪一個版本的 ubuntu。\n" +#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因此無法偵測正在執行哪一個版本的 " +#~ "ubuntu。\n" #~ "請先使用 synaptic 或 apt-get 安裝上述其中一個套件。" #~ msgid "" @@ -1531,15 +1462,13 @@ msgstr "和 DFSG 不相容的軟件" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用" -#~ "「software-properties」工具或 synaptic 重新啟用這些來源。" +#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用「software-properties」工具或 synaptic " +#~ "重新啟用這些來源。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." -#~ msgstr "" -#~ "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --" -#~ "configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --configure -a)。" #~ msgid "Some software no longer officially supported" #~ msgstr "某些軟件不會再有正式支援" @@ -1547,27 +1476,33 @@ msgstr "和 DFSG 不相容的軟件" #~ msgid "Restoring originale system state" #~ msgstr "恢復原來的系統狀態" +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" #~ msgid "Download is complete" #~ msgstr "下載完成" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "升級現正中止,請匯報問題。" +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1575,14 +1510,17 @@ msgstr "和 DFSG 不相容的軟件" #~ "取代設定檔\n" #~ "「%s」?" +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "準備移除 %s 個套件。" +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "準備安裝 %s 個新套件。" +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "準備升級 %s 個套件。" @@ -1594,13 +1532,15 @@ msgstr "和 DFSG 不相容的軟件" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "檢驗升級套件失敗。可能是因為網路或伺服器出現問題。 " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1617,12 +1557,11 @@ msgstr "和 DFSG 不相容的軟件" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」" -#~ "的「標記所有升級」功能或在終端機中執行「sudo apt-get dist-upgrade」來更新" -#~ "整個系統。" +#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」的「標記所有升級」功能或在終端機中執行「sudo apt-get " +#~ "dist-upgrade」來更新整個系統。" #~ msgid "The following updates will be skipped:" #~ msgstr "會略過更新以下套件:" @@ -1665,16 +1604,16 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" #~ "請輸入整行你想加入的 APT 軟件庫位置\n" #~ "\n" -#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp." -#~ "debian.org sarge main\"。你可以在文件中尋找有關該行的格式的詳細描述。" +#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp.debian.org sarge " +#~ "main\"。你可以在文件中尋找有關該行的格式的詳細描述。" #~ msgid "Edit Channel" #~ msgstr "修改套件來源" @@ -1703,4 +1642,4 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 5.10 更新" +#~ msgstr "Ubuntu 5.10 更新" \ No newline at end of file diff --git a/po/zh_TW.po b/po/zh_TW.po index 2ae0134e..821fbf00 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-14 07:29+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" "MIME-Version: 1.0\n" @@ -49,7 +49,6 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 天過後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -57,9 +56,8 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy, python-format +#, fuzzy msgid "%s (%s)" msgstr "%s (%s)" @@ -67,7 +65,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主要伺服器" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -117,7 +114,8 @@ msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -144,9 +142,7 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" -"您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " -"synaptic 或 apt-get 來修恢它們。" +msgstr "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 synaptic 或 apt-get 來修恢它們。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -156,7 +152,6 @@ msgstr "無法升級須要的元套件 (meta-package)" msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級" @@ -169,7 +164,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" @@ -179,9 +173,7 @@ 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 a list of " "unauthenticated packages." -msgstr "" -"一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" -"的套件。" +msgstr "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -194,7 +186,6 @@ msgid "" "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" @@ -221,8 +212,7 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉" -"報為臭蟲。\n" +"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉報為臭蟲。\n" "\n" "錯誤訊息為:\n" "「%s」" @@ -258,14 +248,11 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror " -"資訊已經過時的時候發生。\n" +"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror 資訊已經過時的時候發生。\n" "\n" -"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' " -"到 '%s'。\n" +"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' 到 '%s'。\n" "如果選擇「否」,則更新會被取消。" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "產生預設的來源?" @@ -324,10 +311,8 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get " -"clean'來移除先前安裝套件時的暫存檔。" +"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get clean'來移除先前安裝套件時的暫存檔。" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" @@ -390,7 +375,6 @@ msgid "" "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "回覆原有系統狀態" @@ -401,7 +385,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -452,7 +435,6 @@ msgstr "尋搜不再使用的套件" msgid "System upgrade is complete." msgstr "系統升級完成。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -468,7 +450,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -480,7 +462,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在套用變更" @@ -496,57 +477,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "發生嚴重錯誤" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " -"now.\n" +"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 aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -557,39 +536,38 @@ msgstr "" "\n" "你必須下載全部的%s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "移除 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "安裝 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "升級 %s" @@ -615,7 +593,6 @@ msgid "%li seconds" msgstr "%li秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -635,7 +612,6 @@ msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -709,6 +685,7 @@ msgid "_Keep" msgstr "保留(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "取代(_R)" @@ -744,7 +721,6 @@ msgstr "無法下載發行說明" msgid "Please check your internet connection." msgstr "請檢查您的網路連線。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -834,17 +810,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要的安全更新" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建議的安全更新" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -857,7 +830,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其他更新" @@ -879,7 +851,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -913,7 +884,6 @@ msgstr "" msgid "Version %s" msgstr "版本%s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -929,15 +899,13 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " -"http://www.ubuntu.com以取得更多升級資訊。" +"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 http://www.ubuntu.com以取得更多升級資訊。" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "軟體索引損壞" @@ -948,27 +916,22 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo " -"apt-get install -f”來修正問題。" +"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo apt-get install -f”來修正問題。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "無下載" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1065,10 +1028,15 @@ msgid "_Install Updates" msgstr "安裝更新套件(_I)" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "升級(_P)" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "更動" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "更新" @@ -1292,229 +1260,185 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "設置可安裝的軟體及更新部份之來源。" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'的光碟" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "含Ubuntu 6.06 LTS 'Dapper Drake'之光碟" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'的光碟" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10更新" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'的光碟" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支援" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04更新" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟體 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟體 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "含Ubuntu 4.10 'Warty Warthog'之光碟" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限制" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10更新" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 “Sarge”" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 “Sarge” 安全性更新" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian “Etch”(測試版)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian “Sid”(不穩定版)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" @@ -1522,14 +1446,17 @@ msgstr "不符合 DFSG 的軟體" #~ msgid " " #~ msgstr " " +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s 個新套件將會安裝。" +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s 個套件將會移除。" +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s 個套件將會升級。" @@ -1537,29 +1464,26 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "套件來源的資料已經過期\n" #~ "\n" -#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套" -#~ "件。\n" +#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套件。\n" #~ "\n" #~ "您須要連線到網際網路繼續。" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "您必須自行檢查更新\n" #~ "\n" -#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設" -#~ "定。" +#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。" #~ msgid "Channel" #~ msgstr "套件來源" @@ -1574,8 +1498,8 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "金鑰" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1583,9 +1507,10 @@ msgstr "不符合 DFSG 的軟體" #~ "請輸入您想加入的完整的 APT 來源列\n" #~ "\n" #~ "\n" -#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp." -#~ "debian.org sarge main\"。" +#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp.debian.org sarge " +#~ "main\"。" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1607,23 +1532,26 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" -#~ msgstr "" -#~ "升級至 Ubuntu 6.06 LTS" +#~ msgstr "升級至 Ubuntu 6.06 LTS" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" @@ -1633,6 +1561,7 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Add _Cdrom" #~ msgstr "加入光碟(_C)" +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1659,15 +1588,19 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Downloading and installing the upgrades" #~ msgstr "正在下載及安裝升級" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "正在下載檔案 %li/%li,速度在 %s/秒" +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1687,15 +1620,14 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." -#~ msgstr "" -#~ "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許" -#~ "關閉更新提示" +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." +#~ msgstr "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許關閉更新提示" #~ msgid "Installation Media" #~ msgstr "安裝媒體" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "新版本:%s (大小:%s)" @@ -1707,15 +1639,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "請先關閉其它程式,如‘aptitude’ 或‘Synaptic’。" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/" -#~ "log/dist-upgrade-apt.log 這兩個檔案。 現在取消更新。\n" +#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/log/dist-upgrade-" +#~ "apt.log 這兩個檔案。 現在取消更新。\n" #~ "您的原始 sources.list 已被存到 /etc/apt/sources.list.distUpgrade。" +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1743,16 +1675,16 @@ msgstr "不符合 DFSG 的軟體" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" -#~ "properties' 工具或 synaptic升級後,你可以重新啟用它。" +#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-properties' 工具或 " +#~ "synaptic升級後,你可以重新啟用它。" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」" -#~ "功能或在終端機中執行“sudo apt-get dist-upgrade”來完整地更新您的系統。" +#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」功能或在終端機中執行“sudo apt-get dist-" +#~ "upgrade”來完整地更新您的系統。" #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1769,15 +1701,12 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "升級現正中止,請匯報問題。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." -#~ msgstr "" -#~ "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" -#~ "configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --configure -a)。" #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "升級可能需要數小時及無法在稍後任何時間取消。" #~ msgid "" @@ -1807,22 +1736,23 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "檢驗升級套件失敗。可能是因為跟伺服器的網路連接出現問題。 " +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "您總共需要下載 %s。" #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop 套" -#~ "件,因此無法偵測正在執行那個版本的 ubuntu。\n" +#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop " +#~ "套件,因此無法偵測正在執行那個版本的 ubuntu。\n" #~ " 請進行操作前使用 synaptic 或 apt-get安裝上述其中一個套件" #~ msgid "Your system has already been upgraded." @@ -1832,4 +1762,4 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "自訂(_C)" #~ msgid "_Download updates in the background, but do not install them" -#~ msgstr "在背景下載更新套件,但無須安裝(_D)" +#~ msgstr "在背景下載更新套件,但無須安裝(_D)" \ No newline at end of file -- cgit v1.2.3 From 51001f1c9963f7054ec94621ee6b45faaacdf86d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 18:04:25 +0200 Subject: * po/*: -make update-po * DistUpgrade/Changelog: - updated * DistUpgrade/build-tarball.sh: - clean *.rej und *.orig --- DistUpgrade/Changelog | 1 - DistUpgrade/build-tarball.sh | 2 +- po/am.po | 171 +++++++++---- po/ar.po | 180 +++++++++----- po/be.po | 179 +++++++++----- po/bg.po | 286 +++++++++++++--------- po/bn.po | 249 ++++++++++++------- po/br.po | 171 +++++++++---- po/ca.po | 276 +++++++++++++-------- po/cs.po | 227 ++++++++++++------ po/csb.po | 176 ++++++++++---- po/da.po | 211 ++++++++++------ po/de.po | 333 ++++++++++++++++---------- po/el.po | 242 ++++++++++++------- po/en_AU.po | 293 ++++++++++++++--------- po/en_CA.po | 253 +++++++++++++------- po/en_GB.po | 239 ++++++++++++------- po/eo.po | 171 +++++++++---- po/es.po | 311 ++++++++++++++---------- po/et.po | 175 ++++++++++---- po/eu.po | 174 ++++++++++---- po/fa.po | 175 ++++++++++---- po/fi.po | 312 ++++++++++++++---------- po/fr.po | 294 ++++++++++++++--------- po/fur.po | 171 +++++++++---- po/gl.po | 335 +++++++++++++++----------- po/he.po | 232 +++++++++++------- po/hi.po | 171 +++++++++---- po/hr.po | 225 ++++++++++++------ po/hu.po | 221 +++++++++++------ po/id.po | 237 +++++++++++------- po/it.po | 342 +++++++++++++++----------- po/ja.po | 523 +++++++++++++++++++++++++--------------- po/ka.po | 197 ++++++++++----- po/ko.po | 356 +++++++++++++++++---------- po/ku.po | 194 ++++++++++----- po/lt.po | 251 ++++++++++++------- po/lv.po | 171 +++++++++---- po/mk.po | 241 ++++++++++++------- po/ms.po | 188 ++++++++++----- po/nb.po | 300 ++++++++++++++--------- po/ne.po | 293 ++++++++++++++--------- po/nl.po | 237 +++++++++++------- po/nn.po | 175 ++++++++++---- po/no.po | 128 +++++----- po/oc.po | 184 +++++++++----- po/pa.po | 175 ++++++++++---- po/pl.po | 413 ++++++++++++++++++-------------- po/pt.po | 242 ++++++++++++------- po/pt_BR.po | 373 +++++++++++++++++------------ po/qu.po | 171 +++++++++---- po/ro.po | 232 +++++++++++------- po/ru.po | 216 +++++++++++------ po/rw.po | 218 +++++++++++------ po/sk.po | 328 +++++++++++++++---------- po/sl.po | 179 +++++++++----- po/sq.po | 171 +++++++++---- po/sr.po | 181 +++++++++----- po/sv.po | 555 ++++++++++++++++++++++++------------------- po/ta.po | 171 +++++++++---- po/th.po | 336 ++++++++++++++------------ po/tr.po | 201 ++++++++++------ po/uk.po | 243 ++++++++++++------- po/update-manager.pot | 127 +++++----- po/ur.po | 171 +++++++++---- po/urd.po | 127 +++++----- po/vi.po | 227 ++++++++++++------ po/xh.po | 175 ++++++++++---- po/zh_CN.po | 257 +++++++++++++------- po/zh_HK.po | 241 ++++++++++++------- po/zh_TW.po | 302 ++++++++++++++--------- 71 files changed, 10667 insertions(+), 5838 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 23a66450..a6faeb8a 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,4 @@ 2006-10-16: - - backup cdroms.list only if actually available - remove leftover references to ubuntu-base and use ubuntu-minimal and ubuntu-standard instead - updated translations from rosetta diff --git a/DistUpgrade/build-tarball.sh b/DistUpgrade/build-tarball.sh index df9d6506..241eda06 100755 --- a/DistUpgrade/build-tarball.sh +++ b/DistUpgrade/build-tarball.sh @@ -4,7 +4,7 @@ DIST=edgy # cleanup echo "Cleaning up" -rm -f *~ *.bak *.pyc *.moved '#'* +rm -f *~ *.bak *.pyc *.moved '#'* *.rej *.orig sudo rm -rf backports/ profile/ result/ tarball/ *.deb diff --git a/po/am.po b/po/am.po index d979ff57..7b63b325 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" @@ -55,6 +55,7 @@ msgstr "ከአንድ ወር በሓላ" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgstr "ቁለፉን የማጥፋት ሰህተት" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "የመረጡትን ቁለፍ ማጥፋት አይቻልም፣ እባክዎን ይህንን ሰህተት ያመለከቱ" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,6 +164,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -209,11 +214,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -223,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -239,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -255,11 +260,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -268,42 +274,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -311,15 +317,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -328,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -351,63 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,22 +426,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -498,13 +510,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -544,6 +557,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -591,6 +605,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -610,6 +625,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -716,6 +732,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -805,14 +822,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -825,6 +845,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -846,6 +867,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -880,6 +902,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -901,6 +924,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -912,19 +936,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1250,184 +1278,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/ar.po b/po/ar.po index e9d0bccc..b747dadf 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" @@ -55,6 +55,7 @@ msgstr "بعد شهر" msgid "After %s days" msgstr "بعد %s يوم" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,10 +124,8 @@ msgstr "خطاء في ازالة المفتاح" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -164,6 +165,7 @@ msgstr "لا يمكن تحديث الرزم العليا المطلوبة" msgid "A essential package would have to be removed" msgstr "سيكون من الضروري إزالة رزم مهمة" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -177,6 +179,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -202,6 +205,7 @@ msgid "" msgstr "" "لم يكن بالإمكان تثبيت إحدى الرزم المطلوبة. الرجاء التبليغ عن هذا كخطأ برمجي. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -215,11 +219,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -229,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "جاري القراءة من الكاش" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -245,12 +249,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, fuzzy msgid "No valid mirror found" msgstr "لم يتم العثور على مرآه صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -262,11 +266,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -275,11 +280,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "معلومات المستودع غير صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 #, fuzzy msgid "" "Upgrading the repository information resulted in a invalid file. Please " @@ -288,32 +293,32 @@ msgstr "" "تحديث معلومات المستودعادت أدت إلى إنتاج ملف غير صالح, الرجاء التبليغ عن هذا " "كخطأ برمجي." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "مصادر الطرف الثالث غير مفعلة" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "خطأ خلال التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "لا يوجد مساحة كافية على القرص الصلب" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +326,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "لم يكن ممكنا تثبيت التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,12 +344,12 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 #, fuzzy msgid "Could not download the upgrades" msgstr "لم يكن ممكنا تنزيل التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " @@ -352,11 +358,11 @@ msgstr "" "سيتم إلغاء التحديث الآن, الرجاء التأكد من إتصالك للإنترنت أو وسيط التثبيت " "والمحاولة ثانيا. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -365,66 +371,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 #, fuzzy msgid "Remove obsolete packages?" msgstr "هل تود إزالة الرزم الملغية?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 #, fuzzy msgid "_Skip This Step" msgstr "_تجاهل هذه الخطوة" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_إزالة" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 #, fuzzy msgid "Error during commit" msgstr "خطأ أثناء التفعيل" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "جاري التأكد من مدير الحزم" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "حاليا في عملية تحديث معلومات المستودع" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "معلومات الرزمة غير صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -434,25 +442,26 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 #, fuzzy msgid "Asking for confirmation" msgstr "حاليا في عملية طلب التأكيد" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "جاري عملية التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "جاري عملية البحث عن البرامج الملغية" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "إنتهت عملية تحديث النظام." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 -#, fuzzy +#, fuzzy, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "الرجاء ادراج '%s' في السوّاقة '%s'" @@ -478,6 +487,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "جاري تطبيق التغييرات" @@ -493,6 +503,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -517,13 +528,14 @@ msgstr "وقع خطأ شديد" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -566,6 +578,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -579,7 +592,7 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:549 -#, fuzzy +#, fuzzy, python-format msgid "Remove %s" msgstr "إزالة %s " @@ -614,6 +627,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -635,6 +649,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -744,6 +759,7 @@ msgstr "لم يمكن تنزيل ملاحظات الإصدار" msgid "Please check your internet connection." msgstr "الرجاء التأكد من إتصالك بالإنترنت" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "لم يكن ممكنا تشغيل أداة التحديث" @@ -835,14 +851,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -855,6 +874,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -876,8 +896,9 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy +#, fuzzy, python-format msgid "Download size: %s" msgstr "حجم التنزيل: %s" @@ -911,6 +932,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -932,6 +954,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "فهرس البرامج تالف" @@ -943,19 +966,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1290,187 +1317,232 @@ msgstr "مساحة النافذة" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "مدعوم بشكل رسمي" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "حقوق نقل محدودة" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/be.po b/po/be.po index 4047be30..9e4aa807 100644 --- a/po/be.po +++ b/po/be.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Пасьля аднаго месяца" msgid "After %s days" msgstr "Пасьля %s дзён" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Памылка выдаленьня ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбраны ключ ня можа быць выдалены. Калі ласка, дашліце баг-рэпорт аб гэтым." @@ -163,6 +165,7 @@ msgstr "Немагчыма абнавіць неабходныя мэтапак msgid "A essential package would have to be removed" msgstr "Трэба было-б выдаліць абавязковы пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Немагчыма падлічыць абнаўленьне" @@ -175,6 +178,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" @@ -202,6 +206,7 @@ msgstr "" "Немагчыма ўсталяваць патрэбны пакет. Калі ласка, паведаміце аб гэтай " "памылцы. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Немагчыма вызначыць мэта-пакет" @@ -215,11 +220,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -229,15 +234,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Чытаньне кэша" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -245,11 +250,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Ня знойдзены правільны люстраны сэрвэр" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +266,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Стварыць прадвызначаны сьпіс крыніц?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -273,17 +279,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для " -"\"%s\".\n" +"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для \"%s" +"\".\n" "\n" "Ці мусяць быць дададзены прадвызначаныя запісы для \"%s\"? Калі вы вылучыце " "\"Не\", абнаўленьне будзе скасавана." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Нерэчаісныя зьвесткі аб сховішчы" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -291,22 +297,22 @@ msgstr "" "Вынік абнаўленьня зьвестак аб сховішчаў меў вынікам нерэчаісны файл. Калі " "ласка, паведаміце аб гэтым, як аб памылцы." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Зыходнікі ад трэціх бакоў - адключаныя" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Памылка ў час абналеньня" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -314,11 +320,11 @@ msgstr "" "Узьнікла памылка ў час абнаўленьня. Звычайна гэта праблемы зь сеткай, калі " "ласка, праверце вашае сеткавае далуэньне й паўтарыце спробу." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Бракуе дыскавае прасторы" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +335,16 @@ msgstr "" "на %s. Спусташыце Сьметніцу й выдаліце часовыя пакеты былых усталёвак з " "дапамогай загаду \"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Ці жадаеце пачаць абнаўленьне?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Немагчыма ўсталяваць абнаўленьні" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,11 +353,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Немагчыма зпампаваць абнаўленьні" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -358,11 +365,11 @@ msgstr "" "Абнаўленьне спынена. Калі ласка, праверце вашае сеткавае далучэньне альбо " "носьбіты ўсталёўкі й паўтарыце спробу. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -371,23 +378,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Выдаліць састарэлыя пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Аб_мінуць гэты крок" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "В_ыдаліць" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Памылка ў час зацьвярджэньня" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -395,41 +402,43 @@ msgstr "" "Узьніклі нейкія памылкі ў час ачысткі. Калі ласка, паглядзіце зьмешчанае " "ніжэй паведамленьне. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Праверка кіраўніка пакетаў" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Абнаўленьне зьвестак сховішча" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Недзеяздольныя зьвесткі пра пакет" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -439,22 +448,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Запыт пацьвярджэньня" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Абнаўленьне" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -482,6 +492,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Зьдзяйсьненьне зьменаў" @@ -497,6 +508,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -520,13 +532,14 @@ msgstr "Узьнікла невыправімая памылка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -569,6 +582,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -616,6 +630,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -637,6 +652,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -747,6 +763,7 @@ msgstr "Немагчыма зпампаваць нататкі рэдакцыі" msgid "Please check your internet connection." msgstr "Калі ласка, праверце вашае далучэньне да інтэрнэту." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Немагчыма запусьціць сродак абнаўленьня" @@ -838,14 +855,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -858,6 +878,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -879,6 +900,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -914,6 +936,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -935,6 +958,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Пашкоджаны індэкс праграм" @@ -946,19 +970,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1285,184 +1313,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/bg.po b/po/bg.po index af905a75..dc8dc1d8 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -55,6 +55,7 @@ msgstr "След един месец" msgid "After %s days" msgstr "След %s дни" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,14 +126,13 @@ msgid "Error removing the key" msgstr "Грешка при премахване на ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ключът, който избрахте не може да бъде премахнат. Докладвайте това като " "грешка." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -169,6 +171,7 @@ msgstr "Не може да бъдат надградени изисквани м msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" @@ -184,6 +187,7 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" @@ -211,6 +215,7 @@ msgstr "" "Не можеше да бъде инсталиран нужен пакет. Моля, докладвайте това като " "грешка! " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" @@ -229,12 +234,12 @@ msgstr "" " Моля, преди да продължите, инсталирайте един от тези пакети, като " "използвате synaptic или apt-get!" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Грешка при доставянето" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +249,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Четене на кеша" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Не е открит валиден огледален сървър" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -283,11 +288,12 @@ msgstr "" "изберете \"Да\", всички записи \"%s \" ще бъдат актуализирани на \"%s\".\n" "Ако изберете \"Не\", актуализирането ще бъде отменено." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,17 +301,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за " -"\"%s\".\n" +"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за \"%s" +"\".\n" "\n" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Информацията от хранилището е невалидна" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -313,11 +319,11 @@ msgstr "" "Надграждане на информацията от хранилището доведе до невалиден файл. Моля, " "съобщете това като грешка!" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Забранени са източници от трети страни" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -328,11 +334,11 @@ msgstr "" "Можете да ги разрешите отново след надграждането чрез инструмента software-" "properties или чрез synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Грешка по време на надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -340,11 +346,11 @@ msgstr "" "Възникна проблем при актуализацията. Това обикновено е накакъв проблем с " "мрежата. Моля, проверете мрежовата връзка и опитайте пак!" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Недостатъчно свободно място на диска" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -352,15 +358,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Не можеше да бъдат инсталирани надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -372,11 +379,11 @@ msgstr "" "Надграждането сега ще бъде прекратено. Системата Ви може да е в " "неизползваемо състояние. Бе изпълнено възстановяване (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Не можеше да бъдат свалени надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -384,11 +391,11 @@ msgstr "" "Надграждането се прекратява. Моля, проверете Интернет връзката или " "инсталационния носител и опитайте отново! " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -397,23 +404,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Премахване на остарелите пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "П_рескачане на стъпката" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Премахване" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Грешка при прехвърляне" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,27 +428,29 @@ msgstr "" "Имаше проблем при почистването. Моля, вижте съобщението по-долу за повече " "информация! " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Рестартиране на системата" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Проверка на диспечера на пакети" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Подготвяне на надграждането" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -451,17 +460,17 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Актуализиране информацията от хранилището" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Invalid package information" msgstr "Невалидна информация за пакет" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -473,22 +482,23 @@ msgstr "" "бъде открит.\n" "Това показва сериозна грешка. Моля, съобщете за това!" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Запитване за потвърждение" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -500,7 +510,7 @@ msgid "Fetching is complete" msgstr "Актуализацията е завършена" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Сваляне на файл %li от %li при %s/сек" @@ -511,12 +521,13 @@ msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Изтегляне на файл %li от общо %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Прилагане на промените" @@ -532,8 +543,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -558,41 +570,42 @@ msgstr "Възникна фатална грешка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-" -"upgrade.log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. " -"Надграждането сега ще бъде прекратено.\n" -"Оригиналният \"sources.list\" was saved inбе съхранен в " -"\"/etc/apt/sources.list.distUpgrade\"." +"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-upgrade." +"log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. Надграждането " +"сега ще бъде прекратено.\n" +"Оригиналният \"sources.list\" was saved inбе съхранен в \"/etc/apt/sources." +"list.distUpgrade\"." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -617,6 +630,7 @@ msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -664,6 +678,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -683,6 +698,7 @@ msgstr "Надграждането е завършено и има нужда о #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -797,6 +813,7 @@ msgstr "Не можеше да бъдат свалени бележките къ msgid "Please check your internet connection." msgstr "Моля, проверете Интернет връзката си!" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не може да бъде стартирана помощната програма за надграждане." @@ -873,12 +890,12 @@ msgstr "" "мрежата или сървъра. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Сваляне на файл %li от %li при %s/сек" @@ -903,15 +920,18 @@ msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -927,6 +947,7 @@ msgstr "Ubuntu 5.10 Състарени версии" msgid "Distribution updates" msgstr "_Поднови надграждането" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -951,6 +972,7 @@ msgstr "" msgid "_Check All" msgstr "_Проверка" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -977,15 +999,16 @@ msgid "Checking for updates" msgstr "_Инсталиране на актуализациите" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Нова версия: %s (Размер: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Версия %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1010,6 +1033,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" @@ -1024,19 +1048,23 @@ msgstr "" "ползвайте диспечера на пакети \"Synaptic\" или първо задействайте \"sudo apt-" "get install -f\" в терминален прозорец, за да поправите този проблем!" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1317,8 +1345,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Добавете пълния APT ред за канала, който искате да " -"добавите\n" +"Добавете пълния APT ред за канала, който искате да добавите\n" "\n" "APT редът съдържа вида, местонахождението и компонентите за даден канал. " "Например „deb http://ftp.debian.org sarge main“." @@ -1414,206 +1442,250 @@ msgstr "Размерът на прозореца" msgid "Configure the sources for installable software and updates" msgstr "Настройка на софтуерните канали и актуализациите по Интернет" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 актуализации" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Поддържани от обществото (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Допринесен софтуер" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Поддържани от обществото (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Несвободни (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Несвободни (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 актуализации" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официално поддържани" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 актуализации" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободни (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официално поддържан" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограничени авторски права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 обновления по сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 обновления" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" актуализации на сигурността" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестване)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабилен)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-съвместим софтуер с несвободни зависимости" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" @@ -1622,7 +1694,6 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Ограничен за изнасяне от САЩ софтуер" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Сваляне на файл %li от %li при неизвестна скорост" @@ -1643,7 +1714,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Надграждане до Ubuntu 6.06 LTS" +#~ "Надграждане до Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1673,13 +1745,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Някои актуализации изискват премахването на допълнителен софтуер. " #~ "Използвайте функцията „Маркиране на всички актуализации” на Диспечера на " -#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в терминален " -#~ "прозорец, за да актуализирате напълно системата си." +#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в " +#~ "терминален прозорец, за да актуализирате напълно системата си." #~ msgid "The following updates will be skipped:" #~ msgstr "Следните актуализации ще бъдат пропуснати:" @@ -1700,7 +1772,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Покажи детайлите" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "Позволено е да оперира само един диспечер на софтуера в даден момент" +#~ msgstr "" +#~ "Позволено е да оперира само един диспечер на софтуера в даден момент" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1808,16 +1881,16 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "" #~ "Ключове за идентификация\n" #~ "\n" -#~ "Може да добавяте и премахвате ключове за идентификация през този прозорец. " -#~ "Ключът прави възможна проверката на цялостта на софтуера, който сваляте от " -#~ "интернет." +#~ "Може да добавяте и премахвате ключове за идентификация през този " +#~ "прозорец. Ключът прави възможна проверката на цялостта на софтуера, който " +#~ "сваляте от интернет." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, че " -#~ "сте получили ключа по сигурен канал и че можете да се доверите на " +#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, " +#~ "че сте получили ключа по сигурен канал и че можете да се доверите на " #~ "собственика. " #~ msgid "Add repository..." @@ -1845,8 +1918,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Максимален размер в Мб:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Възвръщане на стандартните ключове идващи с дистрибуцията. Това няма да " #~ "промени потребителските инсталирани ключове." @@ -1878,13 +1951,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Налични обновления\n" #~ "\n" -#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като натиснете " -#~ "бутона „Инсталиране“." +#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като " +#~ "натиснете бутона „Инсталиране“." #~ msgid "Cancel downloading the changelog" #~ msgstr "Отказ на свалянето на дневника на промените" @@ -1960,7 +2033,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr[1] "Избрахте всички %s пакета за обновяване, с общ размер %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избрахте %s от %s пакет за обновяване, с размер %s" #~ msgstr[1] "Избрахте %s от %s пакета за обновяване, с общ размер %s" @@ -1968,11 +2042,11 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Обновленията се прилагат." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Може да стартирате само една програма за управление на пакетите. Затворете " -#~ "другата програма първо." +#~ "Може да стартирате само една програма за управление на пакетите. " +#~ "Затворете другата програма първо." #~ msgid "Updating package list..." #~ msgstr "Обновяване на списъка с пакетите..." @@ -1985,25 +2059,25 @@ msgstr "Софтуер несъвместим с DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще бъдат " -#~ "спрени поправките по сигурността и други критични обновления. Вижте " +#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще " +#~ "бъдат спрени поправките по сигурността и други критични обновления. Вижте " #~ "http://www.ubuntulinux.org за повече информация." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Има нова версия на Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Излезнала е нова версия с кодовото име „%s“. Вижте " -#~ "http://www.ubuntulinux.org за информация по обновяването." +#~ "Излезнала е нова версия с кодовото име „%s“. Вижте http://www.ubuntulinux." +#~ "org за информация по обновяването." #~ msgid "Never show this message again" #~ msgstr "Без да се показва това съобщение отново" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Няма открити промени. Сървърът може би не е обновен." \ No newline at end of file +#~ msgstr "Няма открити промени. Сървърът може би не е обновен." diff --git a/po/bn.po b/po/bn.po index c1187db5..afa2194c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -55,6 +55,7 @@ msgstr "এক মাস পর" msgid "After %s days" msgstr "%s দিন পর" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,12 +124,11 @@ msgid "Error removing the key" msgstr "কী সরাতে সমস্যা হয়েছে" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -162,6 +164,7 @@ msgstr "দরকারী meta-packages আপগ্রেড করতে প msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -195,9 +199,10 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ " -"হিসাবে রিপোর্ট করুন। " +"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ হিসাবে " +"রিপোর্ট করুন। " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" @@ -211,12 +216,12 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "আনতে ব্যর্থ" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -226,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "ক্যাশ পড়া হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -242,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "কোন সঠিক মিরর পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +263,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,52 +276,52 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে " -"পাওয়া যায় নি।\n" +"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে পাওয়া যায় " +"নি।\n" "\n" -"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট " -"বাতিল হবে।" +"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " +"হবে।" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "রিপোজিটরির তথ্য সঠিক নয়" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে " -"বাগ হিসাবে রিপোর্ট করুন।" +"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " +"হিসাবে রিপোর্ট করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "তৃতীয় পার্টির উত্স নিষ্ক্রিয়" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "আপগ্রেড করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ " -"করে আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" +"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " +"আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "ডিস্কে যথেস্ট ফাঁকা জায়গা নেই" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +329,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,23 +347,23 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া " -"পরীক্ষা করুন এবং আবার চেষ্টা করুন। " +"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " +"করুন এবং আবার চেষ্টা করুন। " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -365,64 +372,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "এই ধাপটি এড়িয়ে যাও (_এ)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "সরাও (_স)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "আপগ্রেড প্রস্তুত করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -432,22 +441,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "তথ্যের জন্য জিজ্ঞাসা" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,23 +469,24 @@ msgid "Fetching is complete" msgstr "আপডেট সম্পন্ন" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "%li of %li ফাইল ডাউনলোড করছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "%li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "%li of %li ফাইল ডাউনলোড করছে" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "পরিবর্তনগুলো প্রয়োগ করছি" @@ -491,8 +502,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -516,36 +528,37 @@ msgstr "একটি মারাত্মক সমস্যা সংঘটি #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -560,13 +573,13 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" +msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -594,12 +607,12 @@ msgid "Upgrade %s" msgstr "%s আপগ্রেড" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "%li দিন %li ঘন্টা %li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "%li ঘন্টা %li মিিনিট বাকি আছে" @@ -614,6 +627,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,12 +642,12 @@ msgstr "রিবুট করা প্রয়োজন" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" +msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -743,6 +757,7 @@ msgstr "রিলিজ নোট ডাউনলোড করা যায় ন msgid "Please check your internet connection." msgstr "অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "আপগ্রেড টুলটি চালানো যায় নি" @@ -784,9 +799,7 @@ msgstr "এক্সট্রাক্ট করতে ব্যর্থ" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে " -"পারে। " +msgstr "আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -798,8 +811,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে " -"সমস্যা থাকতে পারে। " +"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা " +"থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -839,18 +852,20 @@ msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ " -"পরীক্ষা করুন।" +"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -866,6 +881,7 @@ msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" msgid "Distribution updates" msgstr "পুনরায় আপগ্রেড শুরু (_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -890,6 +906,7 @@ msgstr "" msgid "_Check All" msgstr "পরীক্ষা করো (_C)" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -916,15 +933,16 @@ msgid "Checking for updates" msgstr "আপডেট ইন্সটল করো (_I)" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "নতুন ভার্সন: %s (আকার: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "ভার্সন %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -946,6 +964,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" @@ -957,19 +976,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1312,201 +1335,245 @@ msgstr "উইনডোর আকার" msgid "Configure the sources for installable software and updates" msgstr "সফ্টওয়্যার চ্যানেল এবং ইন্টারনেট আপডেট কনফিগার" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "উবুন্টু ৫.১০ আপডেট" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "ডেবিয়ান ৩.১ \"সার্জ\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "ডেবিয়ান ৩.১ \"Sarge\" নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "ডেবিয়ান \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "ডেবিয়ান \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1552,7 +1619,6 @@ msgstr "" #~ msgid "The following updates will be skipped:" #~ msgstr "নিম্নের আপডেটগুলো বাদ দেয়া হবে:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "%li সেকেন্ড বাকি আছে" @@ -1560,8 +1626,7 @@ msgstr "" #~ msgstr "ডাউনলোড সম্পন্ন" #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "" -#~ "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" +#~ msgstr "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" #~ msgid "Upgrading Ubuntu" #~ msgstr "উবুন্টু আপগ্রেড করছি" @@ -1578,8 +1643,8 @@ msgstr "" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে " -#~ "বন্ধ করুন।" +#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে বন্ধ " +#~ "করুন।" #~ msgid "Channels" #~ msgstr "চ্যানেল" @@ -1626,4 +1691,4 @@ msgstr "" #~ msgstr "উবুন্টু ৬.০৬ আপডেট" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" \ No newline at end of file +#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" diff --git a/po/br.po b/po/br.po index 0295bb13..f6a9d395 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "War-lerc'h %s devezh" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Fazi en ur zilemel an alc'hwezh" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "N'eus ket tu da zilemel an alc'whezh ho peus dibabet. Kelaouit eo ur bug " "marplij." @@ -162,6 +164,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -209,11 +214,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -223,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -239,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -255,11 +260,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -268,42 +274,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -311,15 +317,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -328,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -351,63 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,22 +426,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -498,13 +510,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -544,6 +557,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -591,6 +605,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -610,6 +625,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -716,6 +732,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -805,14 +822,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -825,6 +845,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -846,6 +867,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -880,6 +902,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -901,6 +924,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -912,19 +936,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1251,187 +1279,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/ca.po b/po/ca.po index 7ef3fe96..3991cf8c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -54,6 +54,7 @@ msgstr "Després d'un mes" msgid "After %s days" msgstr "Després de %s dies" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,14 +127,13 @@ msgid "Error removing the key" msgstr "S'ha produït un error en esborrar la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La clau que heu seleccionat no es pot esborrar. Notifiqueu-ho com a error de " "programació." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -170,6 +172,7 @@ msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" @@ -185,6 +188,7 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" @@ -212,6 +216,7 @@ msgstr "" "No s'ha pogut instal·lar un dels paquets sol·licitats. Envieu un informe amb " "els error. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -231,12 +236,12 @@ msgstr "" " Instal·leu algun dels paquets anteriors des del Synaptic o amb l'apt-get " "per poder continuar." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Ha fallat l'extracció" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +251,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "S'està llegint la memòria cau" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "No s'ha trobat una rèplica vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -278,11 +283,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Voleu generar les fonts per defecte?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -291,11 +297,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "La informació del dipòsit no és vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -303,11 +309,11 @@ msgstr "" "En actualitzar la informació del dipòsit s'ha produït un error. Informeu de " "l'error." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "S'han desactivat les fonts de tercers" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -318,11 +324,11 @@ msgstr "" "reactivar-los, després de l'actualització de programari, des de 'propietats " "del programari' o des del Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -330,31 +336,32 @@ msgstr "" "S'ha produït un error mentre s'actualizava el vostre sistema. Comproveu la " "vostra connexió de xarxa i torneu a intentar-ho." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a " -"%s. \n" +"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a %s." +"\r\n" "Buideu la vostra paperera i esborreu els paquets temporals utilitzant 'sudo " "apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -366,11 +373,11 @@ msgstr "" "L'actualització s'ha cancel·lat. El vostre sistema ha pogut quedar " "inservible. S'ha executat una recuperació del sistema (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "No s'han pogut descarregar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -378,11 +385,11 @@ msgstr "" "S'ha cancel·lat l'actualització. Comproveu la vostra connexió a Internet o " "el mitjà d'instal·lació i torneu-ho a provar. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -396,49 +403,51 @@ msgstr "" "\n" "Si no teniu activat 'universe' se us sugerirà que els desintal·leu." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Voleu esborrar els paquets obsolets?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Omet aquest pas" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "Esbo_rra" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "S'està preparant l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -448,15 +457,15 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "S'està actualitzant la informació del dipòsit" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "La informació del paquet no és valida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -466,22 +475,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Actualitzant" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -493,23 +503,24 @@ msgid "Fetching is complete" msgstr "S'ha completat l'actualització" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "S'està descarregant el fitxer %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Queden uns %li minuts" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "S'està descarregant el fitxer %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "S'estan aplicant els canvis" @@ -525,8 +536,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -550,36 +562,37 @@ msgstr "S'ha produït un error greu" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -604,6 +617,7 @@ msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -631,12 +645,12 @@ msgid "Upgrade %s" msgstr "Actualitza %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Queden uns %li dies %li hores %li minuts" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Queden unes %li hores %li minuts" @@ -651,6 +665,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -672,6 +687,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -691,8 +707,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicieu el sistema per a completar l'actualització" +msgstr "Reinicieu el sistema per a completar l'actualització" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -786,6 +801,7 @@ msgstr "No s'han pogut descarregar les notes de la versió" msgid "Please check your internet connection." msgstr "Comproveu la vostra connexió a Internet" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No es pot executar l'eina d'actualització" @@ -851,12 +867,12 @@ msgid "" msgstr "" #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" @@ -881,15 +897,18 @@ msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Debian Stable Security Updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -905,6 +924,7 @@ msgstr "Actualitzacions d'Ubuntu 6.06 LTS" msgid "Distribution updates" msgstr "_Reprén l'actualització" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -929,6 +949,7 @@ msgstr "" msgid "_Check All" msgstr "_Comprova" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -955,15 +976,16 @@ msgid "Checking for updates" msgstr "S'estan comprovant les actualitzacions..." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versió nova: %s (Mida: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Versió %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -988,6 +1010,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" @@ -1002,19 +1025,23 @@ msgstr "" "utilitzeu el gestor de paquets \"Synaptic\" o executeu \"sudo apt-get " "install -f\" en un terminal." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1383,207 +1410,251 @@ msgstr "La mida de la finestra" msgid "Configure the sources for installable software and updates" msgstr "Configura els canals de programari i les actualitzacions d'Internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualitzacions d'Ubuntu 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Programari de la comunitat" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Paquets sense llicència lliure (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualitzacions d'Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Paquets mantinguts oficialment (Main)" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualitzacions d'Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Algun programari ja no es mantindrà oficialment" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Paquets amb restriccions per copyright (Restricted)" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualitzacions d'Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualitzacions de seguretat de Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programari compatible DFSG amb dependències no lliures" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" @@ -1592,9 +1663,9 @@ msgstr "Programari no compatible DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Programari amb restriccions d'exportació als EUA" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" +#~ msgstr "" +#~ "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" #, fuzzy #~ msgid "Normal updates" @@ -1647,8 +1718,8 @@ msgstr "Programari no compatible DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algunes actualitzacions requereixen la desinstal·lació de programari " #~ "adicional. Per actualitzar completament el vostre sistema utilitzeu la " @@ -1658,7 +1729,6 @@ msgstr "Programari no compatible DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Les següents actualitzacions s'ometran:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Queden uns %li segons" @@ -1769,8 +1839,9 @@ msgstr "Programari no compatible DFSG" #~ msgstr "" #~ "Claus d'autenticació\n" #~ "\n" -#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus d'autenticació. " -#~ "Les claus permeten comprovar la integritat del programari que descarregueu." +#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus " +#~ "d'autenticació. Les claus permeten comprovar la integritat del programari " +#~ "que descarregueu." #~ msgid "" #~ "Enter the complete APT line of the repository that you want to " @@ -1783,15 +1854,15 @@ msgstr "Programari no compatible DFSG" #~ "Introduïu la línia APT del dipòsit que voleu afegir\n" #~ "\n" #~ "La línia APT conté el tipus, la ubicació i el contingut del dipòsit; per " -#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar una " -#~ "descripció més detallada de la sintaxi en la documentació." +#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar " +#~ "una descripció més detallada de la sintaxi en la documentació." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner." +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner." #~ msgstr "" -#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut la " -#~ "clau per un canal segur i que confieu en el propietari." +#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut " +#~ "la clau per un canal segur i que confieu en el propietari." #~ msgid "Add repository..." #~ msgstr "Afegeix un dipòsit..." @@ -1824,11 +1895,11 @@ msgstr "Programari no compatible DFSG" #~ msgstr "Restaura les claus per defecte" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restaura les claus per defecte de la distribució. Això no afecta les claus " -#~ "instal·lades per l'usuari." +#~ "Restaura les claus per defecte de la distribució. Això no afecta les " +#~ "claus instal·lades per l'usuari." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Fixa la mida _màxima de memòria cau per als paquets descarregats" @@ -1860,8 +1931,8 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualitzacions disponibles\n" #~ "\n" @@ -1873,8 +1944,8 @@ msgstr "Programari no compatible DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "S'estan descarregant els " -#~ "canvis\n" +#~ "S'estan descarregant els canvis\n" #~ "\n" #~ "Es necessita obtenir els canvis des del servidor central" @@ -1963,7 +2034,8 @@ msgstr "Programari no compatible DFSG" #~ "Heu seleccionat els %s paquets actualitzats, la mida total és de %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Heu seleccionat %s paquet actualitzat de %s, la mida és de $s" #~ msgstr[1] "" #~ "Heu seleccionat %s paquets actualitzats de %s, la mida total és de %s" @@ -1978,8 +2050,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "S'està executant un altre gestor de paquets" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Només podeu executar un gestor de paquets a la vegada. Tanqueu l'altra " #~ "aplicació." @@ -2001,24 +2073,24 @@ msgstr "Programari no compatible DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Actualitzeu el sistema amb una versió més nova d'Ubuntu Linux. La vostra " #~ "versió ja no disposarà de més actualitzacions de seguretat ni d'altres " -#~ "actualitzacions crítiques. Si voleu més informació, visiteu " -#~ "http://www.ubuntulinux.org/." +#~ "actualitzacions crítiques. Si voleu més informació, visiteu http://www." +#~ "ubuntulinux.org/." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ja disposeu del nou llançament d'Ubuntu" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Ja disposeu del nou llançament d'Ubuntu amb el nom en clau '%s'. Si " -#~ "necessiteu instruccions per a actualitzar el sistema, visiteu " -#~ "http://www.ubuntulinux.org/." +#~ "necessiteu instruccions per a actualitzar el sistema, visiteu http://www." +#~ "ubuntulinux.org/." #~ msgid "Never show this message again" #~ msgstr "No tornis a mostrar aquest missatge" @@ -2026,4 +2098,4 @@ msgstr "Programari no compatible DFSG" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" #~ "No s'han trobat els canvis. Pot ser que el servidor encara no s'hagi " -#~ "actualitzat." \ No newline at end of file +#~ "actualitzat." diff --git a/po/cs.po b/po/cs.po index 6ec03ae8..47d205cb 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Po měsíci" msgid "After %s days" msgstr "Po %s dnech" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "Aktualizace %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hlavní server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,12 +125,11 @@ msgid "Error removing the key" msgstr "Chyba při odstraňování klíče" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Nemohu aktualizovat požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Toto by vedlo k odstranění základního balíku" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" @@ -182,6 +185,7 @@ msgstr "" "Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " "soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba při ověřování některých balíků" @@ -208,6 +212,7 @@ msgid "" msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" @@ -226,12 +231,12 @@ msgstr "" " Před pokračováním si prosím nainstalujte jeden z výše uvedených balíků " "pomocí synaptic nebo apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Chyba při přidávání CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -247,15 +252,15 @@ msgstr "" "Chybová zpráva byla:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Probíhá čtení cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Stáhnout ze sítě nějaká data pro přechod na vyšší verzi?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +272,11 @@ msgstr "" "Pokud máte levné připojení k síti, můžete zde odpovědět 'Ano'. Pokud je vaše " "síťové připojené nákladné, zvolte 'Ne'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nenalezeno správné zrcadlo" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -290,11 +295,12 @@ msgstr "" "všechny položky '%s' aktualizovány na '%s'.\n" "Zvolíte-li 'Ne', aktualizace bude zrušena." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Vygenerovat výchozí zdroje?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +314,11 @@ msgstr "" "Chcete přidat výchozí položky pro '%s'? Zvolíte-li 'Ne', aktualizace bude " "zrušena." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Neplatná informace o zdroji" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,11 +326,11 @@ msgstr "" "Aktualizace informací o repozitáři vyústila v neplatný soubor. Prosím " "oznamte to jako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Zdroje třetích stran vypnuté" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -334,11 +340,11 @@ msgstr "" "položky můžete opět povolit po přechodu na novou verzi za pomocí nástroje " "'software-properties' nebo nástroje synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Chyba během aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +352,11 @@ msgstr "" "Nastala chyba během aktualizace. Toto je obvykle způsobeno chybou síťového " "připojení. Prosím zkontrolujte své připojení a zkuste to znovu." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Nedostatek volného místa na disku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -361,15 +367,16 @@ msgstr "" "Vyprázdněte váš koš a odstraňte dočasné balíčky z dřívějších instalací " "pomocí 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nelze nainstalovat aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -384,11 +391,11 @@ msgstr "" "Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " "soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nelze stáhnout aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +403,11 @@ msgstr "" "Aktualizace byla předčasně ukončena. Prosím zkontrolujte si připojení k " "internetu nebo instalační médium a zkuste to znovu. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Podpora pro některé aplikace byla ukončena" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -414,23 +421,23 @@ msgstr "" "Pokud nemáte povolen software spravovaný komunitou (universe), tyto balíčky " "budou v dalším kroku navrhnuty k odstranění." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Odebrat zastaralé balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Přeskočit tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Odebrat" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Chyba při potvrzování" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,44 +445,46 @@ msgstr "" "Během čištění nastal problém. Podrobnější informace jsou obsaženy v " "následující zprávě: " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Stahuji verzi '%s' přenesenou z vyšší verze distribuce" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Kontroluji správce balíků" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Příprava přechodu na vyšší verzi selhala" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" "Příprava systému na přechod na vyšší verzi selhala. Prosím nahlaste tuto " -"chybu jako chybu balíčku 'update-manager' a přiložte soubory z adresáře " -"/var/log/dist-upgrade/ k hlášení o chybě." +"chybu jako chybu balíčku 'update-manager' a přiložte soubory z adresáře /var/" +"log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aktualizují se informace o repozitáři" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Neplatná informace o balících" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -487,25 +496,26 @@ msgstr "" "Poté co byly aktualizovány informace o balících, nebyl nalezen nezbytný " "balík '%s'.\n" "Toto ukazuje na závažný problém, prosím nahlašte toto jako chybu balíku " -"'update-manager' a přiložte k hlášení o chybě soubory v adresáři " -"/var/log/dist-upgrade/." +"'update-manager' a přiložte k hlášení o chybě soubory v adresáři /var/log/" +"dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Vyžaduji potvrzení" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Probíhá přechod na vyšší verzi" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Vyhledávám zastaralý software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Přechod na vyšší verzi systému je dokončen." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,7 +526,7 @@ msgid "Fetching is complete" msgstr "Stahování je dokončeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" @@ -527,12 +537,13 @@ msgid "About %s remaining" msgstr "Zhruba %s zbývá" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Stahuji soubor %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Provádím změny" @@ -548,9 +559,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Aktualizace byla předčasně ukončena. Nahlašte prosím tuto chybu jako chybu " -"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře " -"/var/log/dist-upgrade/." +"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře /" +"var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -578,17 +590,18 @@ msgstr "Nastala kritická chyba" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosím oznamte toto jako chybu a do zprávy připojte soubory /var/log/dist-" "upgrade/main.log a /var/log/dist-upgrade/apt.log. Přechod na novou verzi " -"bude nyní předčasně ukončen. Váš původní soubor sources.list byl uložen do " -"/etc/apt/sources.list.distUpgrade." +"bude nyní předčasně ukončen. Váš původní soubor sources.list byl uložen do /" +"etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -614,7 +627,7 @@ msgstr[1] "%d balíky budou nahrazeny vyšší verzí." msgstr[2] "%d balíky bude nahrazeno vyšší verzí." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -636,6 +649,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Uzavřete všechny aplikace a dokumenty pro zamezení ztrátě dat." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -685,6 +699,7 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -708,6 +723,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -818,6 +834,7 @@ msgstr "Nemohu stáhnout poznámky k vydání." msgid "Please check your internet connection." msgstr "Prosím zkontrolujte své internetové připojení." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nemohu spustit aktualizační nástroj" @@ -917,14 +934,17 @@ msgstr "" "Stažení seznamu změn selhalo. \n" "Prosím zkontrolujte své internetové připojení." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Důležité bezpečnostní aktualizace" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Doporučené aktualizace" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Navržené aktualizace" @@ -937,6 +957,7 @@ msgstr "Aplikace přenesené z novějších verzí distribuce" msgid "Distribution updates" msgstr "Aktualizace distribuce" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Ostatní aktualizace" @@ -959,6 +980,7 @@ msgstr "_Odznačit vše" msgid "_Check All" msgstr "_Zkontrolovat vše" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -994,6 +1016,7 @@ msgstr "Z verze %(old_version)s na verzi %(new_version)s" msgid "Version %s" msgstr "Verze %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1011,14 +1034,15 @@ msgid "" msgstr "" "Pro vaší verzi Ubuntu Linux již nejsou dostupné žádné další bezpečnostní " "opravy ani velmi důležité aktualizace. Přejděte na vyšší verzi Ubuntu Linux. " -"Pro více informací o přechodu na vyšší verzi se podívejte na " -"http://www.ubuntu.com." +"Pro více informací o přechodu na vyšší verzi se podívejte na http://www." +"ubuntu.com." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Nové vydání distribuce (%s) je k dispozici" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Seznam softwaru je poškozen" @@ -1033,19 +1057,23 @@ msgstr "" "\"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get install -f\" " "pro nápravu tohoto problému." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Prázdný" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1320,8 +1348,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadejte úplnou specifikaci APT kanálu, který chcete " -"přidat\n" +"Zadejte úplnou specifikaci APT kanálu, který chcete přidat\n" "\n" "Řádek pro APT kanál obsahuje typ, umístění a součásti kanálu, např. \"deb " "http://ftp.debian.org sarge main\"." @@ -1410,192 +1438,234 @@ msgstr "Velikost okna" msgid "Configure the sources for installable software and updates" msgstr "Konfigurovat zdroje pro instalovatelný software a aktualizace" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Udržováno komunitou" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Patentované (proprietární) ovladače zařízení" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Nesvobodný software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom s Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržováno komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Udržováno komunitou (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software s otevřeným zdrojovým kódem, který je udržován komunitou" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nesvobodné ovladače" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Patentované (proprietární) ovladače pro zařízení " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software s omezující licencí (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software omezený ochrannou známkou nebo jinými právními prostředky" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom s Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aktualizace přenesené z vyšších verzí distribuce" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bezpečnostní aktualizace Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizace Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Software přenesený z vyšší verze distribuce na Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom s Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálně podporováno" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Bezpečnostní aktualizace Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aktualizace Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržováno komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nesvobodný (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom s Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Již není oficiálně podporováno" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Omezený copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bezpečnostní aktualizace Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aktualizace Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Bezpečnostní Aktualizace Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" -"Software kompatibilní s DFSG, ale závisející na nesvobodných balících" +msgstr "Software kompatibilní s DFSG, ale závisející na nesvobodných balících" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software nekompatibilní s DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Stahuji %li. soubor z %li neznámou rychlostí" @@ -1634,8 +1704,8 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "" #~ "Prozkoumává se systém\n" #~ "\n" -#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti a " -#~ "poskytují nové funkce." +#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti " +#~ "a poskytují nové funkce." #~ msgid "Oficially supported" #~ msgstr "Oficiálně podporované" @@ -1643,7 +1713,6 @@ msgstr "Software nekompatibilní s DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Následující aktualizace budou přeskočeny:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zhruba %li sekund zbývá" @@ -1720,14 +1789,14 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Ubuntu 6.06 LTS backporty" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka pro " -#~ "upgrade.\n" +#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka " +#~ "pro upgrade.\n" #~ msgid "Sections" #~ msgstr "Sekce" #~ msgid "Sections:" -#~ msgstr "Sekce:" \ No newline at end of file +#~ msgstr "Sekce:" diff --git a/po/csb.po b/po/csb.po index cb3d3943..47143244 100644 --- a/po/csb.po +++ b/po/csb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-08 04:10+0000\n" "Last-Translator: Michôł Òstrowsczi \n" "Language-Team: Kashubian \n" @@ -56,6 +56,7 @@ msgstr "Pò miesącu" msgid "After %s days" msgstr "P %s dniach" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s aktualizacëji" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Przédny serwera" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Fela òbczas rëmaniô klucza" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nie mòżna bëło rëmnąc klucza. Proszã zgłoszëc to jakno felã." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,6 +164,7 @@ msgstr "Nie je mòżno zaktualizowac wëmôgónëch meta-paczétów" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fela òbczas ùdowierzaniô niechtërnëch paczétów" @@ -198,6 +202,7 @@ msgstr "" "Nie bëło mòżna zainstalowac wëmôgónegò paczétu. Proszã zgłoszëc to jakno " "felã. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -211,11 +216,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Nie je mòżno dodac platë CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +230,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +246,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +262,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +276,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fela òbczas aktualizacëji" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -313,15 +319,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "CZë chcesz zrëszëc aktualizacëjã?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Instalacëja aktualizacëji nie darzëła sã." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -330,21 +337,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -353,63 +360,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Rëmôj" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fela òbczas zacwierdzaniô" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Sprôwdzanié menadżera paczétów" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -419,22 +428,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -462,6 +472,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Zacwierdzanié zmianów" @@ -477,6 +488,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -502,13 +514,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -551,6 +564,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -560,8 +574,7 @@ msgstr "Twojô systema je fùl zaktualizowónô" msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" -"Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." +msgstr "Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." #: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format @@ -599,6 +612,7 @@ msgid "%li seconds" msgstr "%li sekùnd" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -619,6 +633,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -725,6 +740,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -814,14 +830,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -834,6 +853,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -855,6 +875,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -890,6 +911,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -911,6 +933,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -922,19 +945,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1260,184 +1287,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/da.po b/po/da.po index 9d21e317..dee2a8eb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 15:55+0000\n" "Last-Translator: Lasse Bang Mikkelsen \n" "Language-Team: Danish \n" @@ -55,6 +55,7 @@ msgstr "Efter en måned" msgid "After %s days" msgstr "Efter %s dage" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s opdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hovedserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Fejl ved fjernelse af nøgle" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Den valgte nøgle kunne ikke fjernes. Rapportér venligst dette som en fejl." @@ -164,6 +166,7 @@ msgstr "Kan ikke opgradere de krævede metapakker" msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vital pakke" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke beregne opgraderingen" @@ -180,6 +183,7 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" @@ -207,6 +211,7 @@ msgstr "" "Det var umuligt at installere en påkrævet pakke. Rapportér venligst dette " "som en fejl. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gætte metapakke" @@ -226,11 +231,11 @@ msgstr "" "Installér venligst en af pakkerne nævnt herover ved hjælp af synaptic eller " "apt-get, før du fortsætter." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Kunne ikke tilføje cd" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +250,15 @@ msgstr "" "Fejlmeddelelsen var:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Læser mellemlager" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Hent data fra netværket til opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +271,11 @@ msgstr "" "Hvis du har en hurtig eller billig netværksforbindelse, bør du svare \"Ja\" " "her. Hvis forbindelsen er dyr i anvendelse, bør du svare \"Nej\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Intet gyldigt spejl fundet" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +294,12 @@ msgstr "" "her, vil alle linjer \"%s\" blive erstattet af \"%s\".\n" "Hvis du vælger \"Nej\", vil opdateringen blive annulleret." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generér standardkilder?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -307,11 +313,11 @@ msgstr "" "Skal standardlinjer for \"%s\" tilføjes? Hvis du vælger \"Nej\", vil " "opdateringen blive annulleret." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Arkivinformation ugyldig" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -319,11 +325,11 @@ msgstr "" "Opgradering af arkivet resulterede i en ødelagt fil. Rapportér venligst " "dette som en fejl." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Tredjepartskilder er deaktiveret" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -333,11 +339,11 @@ msgstr "" "genaktivere dem efter opgraderingen med \"software-properties\"-værktøjet " "eller med synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fejl under opdatering" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +351,11 @@ msgstr "" "En fejl opstod under opdateringen. Dette skyldes som regel et " "netværksproblem, tjek venligst din netværksforbindelse og prøv igen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Ikke tilstrækkeligt ledig diskplads" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +366,16 @@ msgstr "" "papirkurv og fjern midlertidige pakker fra tidligere installationer ved at " "køre 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,11 +389,11 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +401,11 @@ msgstr "" "Opgraderingen afbrydes nu. Tjek venligst din internetforbindelse eller dit " "installationsmedie og prøv igen. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Support stoppede for nogle programmer" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,23 +419,23 @@ msgstr "" "Hvis du ikke har slået software vedligeholdt af fællesskabet (universe) til, " "vil disse pakker blive foreslået fjernet i det næste trin." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Spring dette trin over" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fejl under gennemførelse" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -436,26 +443,28 @@ msgstr "" "Et problem opstod under oprydningen. Se venligst længere nede for mere " "information. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Genskaber oprindelig systemtilstand" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Henter tilbageportering af \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Klargøring af opgraderingen fejlede" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -465,15 +474,15 @@ msgstr "" "fejl mod \"update-manager\"-pakken og inkludér filerne i /var/log/dist-" "upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ugyldig pakkeinformation" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,22 +497,23 @@ msgstr "" "manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " "fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Anmoder om bekræftelse" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Opgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -531,6 +541,7 @@ msgstr "Henter fil %li af %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Anvender ændringer" @@ -545,10 +556,10 @@ 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 bugreport." msgstr "" -"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-" -"manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " -"fejlrapporten." +"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-manager" +"\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i fejlrapporten." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -576,9 +587,9 @@ msgstr "Der opstod en alvorlig fejl" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapportér venligst dette som en fejl og inkludér filerne /var/log/dist-" @@ -587,6 +598,7 @@ msgstr "" "Din oprindelige sources.list blev gemt i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -631,6 +643,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -680,14 +693,15 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" -"Denne hentning vil tage omkring %s med en 1 Mbit DSL-forbindelse og omkring " -"%s med et 56k modem" +"Denne hentning vil tage omkring %s med en 1 Mbit DSL-forbindelse og omkring %" +"s med et 56k modem" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -703,6 +717,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -813,6 +828,7 @@ msgstr "Kunne ikke hente udgivelsesnoterne" msgid "Please check your internet connection." msgstr "Undersøg venligst din internetforbindelse" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke køre opgraderingsværktøjet" @@ -916,14 +932,17 @@ msgstr "" "Fejl ved hentning af ændringslisten.\n" "Undersøg venligst din internetforbindelse." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Vigtige sikkerhedsopdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Anbefalede opdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Foreslåede opdateringer" @@ -936,6 +955,7 @@ msgstr "Tilbageporteringer" msgid "Distribution updates" msgstr "Distributionsopdateringer" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andre opdateringer" @@ -957,6 +977,7 @@ msgstr "_Fjern alle afkrydsninger" msgid "_Check All" msgstr "_Afkryds alle" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -991,6 +1012,7 @@ msgstr "Fra version %(old_version)s til %(new_version)s" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1007,14 +1029,15 @@ msgid "" "information on upgrading." msgstr "" "Du vil ikke modtage yderligere sikkerhedrettelser eller kritiske " -"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se " -"http://www.ubuntu.com (engelsk) for mere information om opgradering." +"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se http://www." +"ubuntu.com (engelsk) for mere information om opgradering." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny distributionsudgivelse \"%s\" er tilgængelig" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Softwareindekset er ødelagt" @@ -1026,22 +1049,26 @@ msgid "" "this issue at first." msgstr "" "Det er ikke muligt at installere eller fjerne software. Brug venligst " -"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -" -"f\" i en terminal for at fikse dette problem først." +"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -f" +"\" i en terminal for at fikse dette problem først." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Intet" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1067,8 +1094,8 @@ msgstr "Hold dit system opdateret" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Ikke alle opdateringer kan installeres \n" -" \n" +"Ikke alle opdateringer kan installeres\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1411,190 +1438,233 @@ msgstr "Vinduesstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Konfigurér kilderne for installérbar software og opdateringer" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Vedligeholdt af fællesskabet" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietære drivere til enheder" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ikke-frit software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Fri software understøttet af Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Vedligeholdt af fællesskabet (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Fri software vedligeholdt af fællesskabet" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietære drivere" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietære drivere til enheder " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ikke-frit software (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software begrænset af ophavsret eller legale problemer" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Tilbageporterede opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 tilbageporteringer" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Understøttet officielt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 tilbageporteringer" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedligeholdt af fællesskabet (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ikke-frit (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ikke længere officielt supporteret" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrænset ophavsret" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 tilbageporteringer" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhedsopdateringer" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel software med ikke-frie afhængigheder" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel software" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Henter fil %li af %li med ukendt hastighed" @@ -1617,7 +1687,8 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Opgraderer til Ubuntu 6.06 LTS" +#~ "Opgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1636,17 +1707,17 @@ msgstr "Ikke-DFSG-kompatibel software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg alle " -#~ "opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo " -#~ "apt-get dist-upgrade\" i en terminal for at opdatere dit system fuldstændigt." +#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg " +#~ "alle opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør " +#~ "\"sudo apt-get dist-upgrade\" i en terminal for at opdatere dit system " +#~ "fuldstændigt." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende opdateringer vil blive sprunget over:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Tid tilbage(ca.): %li sekunder" @@ -1723,4 +1794,4 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgstr "Ubuntu 6.06 LTS Opdateringer" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/de.po b/po/de.po index f528a482..c12b6359 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -56,6 +56,7 @@ msgstr "Nach einem Monat" msgid "After %s days" msgstr "Nach %s Tagen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s Aktualisierungen" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Haupt-Server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,14 +127,13 @@ msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Der gewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -170,6 +172,7 @@ msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" @@ -185,6 +188,7 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" @@ -213,6 +217,7 @@ msgstr "" "Ein erforderliches Paket konnte nicht installiert werden. Bitte erstellen " "Sie hierfür einen Fehlerbericht. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" @@ -232,11 +237,11 @@ msgstr "" " Bitte installieren Sie eines der obigen Pakete über Synaptic oder apt-get, " "bevor Sie fortfahren." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "CD hinzufügen ist fehlgeschlagen" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -252,16 +257,15 @@ msgstr "" "Die Fehlermeldung war:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Zwischenspeicher wird ausgelesen" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" -msgstr "" -"Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" +msgstr "Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -274,11 +278,11 @@ msgstr "" "hier 'Ja' antworten. Falls die Netzwerkbenutzung teuer ist sollten sie " "'Nein' wählen." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Kein gültiger Mirror gefunden" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -297,11 +301,12 @@ msgstr "" "wählen, werden alle Einträge von '%s' bis '%s' aktualisiert.\n" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Standardquellen generieren?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,17 +314,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für " -"'%s' gefunden.\n" +"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für '%" +"s' gefunden.\n" "\n" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Ungültige Kanalinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -327,11 +332,11 @@ msgstr "" "Die Aktualisierung der Quellen-Information ergab eine ungültige Datei. Bitte " "erstellen Sie einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Quellen von Drittanbietern deaktiviert" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -342,11 +347,11 @@ msgstr "" "Sie können diese nach dem Upgrade mit dem 'software-properties'-Werkzeug " "oder mit Synaptic reaktivieren." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fehler während der Aktualisierung" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -355,11 +360,11 @@ msgstr "" "Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre " "Netzwerkverbindung und versuchen Sie es noch einmal." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Unzureichender freier Festplattenspeicher" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -370,15 +375,16 @@ msgstr "" "Plattenplatz auf %s frei. Leeren Sie Ihren Mülleimer und entfernen die " "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -394,11 +400,11 @@ msgstr "" "manager\" und fügen sie alle Dateien in /var/log/dist-upgrade dem " "Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -407,11 +413,11 @@ msgstr "" "Internet-Verbindung oder Ihr Installationsmedium und versuchen Sie es noch " "einmal. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -426,23 +432,23 @@ msgstr "" "Wenn sie 'universe' nicht aktiviert haben, werden diese Pakete im nächsten " "Schritt zum Entfernen vorgeschlagen." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Ü_berspringen" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Entfernen" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fehler beim Anwenden" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -450,27 +456,29 @@ msgstr "" "Ein Problem trat beim Aufräumen auf. Bitte lesen Sie die unten stehende " "Nachricht für nähere Informationen. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Lade Rückportierung von '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Aktualisierung vorbereiten" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -480,15 +488,15 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aktualisiere Quellen-Information" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -503,22 +511,23 @@ msgstr "" "einen Fehlerbericht für das Paket \"update-manager\" und fügen sie alle " "Dateien in /var/log/dist-upgrade dem Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Nach Bestätigung fragen" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Aktualisiere" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Nach veralteter Software wird gesucht" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -546,6 +555,7 @@ msgstr "Datei %li von %li wird heruntergeladen" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Änderungen werden angewendet" @@ -564,8 +574,9 @@ msgstr "" "als einen Fehler des Pakets 'update-manager' und fügen Sie die Dateien in " "dem Verzeichnis '/var/log/dist-upgrade/' Ihrer Fehlermeldung hinzu." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -593,9 +604,9 @@ msgstr "Ein fataler Fehler ist aufgetreten" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bitte melden Sie dies als Bug und fügen Sie die Dateien /var/log/dist-" @@ -605,29 +616,30 @@ msgstr "" "gespeichert." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -651,6 +663,7 @@ msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -698,6 +711,7 @@ msgid "%li seconds" msgstr "%li Sekunden" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -721,6 +735,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -835,6 +850,7 @@ msgstr "Freigabemitteilungen konnten nicht heruntergeladen werden" msgid "Please check your internet connection." msgstr "Bitte überprüfen Sie Ihre Internet-Verbindung." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Konnte die Anwendung zur Aktualisierung nicht starten" @@ -912,12 +928,12 @@ msgstr "" "Möglicherweise gibt es Probleme im Netzwerk oder am Server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" @@ -943,14 +959,17 @@ msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Wichtige Sicherheitsaktualisierungen" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Empfohlene Updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Vorgeschlagene Aktualisierungen" @@ -965,6 +984,7 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Aktualisierung fortsetzen" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andere Aktualisierungen" @@ -988,6 +1008,7 @@ msgstr "" msgid "_Check All" msgstr "_Prüfen" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1014,7 +1035,7 @@ msgid "Checking for updates" msgstr "Nach verfügbaren Aktualisierungen suchen" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Neue Version: %s (Größe: %s)" @@ -1023,6 +1044,7 @@ msgstr "Neue Version: %s (Größe: %s)" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1040,15 +1062,15 @@ msgid "" msgstr "" "Sie werden keine weiteren Aktualisierungen zur Behebung von " "Sicherheitslücken oder kritischen Fehlern erhalten. Aktualisieren Sie Ihr " -"System auf eine neuere Version von Ubuntu Linux. Auf " -"http://www.ubuntuusers.de oder http://www.ubuntu.com finden Sie weitere " -"Informationen hierzu." +"System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." +"de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" @@ -1063,19 +1085,23 @@ msgstr "" "verwenden Sie zuerst die Synaptic Paketverwaltung oder führen Sie »sudo apt-" "get install -f« im Terminal aus, um dieses Problem zu beheben." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Keine" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1092,8 +1118,8 @@ msgstr "" "Sie müssen manuell auf Aktualisierungen prüfen\n" "\n" "Ihr System prüft nicht automatisch auf verfügbare Aktualisierungen. Sie " -"können dieses Verhalten über die Menüpunkte \"System\" -> " -"\"Systemverwaltung\" -> \"Software Eigenschaften\" ändern." +"können dieses Verhalten über die Menüpunkte \"System\" -> \"Systemverwaltung" +"\" -> \"Software Eigenschaften\" ändern." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1458,187 +1484,231 @@ msgstr "" "Software-Kanäle und Einstellungen für die automatische Aktualisierung " "festlegen" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Von der Ubuntu-Gemeinde betreut" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietäre Gerätetreiber" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Eingeschränkte Software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM mit Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Von der Gemeinschaft betreut (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Von der Gemeinschaft betreut (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Von der Ubuntu-Gemeinde betreute Open Source-Software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietäre Treiber" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietäre Gerätetreiber " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Eingeschränkte Software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM mit Ubuntu 6.06 LTS »Dapper Drake«" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Zurückportierte Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM mit Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM mit Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offiziell unterstützt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Von der Gemeinschaft verwaltet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Unfrei (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM mit Ubuntu 4.10 »Warty Warthog«" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Eingeschränktes Copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" @@ -1646,7 +1716,6 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Urheberrechtlich oder gesetzlich eingeschränkte Software" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "" #~ "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" @@ -1670,7 +1739,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Auf Ubuntu 6.10 aktualisieren" +#~ "Auf Ubuntu 6.10 aktualisieren" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Wichtige Sicherheitsaktualisierungen von Ubuntu" @@ -1697,8 +1767,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Einige Aktualisierungen erfordern das Entfernen von anderen Anwendungen. " #~ "Verwenden Sie die Funktion »Aktualisierungen vormerken« in der Synaptic " @@ -1708,7 +1778,6 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Die folgenden Aktualisierungen werden ausgelassen:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefähr %li Sekunden verbleibend" @@ -1717,8 +1786,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür einen " -#~ "Fehlerbericht." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür " +#~ "einen Fehlerbericht." #~ msgid "Upgrading Ubuntu" #~ msgstr "Ubuntu aktualisieren" @@ -1737,7 +1806,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder 'Synaptic'." +#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Kanäle" @@ -1788,12 +1858,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %s " -#~ "an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen Sie " -#~ "temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %" +#~ "s an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen " +#~ "Sie temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." #~ msgid "%s remaining" #~ msgstr "%s verbleiben" @@ -1802,27 +1872,27 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Keinen gültigen Eintrag gefunden" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Beim Lesen Ihrer Kanalliste konnte kein gültiger Eintrag für die " #~ "Aktualisierung gefunden werden.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Die Aktualisierung wird jetzt abgebrochen. Ihr System könnte in einem " #~ "unbenutzbaren Zustand sein. Ein Wiederherstellungsversuch wird nun " #~ "unternommen (dpkg --configure -a)." #~ msgid "" -#~ "Please report this as a bug and include the files '/var/log/dist-" -#~ "upgrade.log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " +#~ "Please report this as a bug and include the files '/var/log/dist-upgrade." +#~ "log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " #~ "aborts now. " #~ msgstr "" -#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien » " -#~ "»/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " +#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien " +#~ "» »/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " #~ "Bericht bei. Die Aktualisierung wird jetzt abgebrochen. " #~ msgid "" @@ -1867,13 +1937,14 @@ msgstr "Nicht DFSG-kompatible Software" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Änderungen werden " -#~ "heruntergeladen\n" +#~ "Änderungen werden heruntergeladen\n" #~ "\n" #~ "Die Änderungen müssen vom zentralen Server abgerufen werden" #~ msgid "Show available updates and choose which to install" -#~ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" +#~ msgstr "" +#~ "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" #, fuzzy #~ msgid "Error fetching the packages" @@ -1900,13 +1971,14 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " -#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " +#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " +#~ "werden." #~ msgid "Repository" #~ msgstr "Repository" @@ -1935,12 +2007,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen Schlüsselbund. " -#~ "Stellen Sie sicher, dass der Schlüssel über eine sichere Verbindung bezogen " -#~ "wurde und dass der Besitzer vertrauenswürdig ist. " +#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen " +#~ "Schlüsselbund. Stellen Sie sicher, dass der Schlüssel über eine sichere " +#~ "Verbindung bezogen wurde und dass der Besitzer vertrauenswürdig ist. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "_Temporäre Paketdateien automatisch löschen" @@ -1962,11 +2034,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution ausgeliefert " -#~ "wurden. Vom Benutzer installierte Schlüssel werden dadurch nicht geändert." +#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution " +#~ "ausgeliefert wurden. Vom Benutzer installierte Schlüssel werden dadurch " +#~ "nicht geändert." #~ msgid "Set _maximum size for the package cache" #~ msgstr "_Begrenzen der Größe des Paketzwischenspeichers" @@ -1991,8 +2064,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ "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." @@ -2000,12 +2073,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete weitere " -#~ "Aktionen, wie das Installieren oder Entfernen von Paketen, notwendig sind. " -#~ "Verwenden Sie bitte die »Intelligente Aktualisierung« von Synaptic oder »apt-" -#~ "get dist-upgrade« zur Behebung des Problems." +#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete " +#~ "weitere Aktionen, wie das Installieren oder Entfernen von Paketen, " +#~ "notwendig sind. Verwenden Sie bitte die »Intelligente Aktualisierung« von " +#~ "Synaptic oder »apt-get dist-upgrade« zur Behebung des Problems." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2016,8 +2090,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Die Aktualisierungen werden ausgeführt." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2030,20 +2104,20 @@ msgstr "Nicht DFSG-kompatible Software" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Verwenden Sie bitte eine aktuellere Version von Ubuntu-Linux. Für die " #~ "momentan laufende Version werden keine Sicherheits- und andere kritische " -#~ "Aktualisierungen mehr bereitgestellt. Informationen zur Systemaktualisierung " -#~ "finden Sie unter http://www.ubuntulinux.org." +#~ "Aktualisierungen mehr bereitgestellt. Informationen zur " +#~ "Systemaktualisierung finden Sie unter http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Eine neue Version von Ubuntu ist verfügbar!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Eine neue Version mit dem Codenamen »%s« ist verfügbar. Informationen zur " #~ "Aktualisierung des Systems erhalten Sie unter http://www.ubuntulinux.org." @@ -2053,8 +2127,8 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2063,7 +2137,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Initialisierung und Abrufen der Aktualisierungsliste..." #~ msgid "You need to be root to run this program" -#~ msgstr "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." +#~ msgstr "" +#~ "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." #~ msgid "Edit software sources and settings" #~ msgstr "Bearbeiten der Software-Quellen und Einstellungen" @@ -2086,15 +2161,17 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " +#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " -#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." \ No newline at end of file +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " +#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " +#~ "werden." diff --git a/po/el.po b/po/el.po index 0ac6d8ab..bd9da55e 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -54,6 +54,7 @@ msgstr "Μετά από ένα μήνα" msgid "After %s days" msgstr "Μετά από %s ημέρες" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s ενημερώσεις" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Κύριος εξυπηρετητής" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Σφάλμα απομάκρυνσης κλειδιού" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Το κλειδί που επιλέξατε δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε αυτό " "ως σφάλμα." @@ -167,6 +169,7 @@ msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετ msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" @@ -183,6 +186,7 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά σφάλματος τα αρχεία στο /var/log/dist-upgrade/." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" @@ -210,6 +214,7 @@ msgstr "" "Δεν ήταν δυνατή η αναβάθμιση του απαιτούμενου πακέτου. Παρακαλώ αναφέρετε το " "ως σφάλμα. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" @@ -229,11 +234,11 @@ msgstr "" " Εγκαταστήστε ένα από αυτά τα πακέτα πρώτα μέσω synaptic ή apt-get πριν να " "συνεχίσετε." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Αποτυχία προσθήκης του CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +253,15 @@ msgstr "" "Το μήνυμα σφάλματος ήταν:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Ανάγνωση λανθάνουσας μνήμης" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Να γίνει λήψη δεδομένων από το δίκτυο για την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +273,11 @@ msgstr "" "Αν διαθέτετε μια γρήγορη ή φθηνή πρόσβαση στο δίκτυο απαντήστε 'Ναι' εδώ. " "Αν η πρόσβαση είναι ακριβή πατήστε 'Όχι'" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Δεν βρέθηκε έγκυρη εναλλακτική τοποθεσία αρχείων" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -292,11 +297,12 @@ msgstr "" "εδώ 'Ναι' θα ενημερωθούν όλες οι '%s' καταχωρίσεις σε '%s'.\n" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,17 +310,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το " -"'%s'.\n" +"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το '%" +"s'.\n" "\n" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Μη έγκυρες πληροφορίες repository" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -322,11 +328,11 @@ msgstr "" "Η αναβάθμιση των πληροφοριών repository είχε σαν αποτέλεσμα ένα άκυρο " "αρχείο. Παρακαλώ αναφέρετε το ως σφάλμα." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Απενεργοποιήθηκαν πηγές τρίτων" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -337,11 +343,11 @@ msgstr "" "Μπορείτε να τις ενεργοποιήσετε μετά την αναβάθμιση με το εργαλείο 'software-" "properties' ή με το synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Σφάλμα κατά την ενημέρωση" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +355,11 @@ msgstr "" "Δημιουργήθηκε ένα πρόβλημα κατά την αναβάθμιση. Αυτό συνήθως σημαίνει " "πρόβλημα δικτύου. Ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε ξανά." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +370,16 @@ msgstr "" "στο %s. Αδειάστε τα απορρίμματα σας και απομακρύνετε τα προσωρινά πακέτα " "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -387,11 +394,11 @@ msgstr "" "συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " "σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -399,11 +406,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Η υποστήριξη για ορισμένες εφαρμογές τερματίστηκε" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -417,23 +424,23 @@ msgstr "" "Αν δεν έχετε ενεργοποιημένο το 'universe' , θα γίνει πρόταση για απομάκρυνση " "αυτών των πακέτων στο επόμενο βήμα." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Παράκα_μψη αυτου του βήματος" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Απομάκρυνση" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -441,26 +448,28 @@ msgstr "" "Δημιουργήθηκαν ορισμένα προβλήματα κατά την εκκαθάριση. Παρακαλώ δείτε το " "παρακάτω μήνυμα για περισσότερες πληροφορίες. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Λήψη backport του '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Απέτυχε η προετοιμασία της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -470,15 +479,15 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά τα αρχεία του /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών repository" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,22 +502,23 @@ msgstr "" "συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " "σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Ερώτηση για επιβεβαίωση" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,7 +529,7 @@ msgid "Fetching is complete" msgstr "Η λήψη ολοκληρώθηκε" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" @@ -530,12 +540,13 @@ msgid "About %s remaining" msgstr "Απομένουν περίπου %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Λήψη αρχείου %li από %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Γίνεται εφαρμογή αλλαγών" @@ -554,6 +565,7 @@ msgstr "" "'update-manager' και συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ " "στην αναφορά σφάλματος." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -581,18 +593,19 @@ msgstr "Προέκυψε μοιραίο σφάλμα" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα και επισυνάψτε τα αρχεία /var/log/dist-" "upgrade/main.log και /var/log/dist-upgrade/apt.log στην αναφορά σας. Η " "αναβάθμιση τώρα θα τερματιστεί. \n" -"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο " -"/etc/apt/sources.list.distUpgrade." +"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -640,6 +653,7 @@ msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -689,6 +703,7 @@ msgid "%li seconds" msgstr "%li δευτερόλεπτα" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -712,6 +727,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -824,6 +840,7 @@ msgstr "Αδυναμία λήψης των σημειώσεων έκδοσης" msgid "Please check your internet connection." msgstr "Παρακαλώ ελέγξτε τη σύνδεση σας με το διαδίκτυο." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Αδυναμία εκτέλεσης του εργαλείου αναβαθμίσεων" @@ -841,8 +858,7 @@ msgstr "Λήψη του εργαλείου αναβάθμισης" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" -"Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" +msgstr "Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -858,8 +874,7 @@ msgstr "Αποτυχία λήψης" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " +msgstr "Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -928,14 +943,17 @@ msgstr "" "Αποτυχία λήψης της λίστας των αλλαγών.\n" "Παρακαλώ ελέγξτε τη σύνδεση σας στο διαδίκτυο." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Σημαντικές ενημερώσεις ασφαλείας" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Συνιστώμενες ενημερώσεις" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Προτεινόμενες ενημερώσεις" @@ -948,6 +966,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Αναβαθμίσεις διανομής" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Άλλες ενημερώσεις" @@ -970,6 +989,7 @@ msgstr "Α_ποεπιλογή όλων" msgid "_Check All" msgstr "Έλε_γχος όλων" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1004,6 +1024,7 @@ msgstr "Από έκδοση: %(old_version)s σε %(new_version)s" msgid "Version %s" msgstr "Έκδοση %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1029,6 +1050,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" @@ -1043,19 +1065,23 @@ msgstr "" "το διαχειριστή πακέτων \"Synaptic\" η εκτελέστε την εντολή \"sudo apt-get " "install -f\" σε ένα τερματικό για να διορθώσετε το πρόβλημα πρώτα." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Καμία" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1080,8 +1106,7 @@ msgstr "Διατηρήστε το σύστημα σας ενημερωμ #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" +msgstr "Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1298,8 +1323,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Οι πληροφορίες για το διαθέσιμο λογισμικό δεν είναι " -"ενημερωμένες\n" +"Οι πληροφορίες για το διαθέσιμο λογισμικό δεν είναι ενημερωμένες\n" "\n" "Θα πρέπει να ανανεώσετε τις πληροφορίες καναλιού για να εγκαταστήσετε " "λογισμικό και ενημερώσεις από τα τα νέα κανάλια που προσθέσατε ή " @@ -1428,191 +1453,234 @@ msgstr "Το μέγεθος του παραθύρου" msgid "Configure the sources for installable software and updates" msgstr "Ρύθμιση των πηγών για λογισμικό και ενημερώσεις" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Οδηγοί με κλειστό κώδικα για συσκευές" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Λογισμικό με περιορισμούς" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom με το Ubuntu 6.10 'Edgy Eft" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 TLS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Λογισμικό ανοικτού κώδικα υποστηριζόμενο από την Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Υποστηριζόμενα από την κοινότητα (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Όχι-ελεύθεροι οδηγοί" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Οδηγοί με κλειστό κώδικα για συσκευές " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Όχι-ελεύθερο (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Λογισμικό με περιορισμούς από πνευματικά δικαιώματα και νόμους" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom με Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported ενημερώσεις" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom με Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ενημερώσεις Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom με το Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Δεν υποστηρίζονται πια επίσημα" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Περιορισμένα πνευματικά δικαιώματα" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ενημερώσεις ασφαλείας Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ενημερώσεις Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες Εξαρτήσεις" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" @@ -1653,16 +1721,16 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "" #~ "Γίνεται ανάλυση του συστήματος σας\n" #~ "\n" -#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " -#~ "να παρέχουν νέες λειτουργίες." +#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας " +#~ "και να παρέχουν νέες λειτουργίες." #~ msgid "Oficially supported" #~ msgstr "Oficially supported" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Μερικές ενημερώσεις απαιτούν την απομάκρυνση επιπρόσθετου λογισμικού. " #~ "Χρησιμοποιήστε την λειτουργία \"Σημείωση όλων των αναβαθμίσεων\" από το " @@ -1672,7 +1740,6 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Οι παρακάτω ενημερώσεις θα παρακαμφθούν:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Απομένουν περίπου %li δευτερόλεπτα" @@ -1697,7 +1764,8 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το 'Synaptic'." +#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Κανάλια" @@ -1750,13 +1818,14 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Μη έγκυρες πληροφορίες πακέτου" #~ msgid "" -#~ "Failed to download the listof changes. Please check your internet connection." +#~ "Failed to download the listof changes. Please check your internet " +#~ "connection." #~ msgstr "" #~ "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας." #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Κατά τον έλεγχο των πληροφοριών του repository δεν βρέθηκαν έγκυρες " #~ "καταχωρίσεις αναβάθμισης.\n" @@ -1787,24 +1856,25 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Το αρχείο '%s' δεν περιέχει έγκυρα κανάλια λογισμικού." #~ msgid "" -#~ "The upgrade is finished now. A reboot is required to now, do you want to do " -#~ "this now?" +#~ "The upgrade is finished now. A reboot is required to now, do you want to " +#~ "do this now?" #~ msgstr "" #~ "Η αναβάθμιση ολοκληρώθηκε. Απαιτείται επανεκκίνηση, θέλετε να γίνει τώρα;" #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για τις " -#~ "ενημερώσεις\n" +#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για " +#~ "τις ενημερώσεις\n" #~ "\n" -#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για ενημερώσεις. " -#~ "Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> " -#~ "\"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." +#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για " +#~ "ενημερώσεις. Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού " +#~ "\"Σύστημα\" -> \"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." #~ msgid "" #~ "Downloading changes\n" @@ -1826,4 +1896,4 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Ubuntu 6.04 \"Dapper Drake\"" #~ msgid "Ubuntu 5.10 \"Breezy Badger\"" -#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" \ No newline at end of file +#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" diff --git a/po/en_AU.po b/po/en_AU.po index 163b19fe..527ff9ba 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" @@ -55,6 +55,7 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -161,6 +163,7 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -200,6 +204,7 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" @@ -213,11 +218,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Failed to add the CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -232,15 +237,15 @@ msgstr "" "The error message was:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Reading cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Fetch data from the network for the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,11 +257,11 @@ msgstr "" "If you have fast and inexpensive network access you should answer 'Yes' " "here. If networking is expensive for you choose 'No'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "No valid mirror found" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -275,11 +280,12 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generate default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -292,11 +298,11 @@ msgstr "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Repository information invalid" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -304,22 +310,22 @@ msgstr "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Third party sources disabled" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -327,11 +333,11 @@ msgstr "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -342,15 +348,16 @@ msgstr "" "your Garbage Bin and remove temporary packages of former installations using " "'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -364,11 +371,11 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bug report." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -376,11 +383,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -389,23 +396,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -413,41 +420,43 @@ msgstr "" "A problem occured during the clean-up. Please see the below message for more " "information. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -462,22 +471,23 @@ msgstr "" "manager' package and include the files in /var/log/dist-upgrade/ in the bug " "report." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "System upgrade is complete." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -505,6 +515,7 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -522,6 +533,7 @@ msgstr "" "The upgrade has aborted. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -545,17 +557,18 @@ msgstr "A fatal error occured" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 has aborted.\n" +"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 has " +"aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -600,6 +613,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -647,6 +661,7 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -668,6 +683,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -778,6 +794,7 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your internet connection." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -872,14 +889,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -892,6 +912,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" @@ -913,6 +934,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -947,6 +969,7 @@ msgstr "" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -971,6 +994,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" @@ -985,19 +1009,23 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1339,190 +1367,233 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM with Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM with Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM with Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM with Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1533,22 +1604,22 @@ msgstr "Non-DFSG-compatible Software" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" -#~ "An unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "An unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." @@ -1562,11 +1633,11 @@ msgstr "Non-DFSG-compatible Software" #~ "synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Some software no longer officially supported" @@ -1587,7 +1658,6 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Restoring originale system state" #~ msgstr "Restoring original system state" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1597,37 +1667,30 @@ msgstr "Non-DFSG-compatible Software" #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "About %li days %li hours %li minutes remaining" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "About %li hours %li minutes remaining" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "About %li minutes remaining" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "About %li seconds remaining" #~ msgid "Download is complete" #~ msgstr "Download is complete" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Downloading file %li of %li at %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Downloading file %li of %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "The upgrade aborts now. Please report this bug." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1637,41 +1700,41 @@ msgstr "Non-DFSG-compatible Software" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s package is going to be removed." #~ msgstr[1] "%s packages are going to be removed." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s new package is going to be installed." #~ msgstr[1] "%s new packages are going to be installed." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s package is going to be upgraded." #~ msgstr[1] "%s packages are going to be upgraded." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "You have to download a total of %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgid "Could not find any upgrades" #~ msgstr "Could not find any upgrades" @@ -1691,17 +1754,15 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Upgrading Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" #~ "Verifying the upgrade failed. There may be a problem with the network or " #~ "with the server. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Downloading file %li of %li with %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloading file %li of %li with unknown speed" @@ -1720,12 +1781,12 @@ msgstr "Non-DFSG-compatible Software" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgid "The following updates will be skipped:" #~ msgstr "The following updates will be skipped:" @@ -1739,12 +1800,12 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Show details" #~ msgstr "Show details" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "New version: %s (Size: %s)" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "Only one software management tool is allowed to run at the same time" +#~ msgstr "" +#~ "Only one software management tool is allowed to run at the same time" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1754,14 +1815,16 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "You must check for updates manually\n" #~ "\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behaviour in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behaviour in \"System\" -> \"Administration\" -> \"Software " +#~ "Properties\"." #~ msgid "" #~ "Examining your system\n" @@ -1802,16 +1865,16 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "The channel information is out-of-date\n" #~ "\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "\n" #~ "You need a working internet connection to continue." @@ -1823,14 +1886,14 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Components" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1851,19 +1914,19 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "If automatic checking for updates is disabled, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Stores the state of the expander that contains the list of changes and the " -#~ "description" +#~ "Stores the state of the expander that contains the list of changes and " +#~ "the description" #~ msgid "Configure software channels and internet updates" #~ msgstr "Configure software channels and internet updates" @@ -1881,4 +1944,4 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Ubuntu 6.06 LTS Updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/en_CA.po b/po/en_CA.po index 69c1edf6..bd5dd1c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -56,13 +56,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "_Install" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -163,6 +165,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,6 +180,7 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,6 +205,7 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -214,11 +219,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -228,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -260,11 +265,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -273,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -317,15 +323,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -334,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -357,49 +364,51 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -408,15 +417,15 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -426,23 +435,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -470,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -486,6 +497,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -509,13 +521,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -555,6 +568,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -603,6 +617,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -622,6 +637,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,6 +749,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -831,15 +848,18 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -855,6 +875,7 @@ msgstr "Ubuntu 5.04 Updates" msgid "Distribution updates" msgstr "Upgrade finished" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -878,13 +899,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." @@ -909,10 +931,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Version %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -935,6 +958,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -946,19 +970,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1223,8 +1251,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Enter the complete APT line of the repository that you want to " -"add\n" +"Enter the complete APT line of the repository that you want to add\n" "\n" "The APT line contains the type, location and content of a repository, for " "example \"deb http://ftp.debian.org sarge main\". You can find a " @@ -1312,210 +1340,255 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.04 Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Community maintained (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Contributed software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Officially supported" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.04 Updates" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian Stable Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1606,8 +1679,8 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources.list " -#~ "is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources." +#~ "list is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1656,13 +1729,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -1682,16 +1755,16 @@ msgstr "" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1716,11 +1789,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1753,11 +1826,13 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -1766,11 +1841,11 @@ msgstr "" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1780,30 +1855,30 @@ msgstr "" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -1835,10 +1910,10 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." \ No newline at end of file +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." diff --git a/po/en_GB.po b/po/en_GB.po index 5faf17e3..76123691 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" @@ -54,6 +54,7 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -163,6 +165,7 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -179,6 +182,7 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -206,6 +210,7 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -224,11 +229,11 @@ msgstr "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Failed to add the CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +248,15 @@ msgstr "" "The error message was:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Reading cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Fetch data from the network for the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +268,11 @@ msgstr "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "No valid mirror found" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +291,12 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generate default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +309,11 @@ msgstr "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Repository information invalid" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,11 +321,11 @@ msgstr "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Third party sources disabled" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -329,11 +335,11 @@ msgstr "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +347,11 @@ msgstr "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -356,15 +362,16 @@ msgstr "" "your Deleted Items folder and remove temporary packages of former " "installations using 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -378,11 +385,11 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +397,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Support for some applications ended" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -408,23 +415,23 @@ msgstr "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,26 +439,28 @@ msgstr "" "Some problem occurred during the clean-up. Please see the below message for " "more information. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Fetching backport of '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Preparing the upgrade failed" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -461,15 +470,15 @@ msgstr "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -484,22 +493,23 @@ msgstr "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "System upgrade is complete." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -527,6 +537,7 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -544,6 +555,7 @@ msgstr "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -571,17 +583,18 @@ msgstr "A fatal error occured" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -626,6 +639,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -675,6 +689,7 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -697,6 +712,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -807,6 +823,7 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your Internet connection." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -907,14 +924,17 @@ msgstr "" "Failed to download the list of changes. \n" "Please check your Internet connection." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -927,6 +947,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Distribution updates" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" @@ -948,6 +969,7 @@ msgstr "_Untick All" msgid "_Check All" msgstr "_Tick All" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -982,6 +1004,7 @@ msgstr "From version %(old_version)s to %(new_version)s" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1006,6 +1029,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" @@ -1020,19 +1044,23 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1398,185 +1426,229 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom with Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonical supported Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restricted by copyright or legal issues" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom with Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "No longer officially supported" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" @@ -1651,8 +1723,8 @@ msgstr "Non-DFSG-compatible Software" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources.list " -#~ "is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources." +#~ "list is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1709,13 +1781,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1747,11 +1819,11 @@ msgstr "Non-DFSG-compatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1781,13 +1853,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancel downloading the changelog" @@ -1863,7 +1935,8 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr[1] "You have selected all %s updated packages, total size %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "You have selected %s out of %s updated package, size %s" #~ msgstr[1] "You have selected %s out of %s updated packages, total size %s" @@ -1871,11 +1944,11 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1888,19 +1961,19 @@ msgstr "Non-DFSG-compatible Software" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" @@ -1930,8 +2003,10 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." \ No newline at end of file +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." diff --git a/po/eo.po b/po/eo.po index 07d4b608..005b2ed4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" @@ -55,6 +55,7 @@ msgstr "Post unu monato" msgid "After %s days" msgstr "Post %s tagoj" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Eraro dum forigo de sxlosilo" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La sxlosilo elektita ne povis esti forigata. Bonvolu raporti cxi tion kiel " "cimon." @@ -160,6 +162,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -172,6 +175,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgstr "" "Estis neebla instalo de bezonata pakajxo. Bonvolu raporti cxi tion kiel " "cimo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -209,11 +214,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -223,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Legado de kasxmemoro" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -239,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -255,11 +260,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -268,11 +274,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Deponeja informo ne valida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 #, fuzzy msgid "" "Upgrading the repository information resulted in a invalid file. Please " @@ -281,22 +287,22 @@ msgstr "" "Promociado de deponeja informo igis nevalidan dosieron. Bonvolu raporti cxi " "tion kiel cimo." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Aliulaj fontoj malsxaltitaj" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Eraro dum gxisdatigo" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -304,11 +310,11 @@ msgstr "" "Problemo okazis dum la gxisdatigo. Kutime tio okazas pro retaj problemoj, " "bonvolu kontroli vian retan konekton kaj reprovi." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Ne estas suficxa libera loko en disko" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +322,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Cxu vi volas komenci la promociadon?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Ne eblis instali la promociojn" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +340,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,23 +363,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -380,41 +387,43 @@ msgstr "" "Kelkaj problemoj okazis dum la purigado. Bonvolu vidi suban mesagxon por " "pliaj informoj. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Kontrolado de pakajxa direktisto" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Gxisdatigo de deponeja informo" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Nevalida pakajxa informo" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,22 +433,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Petado de konfirmo" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Promociado" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Sercxado de ne plu uzata programaro" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Sistema promocio estas kompleta." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -467,6 +477,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikado de sxangxoj" @@ -482,6 +493,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -505,13 +517,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -551,6 +564,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -598,6 +612,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -617,6 +632,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -727,6 +743,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "Bonvolu kontroli vian interretan konekton." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Ne eblis ruli la promocian ilon" @@ -818,14 +835,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -838,6 +858,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -859,6 +880,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -893,6 +915,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -914,6 +937,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nova distribua eldono '%s' estas disponebla" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -925,19 +949,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1268,184 +1296,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiale subtenata" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/es.po b/po/es.po index 4505048c..ab764d9f 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -57,6 +57,7 @@ msgstr "Después de un mes" msgid "After %s days" msgstr "Después de %s días" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "Actualizaciones de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "No se puede quitar la clave que ha seleccionado. Por favor, avise de esto " "como un fallo." @@ -170,6 +172,7 @@ msgstr "No se han podido actualizar los meta-paquetes requeridos" msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" @@ -184,6 +187,7 @@ msgstr "" "Ha ocurrido un problema imposible de corregir cuando se calculaba la " "actualización. Por favor, informe de ésto como un fallo." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" @@ -211,6 +215,7 @@ msgstr "" "No ha sido posible instalar un paquete requerido. Por favor, informe de ésto " "como un fallo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" @@ -229,11 +234,11 @@ msgstr "" " Por favor, instale uno de los paquetes anteriores usando Synaptic o apt-get " "antes de proceder." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Error al añadir el CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +253,15 @@ msgstr "" "El mensaje de error fue:\n" "«%s»" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Leyendo caché" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "¿Obtener datos desde la red para la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -269,11 +274,11 @@ msgstr "" "Si dispone de una conexión rápida o barata, debería responder «Sí». Si la " "conexión es cara para usted, seleccione «No»." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "No se ha encontrado un servidor espejo válido" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -293,11 +298,12 @@ msgstr "" "«Sí», se actualizarán todas las entradas «%s» a «%s».\n" "Si selecciona «No» se cancelará la actualización." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -311,11 +317,11 @@ msgstr "" "¿Deben añadirse entradas predeterminadas para «%s»? Si selecciona «No» se " "cancelará la actualización." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Información de repositorio no válida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -323,25 +329,25 @@ msgstr "" "La actualización de la información del repositorio generó un archivo " "incorrecto. Por favor, informe de ésto como un error." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Orígenes de terceros desactivados" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "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." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Error durante la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +356,11 @@ msgstr "" "tipo de problema en la red, por lo que le recomendamos que compruebe su " "conexión de red y vuelva a intentarlo." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "No hay espacio suficiente en el disco" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +371,16 @@ msgstr "" "espacio en disco en %s. Vacíe su papelera, y elimine los paquetes temporales " "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +396,11 @@ msgstr "" "incluya en el informe de error los archivos contenidos en /var/log/dist-" "upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +408,11 @@ msgstr "" "La actualización se interrumpirá ahora. Por favor, compruebe su conexión a " "Internet (o su soporte de instalación) y vuelva a intentarlo. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Algunas aplicaciones han dejado de tener soporte" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +426,23 @@ msgstr "" "Si no tiene habilitado el software mantenido por la comunidad («universe»), " "se le sugerirá que desinstale estos paquetes en el siguiente paso." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Quitar" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Error durante la confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,26 +450,28 @@ msgstr "" "Ha ocurrido algún problema durante el limpiado. por favor, vea el mensaje " "inferior para más información. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Descargando «backport» de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Comprobando gestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Falló la preparación de la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -473,15 +482,15 @@ msgstr "" "«update-manager», e incluya en el informe los archivos contenidos en el " "directorio /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Información de paquete no válida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -496,22 +505,23 @@ msgstr "" "el paquete «update-manager» e incluya en el informe de error los archivos " "contenidos en /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -539,6 +549,7 @@ msgstr "Descargando archivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando los cambios" @@ -557,6 +568,7 @@ msgstr "" "fallo en el paquete «update-manager» e incluya en el informe de error los " "archivos contenidos en /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -584,18 +596,19 @@ msgstr "Ha ocurrido un error fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"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 " +"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." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -642,6 +655,7 @@ msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -691,6 +705,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -714,6 +729,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,8 +749,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicie el sistema para completar la actualización" +msgstr "Reinicie el sistema para completar la actualización" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -825,6 +840,7 @@ msgstr "No se han podido descargar las notas de publicación" msgid "Please check your internet connection." msgstr "Por favor, compruebe su conexión a Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No se ha podido ejecutar la herramienta de actualización" @@ -930,14 +946,17 @@ msgstr "" "Hubo un fallo al descargar la lista de cambios. \n" "Por favor, compruebe su conexión a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizaciones importantes de seguridad" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizaciones recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizaciones propuestas" @@ -950,6 +969,7 @@ msgstr "«Backports»" msgid "Distribution updates" msgstr "Actualizaciones de la distribución" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Otras actualizaciones" @@ -971,6 +991,7 @@ msgstr "_Desmarcar todo" msgid "_Check All" msgstr "_Marcar todo" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1005,6 +1026,7 @@ msgstr "De la versión %(old_version)s a la %(new_version)s" msgid "Version %s" msgstr "Versión %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1021,14 +1043,15 @@ msgid "" "information on upgrading." msgstr "" "No podrá obtener nuevas correcciones de seguridad ni actualizaciones " -"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite " -"http://www.ubuntu.com para más información sobre la actualización." +"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" +"www.ubuntu.com para más información sobre la actualización." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "El índice de software está dañado" @@ -1043,19 +1066,23 @@ msgstr "" "gestor de paquetes «Synaptic», o ejecute «sudo apt-get install -f» en una " "terminal, para corregir este problema primero." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ninguno" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1080,8 +1107,7 @@ msgstr "Mantenga su sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"No se han podido instalar todas las actualizaciones" +msgstr "No se han podido instalar todas las actualizaciones" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1209,8 +1235,8 @@ msgstr "" "enviará de forma anónima al proyecto Ubuntu todas las semanas.\n" "\n" "Los resultados se usarán para mejorar el soporte de las aplicaciones " -"populares y para ordenar las aplicaciones en los resultados de las " -"búsquedas." +"populares y para ordenar las aplicaciones en los resultados de las búsquedas." +"" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1298,8 +1324,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"La información acerca del software disponible está " -"obsoleta\n" +"La información acerca del software disponible está obsoleta\n" "\n" "Para poder instalar software y actualizaciones a partir de los orígenes que " "se hayan añadido o cambiado recientemente, es necesario recargar la " @@ -1428,185 +1454,229 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura los orígenes para el software instalable y las actualizaciones" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenido por la comunidad" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores privativos para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restringido" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software libre soportado por Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenido por la comunidad (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software libre mantenido por la comunidad" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores no libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores privativos para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restringido (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright o cuestiones legales" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Dapper Drake»" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizaciones «backport»" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizaciones de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "«Backports» de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizaciones de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "«Backports» de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenido por la comunidad (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software no libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sin más soporte oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restringido" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Actualizaciones de seguridad" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizaciones de Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "«Backports» de Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizaciones de seguridad de Debian 3.1 «Sarge»" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (pruebas)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (inestable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible con la DFSG con dependencias no libres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" @@ -1614,7 +1684,6 @@ msgstr "Software no compatible con la DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software restringido por copyright o cuestiones legales" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando archivo %li de %li a velocidad desconocida" @@ -1663,18 +1732,17 @@ msgstr "Software no compatible con la DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice la " -#~ "función «Marcar todas las actualizaciones» del gestor de paquetes " +#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice " +#~ "la función «Marcar todas las actualizaciones» del gestor de paquetes " #~ "«Synaptic», o ejecute «sudo apt-get dist-upgrade» en una terminal, para " #~ "actualizar completamente su sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "Se pasarán por alto las siguientes actualizaciones:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" @@ -1697,13 +1765,14 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Sólo se permite la ejecución simultánea de una única herramienta de gestión " -#~ "de software" +#~ "Sólo se permite la ejecución simultánea de una única herramienta de " +#~ "gestión de software" #~ 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 "Channels" #~ msgstr "Canales" @@ -1753,8 +1822,8 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "«Backports» de Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Cuando se exploraba la información de su repositorio, se encontró una " #~ "entrada no válida para la actualización.\n" @@ -1783,7 +1852,8 @@ msgstr "Software no compatible con la DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Descargando informe de cambios\n" +#~ "Descargando informe de cambios\n" #~ "\n" #~ "Se necesita descargar los cambios del servidor central" @@ -1815,13 +1885,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " -#~ "Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes " +#~ "actualizables. Puede actualizarlos usando el botón Instalar." #~ msgid "Repository" #~ msgstr "Repositorio" @@ -1841,19 +1911,20 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "" #~ "Claves de autenticación\n" #~ "\n" -#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una clave " -#~ "hace posible verificar la integridad del software que descarga." +#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una " +#~ "clave hace posible verificar la integridad del software que descarga." #~ msgid "A_uthentication" #~ msgstr "A_utenticación" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Añadir un nuevo archivo de clave al anillo de confianza. Asegúrese de que " -#~ "obtuvo la clave a través de un canal seguro y que confía en el propietario. " +#~ "obtuvo la clave a través de un canal seguro y que confía en el " +#~ "propietario. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Limpiar _temporalmente los archivos de paquetes" @@ -1875,8 +1946,8 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Recupera las claves entregadas originalmente con la distribución. Esto no " #~ "cambia las claves instaladas por el usuario." @@ -1904,8 +1975,8 @@ msgstr "Software no compatible con la DFSG" #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" #~ "Ésto significa que no se satisfacen algunas dependencias de los paquetes " -#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-get " -#~ "dist-upgrade\" para arreglar la situación." +#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-" +#~ "get dist-upgrade\" para arreglar la situación." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "No es posible actualizar todos los paquetes." @@ -1913,12 +1984,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Ésto significa que además de la actualización de los paquetes será necesaria " -#~ "alguna acción adicional (como instalar o quitar paquetes). Utilice la " -#~ "\"Actualización inteligente\" de synaptic o \"apt-get dist-upgrade\" para " -#~ "arreglar la situación." +#~ "Ésto significa que además de la actualización de los paquetes será " +#~ "necesaria alguna acción adicional (como instalar o quitar paquetes). " +#~ "Utilice la \"Actualización inteligente\" de synaptic o \"apt-get dist-" +#~ "upgrade\" para arreglar la situación." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -1929,11 +2001,11 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "Se están aplicando las actualizaciones." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " -#~ "Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " +#~ "tiempo. Cierre la otra aplicación primero." #~ msgid "Updating package list..." #~ msgstr "Actualizando lista de paquetes..." @@ -1943,35 +2015,34 @@ msgstr "Software no compatible con la DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está usando " -#~ "no obtendrá más actualizaciones de seguridad ni otras actualizaciones " -#~ "críticas. Visite http://www.ubuntulinux.org para información acerca de cómo " -#~ "actualizar." +#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está " +#~ "usando no obtendrá más actualizaciones de seguridad ni otras " +#~ "actualizaciones críticas. Visite http://www.ubuntulinux.org para " +#~ "información acerca de cómo actualizar." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Hay una nueva versión de Ubuntu disponible" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Está disponible una nueva versión con el nombre '%s'. Visite " -#~ "http://www.ubuntulinux.org/ para recibir instrucciones acerca de cómo " -#~ "actualizar." +#~ "Está disponible una nueva versión con el nombre '%s'. Visite http://www." +#~ "ubuntulinux.org/ para recibir instrucciones acerca de cómo actualizar." #~ msgid "Never show this message again" #~ msgstr "No mostrar más este mensaje" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " -#~ "Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " +#~ "tiempo. Cierre la otra aplicación primero." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicializando y obteniendo lista de actualizaciones..." @@ -2006,10 +2077,10 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " -#~ "Puede actualizarlos usando el botón Instalar." \ No newline at end of file +#~ "El gestor de actualizaciones encontró los siguientes paquetes " +#~ "actualizables. Puede actualizarlos usando el botón Instalar." diff --git a/po/et.po b/po/et.po index b7acdb10..a4425b1a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" @@ -55,6 +55,7 @@ msgstr "Peale ühte kuud" msgid "After %s days" msgstr "Peale %s päeva" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Võtme eemaldamisel tekkis viga" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Valitud võtit pole võimalik eemaldada" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -150,8 +152,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sinu süsteem sisaldab katkiseid pakette mida pole võimalik antud tarkvaraga " -"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-" -"get\" enne jätkamist." +"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" +"\" enne jätkamist." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -161,6 +163,7 @@ msgstr "Ei suuda uuendada nõutud metapakette" msgid "A essential package would have to be removed" msgstr "Hädavajalik pakett tuleks eemaldada" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ei suuda uuendusi ette valmistada" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Mõnede pakettide tuvastamisel tekkis viga." @@ -198,6 +202,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -211,11 +216,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +230,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Vahemälu lugemine" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +246,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Ühtegi sobivat peeglit ei leitud" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +262,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,32 +276,32 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Uuendamise ajal ilmnes viga." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -303,11 +309,11 @@ msgstr "" "Uuendamise ajal ilmnes viga. See on tavaliselt mingit sorti võrgu probleem, " "palun kontrolli oma võrguühendust ning proovi hiljem uuesti." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Kõvakettal pole piisavalt vaba ruumi." -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +321,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Ei suuda uuendusi alla laadida" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,63 +362,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Eemalda iganenud paketid?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Jäta see samm vahele" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Eemalda" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -421,22 +430,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Kinnitamise küsimine" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -464,6 +474,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -479,6 +490,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -502,13 +514,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -548,6 +561,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -595,6 +609,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -614,6 +629,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -720,6 +736,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -809,14 +826,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -829,6 +849,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -850,6 +871,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -884,6 +906,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -905,6 +928,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -916,19 +940,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1254,184 +1282,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/eu.po b/po/eu.po index 9d5bbe5f..112e33c1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" @@ -57,6 +57,7 @@ msgstr "HIlabete bat eta gero" msgid "After %s days" msgstr "%s egun eta gero" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -117,8 +120,7 @@ msgstr "Errore bat suertatu da aukeratutako fitxategiak inportatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." +msgstr "Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." #: ../SoftwareProperties/SoftwareProperties.py:992 #, fuzzy @@ -127,8 +129,7 @@ msgstr "Errorea giltza ezabatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Aukeratutako giltza ezin izan da ezabatu. Mesedez adierazi akatsa." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -173,6 +174,7 @@ msgstr "Ezin izan dira berritu beharrezko meta-paketeak" msgid "A essential package would have to be removed" msgstr "Ezinbesteko pakete bat ezabatu beharko da" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -185,6 +187,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -209,6 +212,7 @@ msgstr "" "Ezin izan da beharrezko pakete bat instalatzea. Mesedez akats honen berri " "eman. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -222,11 +226,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -236,15 +240,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,11 +256,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -268,11 +272,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -281,42 +286,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +329,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,63 +370,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,22 +438,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -473,6 +482,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -488,6 +498,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -511,13 +522,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -557,6 +569,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -604,6 +617,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -623,6 +637,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -729,6 +744,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -818,14 +834,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -838,6 +857,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -859,6 +879,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -893,6 +914,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -914,6 +936,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -925,19 +948,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1263,184 +1290,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/fa.po b/po/fa.po index 6d8f353d..a406408b 100644 --- a/po/fa.po +++ b/po/fa.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" -"Last-Translator: Pedram Ganjeh Hadidi \n" +"Last-Translator: Pedram Ganjeh Hadidi \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,6 +56,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -206,11 +211,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -220,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -236,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -252,11 +257,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -265,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -308,15 +314,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -325,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -348,63 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -414,22 +423,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -538,6 +551,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -585,6 +599,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -604,6 +619,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -710,6 +726,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -799,14 +816,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -819,6 +839,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -840,6 +861,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -873,6 +895,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -894,6 +917,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -905,19 +929,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1243,184 +1271,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/fi.po b/po/fi.po index a79069bc..30341a20 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -54,6 +54,7 @@ msgstr "Kuukauden jälkeen" msgid "After %s days" msgstr "%s päivän jälkeen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s-päivitykset" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pääpalvelin" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." @@ -166,6 +168,7 @@ msgstr "Tarvittavia metapaketteja ei voi päivittää" msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" @@ -183,6 +186,7 @@ msgstr "" "Ilmoita tästä ohjelmavirheestä paketille \"update-manager\" ja sisällytä " "tiedostot hakemistosta /var/log/dist-upgrade raporttiin." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Joitain paketteja varmennettaessa tapahtui virhe" @@ -209,6 +213,7 @@ msgid "" msgstr "" "Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" @@ -227,11 +232,11 @@ msgstr "" " Asenna jokin luetelluista paketeista synapticilla tai apt-get-ohjelmalla " "ennen jatkamista." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Ei voitu lisätä CD-levyä" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +251,15 @@ msgstr "" "Virheilmoitus oli:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Luetaan välimuistia" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Hae tiedot verkosta päivitystä varten?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +271,11 @@ msgstr "" "Jos sinulla on nopea tai vähän kustannuksia aiheuttava verkkoyhteys, valitse " "\"Kyllä\". Jos verkon käyttö on kallista, valitse \"Ei\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Sopivaa peilipalvelinta ei löytynyt" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +294,12 @@ msgstr "" "\"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Lisätäänkö oletusohjelmalähteet?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +312,11 @@ msgstr "" "Otetaanko käyttöön \"%s\":n oletuslähteet? Jos valitset \"Ei\", päivitys " "keskeytyy." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Virhe ohjelmavarastotiedoissa" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,11 +324,11 @@ msgstr "" "Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Tee " "asiasta virheraportti." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Kolmannen osapuolen ohjelmalähteet poissa käytöstä" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -332,11 +338,11 @@ msgstr "" "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen " "\"Ohjelmalähteet\"-työkalulla tai Synaptic-ohjelmalla." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Virhe päivitettäessä" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +350,11 @@ msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +365,16 @@ msgstr "" "roskakori ja poista väliaikaistiedostot aiemmista asennuksista käyttämällä " "komentoa 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Päivityksiä ei voitu asentaa" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -381,11 +388,11 @@ msgstr "" "Tee tästä virheraportti paketille \"update-manager\" ja sisällytä tiedostot " "hakemistosta /var/log/dist-upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +400,11 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Tuki joillekin sovelluksille on loppunut" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,49 +419,51 @@ msgstr "" "ohjelmalähdettä (\"universe\"), näitä paketteja suositellaan poistettaviksi " "seuraavassa kohdassa." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Poistetaanko vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Virhe suoritettaessa" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" "Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Päivityksen valmistelu epäonnistui" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -464,15 +473,15 @@ msgstr "" "virheraportilla \"update-manager\"-paketille, sisällyttäen mukaan tiedostot " "hakemistossa /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -487,22 +496,23 @@ msgstr "" "\"update-manager\" ja sisällytä tiedostot hakemistosta /var/log/dist-" "upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Etsitään vanhentuneita ohjelmistoja" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -530,6 +540,7 @@ msgstr "Noudetaan tiedostoa %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Muutoksia toteutetaan" @@ -547,6 +558,7 @@ msgstr "" "Päivitys keskeytyy. Tee tästä virheraportti paketille \"update-manager\" ja " "sisällytä raporttiin tiedostot hakemistosta /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -574,17 +586,18 @@ msgstr "Tapahtui vakava virhe" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot /var/log/dist-" "upgrade/main.log ja /var/log/dist-upgrade/apt.log. Päivitys keskeytyy nyt.\n" -"Alkuperäinen sources.list tallennettiin nimellä " -"/etc/apt/sources.list.distUpgrade." +"Alkuperäinen sources.list tallennettiin nimellä /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -630,6 +643,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -677,13 +691,13 @@ msgid "%li seconds" msgstr "%li sekuntia" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" -msgstr "" -"Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" +msgstr "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -698,6 +712,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,8 +733,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen " -"loppuun" +"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -810,6 +825,7 @@ msgstr "Ei voitu noutaa julkaisutietoja" msgid "Please check your internet connection." msgstr "Tarkista Internet-yhteytesi toimivuus." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Päivitystyökalua ei voitu suorittaa" @@ -912,14 +928,17 @@ msgstr "" "Muutosluettelon nouto epäonnistui. \n" "Tarkista Internet-yhteytesi toimivuus." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Tärkeät turvallisuuspäivitykset" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Suositellut päivitykset" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Ehdotetut päivitykset" @@ -932,6 +951,7 @@ msgstr "Takaisinsovitukset" msgid "Distribution updates" msgstr "Jakelupäivitykset" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Muut päivitykset" @@ -953,6 +973,7 @@ msgstr "Poista _valinnat" msgid "_Check All" msgstr "_Tarkista kaikki" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -987,6 +1008,7 @@ msgstr "Versiosta %(old_version)s versioon %(new_version)s" msgid "Version %s" msgstr "Versio %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1011,6 +1033,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" @@ -1025,19 +1048,23 @@ msgstr "" "Synaptic-pakettienhallintaa tai komentoa \"sudo apt-get install -f\" " "päätteessä." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ei mitään" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1062,8 +1089,8 @@ msgstr "Pidä järjestelmäsi ajan tasalla" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Kaikkia päivityksiä ei voi asentaa \n" -" \n" +"Kaikkia päivityksiä ei voi asentaa\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1315,8 +1342,8 @@ msgid "" msgstr "" "Kirjoita haluamasi ohjelmalähteen koko APT-rivi\n" "\n" -"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " -"\"deb http://ftp.debian.org sarge main\"." +"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1403,186 +1430,230 @@ msgstr "Ikkunan koko" msgid "Configure the sources for installable software and updates" msgstr "Muokkaa asennettavien ohjelmien ja päivitysten lähteitä" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yhteisön ylläpitämät" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Suljetut laiteajurit" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Rajoitetut ohjelmistot" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmat" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Yhteisön ylläpitämät avoimen lähdekoodin ohjelmistot" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ei-vapaat ajurit" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Suljetut laiteajurit " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Rajoitetut ohjelmat (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Tekijänoikeus- tai lakiasioilla rajoitetut ohjelmistot" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Takaisinsovitetut päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Virallisesti tuettu" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 takaisinsovitukset" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\" -CD-levy" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ei enää virallisesti tuettu" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Rajoitettu tekijänoikeus" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 takaisinsovitukset" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" turvallisuuspäivitykset" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testattava)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (epävakaa)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "DFSG-yhteensopivat ohjelmat joilla riippuvuuksia epävapaisiin ohjelmiin" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" @@ -1590,7 +1661,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Tekijänoikeus- tai lakiasioilla käyttörajoitetut ohjelmistot" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" @@ -1612,8 +1682,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Päivitetään jakeluun Ubuntu " -#~ "6.10" +#~ "Päivitetään jakeluun Ubuntu 6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Ubuntun tärkeät turvallisuuspäivitykset" @@ -1632,16 +1702,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Tarkistetaan järjestelmää\n" #~ "\n" -#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " -#~ "ominaisuuksia." +#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat " +#~ "uusia ominaisuuksia." #~ msgid "Oficially supported" #~ msgstr "Virallisesti tuettu" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Jotkut päivitykset vaativat muiden ohjelmien poistoa. Käytä \"Merkitse " #~ "kaikki päivitykset\"-toimintoa Synaptic-pakettienhallintaojhelmassa, tai " @@ -1650,7 +1720,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "The following updates will be skipped:" #~ msgstr "Seuraavat päivitykset ohitetaan:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Noin %li sekuntia jäljellä" @@ -1730,8 +1799,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ubuntu 6.06 LTS takaisinsovitukset" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Luettaessa varastotietoja ei löydetty kelvollisia ohjelmavarastoja " #~ "päivittämistä varten.\n" @@ -1773,11 +1842,12 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia." #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Sinun pitää ladata päivitystiedot uudelleen käsin\n" #~ "\n" @@ -1826,19 +1896,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Kirjoita haluamasi varaston koko APT-rivi\n" #~ "\n" -#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " -#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " +#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " +#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " #~ "dokumentaatiosta." #~ msgid "A_uthentication" #~ msgstr "Varmenn_us" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " -#~ "avaimen luotettavaa kanavaa pitkin, ja että luotat sen omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " +#~ "vastaanotit avaimen luotettavaa kanavaa pitkin, ja että luotat sen " +#~ "omistajaan. " #~ msgid "Automatically check for software _updates." #~ msgstr "Tarkista ohjelma_päivitykset automaattisesti." @@ -1862,8 +1933,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Maksimikoko megatavuissa:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Palauta jakelun mukana toimitetut oletusavaimet. Tämä ei muuta tai poista " #~ "itse asennettuja avaimia." @@ -1892,8 +1963,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -1906,17 +1977,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. If " -#~ "you are behind an internet connection that needs to be started by hand (e.g. " -#~ "a modem) you should use this button so that update-manager knows about new " -#~ "updates." +#~ "If you have a permanent internet connection this is done automatically. " +#~ "If you are behind an internet connection that needs to be started by hand " +#~ "(e.g. a modem) you should use this button so that update-manager knows " +#~ "about new updates." #~ msgstr "" #~ "Lataa pakettitiedot palvelimelta uudelleen. \n" #~ "\n" #~ "Jos sinulla on kiinteä Internet-yhteys, tämä tehdään automaattisesti. Jos " #~ "olet käsin muodostettavan Internet-yhteyden (esim. modeemi) takana, sinun " -#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon uusista " -#~ "päivityksistä." +#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon " +#~ "uusista päivityksistä." #~ msgid "Binary" #~ msgstr "Binääri" @@ -1942,8 +2013,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. Käytä " -#~ "\"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." +#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. " +#~ "Käytä \"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Kaikkia paketteja ei voida päivittää." @@ -1951,12 +2022,13 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita toimenpiteitä " -#~ "(kuten pakettien asentamista tai poistamista). Käytä Synaptic-ohjelman " -#~ "\"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade\"-komentoa " -#~ "korjataksesi ongelman." +#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita " +#~ "toimenpiteitä (kuten pakettien asentamista tai poistamista). Käytä " +#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade" +#~ "\"-komentoa korjataksesi ongelman." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Muutoksia ei löytynyt, palvelinta ei ole ehkä vielä päivitetty." @@ -1965,8 +2037,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Päivityksiä asennetaan." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Voit hallita paketteja vain yhdellä ohjelmalla kerrallaan. Sulje toinen " #~ "ohjelma ensin." @@ -1979,19 +2051,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei enää " -#~ "ole tulossa turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " -#~ "Tietoja päivittämisestä löydät sivulta http://www.ubuntulinux.org." +#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei " +#~ "enää ole tulossa turvallisuuspäivityksiä tai muita kriittisiä " +#~ "päivityksiä. Tietoja päivittämisestä löydät sivulta http://www." +#~ "ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntusta on uusi julkaisu saatavilla!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Uusi julkaisu nimeltään '%s' on saatavilla. Päivitysohjeet löydät " #~ "osoitteesta http://www.ubuntulinux.org/." @@ -2003,11 +2076,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ei saatu haluttua lukitusta" #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get " -#~ "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." +#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-" +#~ "get tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Alustetaan ja ladataan luetteloa päivityksistä..." @@ -2033,15 +2106,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " -#~ "avaimen luotettua kanavaa pitkin ja että luotat avaimen omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " +#~ "vastaanotit avaimen luotettua kanavaa pitkin ja että luotat avaimen " +#~ "omistajaan. " #~ msgid "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia käyttäjän " -#~ "asentamiin avaimiin." +#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia " +#~ "käyttäjän asentamiin avaimiin." #~ msgid "Ubuntu Update Manager" #~ msgstr "Ubuntun päivitysten hallinta" @@ -2049,8 +2123,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -2058,4 +2132,4 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Asenna-painiketta." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/fr.po b/po/fr.po index 3edae48d..af75b0f1 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" @@ -55,6 +55,7 @@ msgstr "Après un mois" msgid "After %s days" msgstr "Après %s jours" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "Mises à jour %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serveur principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +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." @@ -168,6 +170,7 @@ 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é" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" @@ -184,6 +187,7 @@ msgstr "" "Merci de rapporter ce bogue du paquet « update-manager » et d'inclure les " "fichiers de /var/log/dist-upgrade/ dans le rapport de bogue." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" @@ -211,6 +215,7 @@ msgstr "" "Il a été impossible d'installer un paquet pourtant requis. Merci de " "rapporter ce bogue. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" @@ -229,11 +234,11 @@ msgstr "" " Veuillez d'abord installer l'un des paquets ci-dessus, en utilisant " "Synaptic ou apt-get, avant de continuer." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Impossible d'ajouter le CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,16 +253,16 @@ msgstr "" "Le message d'erreur est :\n" "« %s »" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Lecture du cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 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 ?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +275,11 @@ msgstr "" "répondre « oui ». Par contre, si votre connexion internet est lente ou trop " "chère, répondez « non »." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Aucun mirroir valide trouvé" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +299,12 @@ msgstr "" "cela mettra à jour toutes les entrées « %s » vers « %s ».\n" "Sinon, la mise à jour sera annulée." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +318,11 @@ msgstr "" "Les entrées par défaut pour « %s » doivent-elles être ajoutées ? Si vous " "sélectionnez « Non », la mise à jour sera annulée." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Information sur le dépôt invalide" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +330,11 @@ msgstr "" "La mise à jour des informations du dépôt a créé un fichier invalide. Merci " "de rapporter ce bogue." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sources provenant de tiers désactivées" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -338,11 +344,11 @@ msgstr "" "désactivées. Vous pouvez les réactiver après la mise à jour avec l'outil « " "Gestionnaire de canaux logiciels » ou avec Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Erreur lors de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,30 +357,31 @@ msgstr "" "un problème de réseau. Veuillez vérifier votre connexion au réseau et " "réessayer." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Pas assez d'espace libre sur le disque" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"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 »." +"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 »." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Les mises à jour n'ont pu être installées" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +396,11 @@ msgstr "" "joindre les fichiers du répertoire /var/log/dist-upgrade dans le rapport de " "bogue." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Les mises à jour n'ont pu être téléchargées" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +408,11 @@ msgstr "" "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou " "votre médium d'installation puis réessayez. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "La prise en charge de certaines applications a pris fin" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -420,23 +427,23 @@ msgstr "" "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." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes ?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Passer cette étape" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Supprimer" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Erreur pendant la soumission" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,26 +451,28 @@ msgstr "" "Un problème est survenu lors du nettoyage. Veuillez vous reporter au message " "ci-dessous pour plus d'informations. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Recherche du backport (rétro-portage) de « %s »" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Échec lors de la préparation de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -473,15 +482,15 @@ msgstr "" "remonter ce bug concernant le paquet 'update manager' et d'inclure les " "fichiers contenus dans le dossier /var/log/dist-upgrade/ à votre rapport." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts en cours" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Information sur le paquet invalide" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -496,22 +505,23 @@ msgstr "" "comme un bogue du paquet « update-manager » et joindre les fichiers du " "répertoire /var/log/dist-upgrade dans le rapport de bogue." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Demande de confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Mise à jour en cours" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -539,6 +549,7 @@ msgstr "Téléchargement du fichier %li sur %li en cours" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Application des changements" @@ -554,9 +565,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "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." +"un bogue du paquet « update-manager » et joindre les fichiers du répertoire /" +"var/log/dist-upgrade/ dans le rapport de bogue." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -584,18 +596,19 @@ msgstr "Une erreur fatale est survenue" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez signaler ce bogue et joindre les fichiers /var/log/dist-upgrade.log " "et /var/log/dist-upgrade/apt.log à votre rapport. La mise à jour est " "annulée.\n" -"Votre fichier sources.list d'origine a été enregistré dans " -"/etc/apt/sources.list.distUpgrade." +"Votre fichier sources.list d'origine a été enregistré dans /etc/apt/sources." +"list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -642,6 +655,7 @@ msgstr "" "Pour éviter toute perte de données accidentelle, veuillez fermer toutes les " "applications et documents ouverts." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -691,6 +705,7 @@ msgid "%li seconds" msgstr "%li secondes" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -714,6 +729,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -825,6 +841,7 @@ msgstr "Impossible de télécharger les informations de version" msgid "Please check your internet connection." msgstr "Veuillez vérifier votre connexion Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible de lancer l'outil de mise à jour" @@ -928,14 +945,17 @@ msgstr "" "Échec lors du téléchargement de la liste des modifications. \n" "Veuillez vérifier votre connexion Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Mises à jour de sécurité" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Mises à jour recommandées" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Mises à jour suggérées" @@ -948,6 +968,7 @@ msgstr "« Backports »" msgid "Distribution updates" msgstr "Mises à jour de la distribution" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Autres mises à jour" @@ -969,6 +990,7 @@ msgstr "_Tout décocher" msgid "_Check All" msgstr "Tout _vérifier" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1003,6 +1025,7 @@ msgstr "De la version %(old_version)s vers la version %(new_version)s" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1027,6 +1050,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" @@ -1041,19 +1065,23 @@ msgstr "" "utiliser d'abord le « Gestionnaire de paquets Synaptic » ou lancez « sudo " "apt-get install -f » dans un terminal pour réparer ce problème." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Aucun(e)" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Ko" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Ko" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1066,8 +1094,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Vous devez vérifier manuellement la disponibilité de mises à " -"jour\n" +"Vous devez vérifier manuellement la disponibilité de mises à jour\n" "\n" "Votre système ne vérifie pas les mises à jour automatiquement. Vous pouvez " "configurer ce comportement dans Sources logicielles qui se trouve " @@ -1299,8 +1327,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Les informations sur les logiciels disponibles sont " -"obsolètes\n" +"Les informations sur les logiciels disponibles sont obsolètes\n" "\n" "Pour installer de nouveaux logiciels ou des mises à jour à partir des canaux " "logiciels modifiés ou nouvellement ajoutés, vous devez recharger ces " @@ -1430,187 +1458,231 @@ msgstr "" "Configurer les canaux logiciels (sources de mise à jour) et les mises à jour " "via Internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Maintenu par la communauté" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Pilotes propriétaires de périphériques" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Logiciel non libre" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM contenant Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Logiciel libre supporté par Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Maintenu par la communauté (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Logiciel libre maintenu par la communauté" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pilotes non libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Pilotes propriétaires de périphériques " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Logiciel non libre (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Logiciel soumis au droit d'auteur ou à des restrictions légales" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM contenant Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Mises à jour backportées" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM contenant Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM contenant Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supporté officiellement" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Mises à jour pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "« Backports » pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Maintenu par la communauté (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM contenant Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Support officiel terminé" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restreint" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Mises à jour pour Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "« Backports » pour Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mises à jour de sécurité pour Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 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" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" @@ -1618,7 +1690,6 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Logiciel restreint pour des raisons légales ou de copyright" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" @@ -1667,18 +1738,18 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ 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." +#~ "\"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 :" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Environ %li secondes restantes" @@ -1754,11 +1825,11 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgstr "« Backports » pour Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "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" +#~ "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" @@ -1767,8 +1838,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "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 ?" +#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que " +#~ "vos changements soient effectifs. Voulez-vous le faire maintenant ?" #~ msgid "Sections" #~ msgstr "Catégories :" @@ -1785,7 +1856,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Téléchargement des changements\n" +#~ "Téléchargement des changements\n" #~ "\n" #~ "Il est nécessaire de récupérer les changement du serveur central" @@ -1817,13 +1889,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " -#~ "en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " +#~ "jour en utilisant le bouton Installer." #~ msgid "Repository" #~ msgstr "Dépôt" @@ -1844,20 +1916,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "Clés d'authentification\n" #~ "\n" #~ "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." +#~ "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" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "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. " +#~ "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" @@ -1879,8 +1951,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ 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." @@ -1917,23 +1989,25 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." -#~ 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 " +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " #~ "situation." +#~ 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." #~ 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." +#~ "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." +#~ "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." @@ -1946,20 +2020,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Veuillez mettre à jour vers une version plus récente d'Ubuntu Linux. La " -#~ "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." +#~ "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." +#~ "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." @@ -1969,8 +2043,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. " #~ "Veuillez tout d'abord fermer cette autre application." @@ -2007,13 +2081,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " -#~ "en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " +#~ "jour en utilisant le bouton Installer." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/fur.po b/po/fur.po index a4be5116..2cc4f1ea 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -55,6 +55,7 @@ msgstr "Dopo un mèis" msgid "After %s days" msgstr "Dopo %s dîs" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -205,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -219,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -235,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -251,11 +256,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -264,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -307,15 +313,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -324,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -347,63 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,22 +422,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -540,6 +553,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +728,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -821,6 +841,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -842,6 +863,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -876,6 +898,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -897,6 +920,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -908,19 +932,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1246,184 +1274,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/gl.po b/po/gl.po index ecf91bf0..6955807d 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Xosé \n" "Language-Team: galician\n" @@ -57,6 +57,7 @@ msgstr "Logo dun mes" msgid "After %s days" msgstr "Logo de %s días" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "actualizacións de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Houbo un erro ao borrar a clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Non se pode borrar a clave que seleccionou. Por favor, avise disto como un " "fallo." @@ -170,6 +172,7 @@ msgstr "Non se puideron actualizar os meta-paquetes necesarios" msgid "A essential package would have to be removed" msgstr "Tívose que desinstalar un paquete esencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Non se puido calcular a actualización" @@ -186,6 +189,7 @@ msgstr "" "Informa deste erro do pacote \"update-manager\" e inclúe os ficheiros que " "hai en /var/log/dist-upgrade/ no informe." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando algúns paquetes" @@ -213,6 +217,7 @@ msgstr "" "Non foi posible instalar un paquete necesario. Por favor, informe disto como " "un fallo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Non se puido determinar o meta-paquete" @@ -231,11 +236,11 @@ msgstr "" " Instala un dos pacotes mencionados usando synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Non se puido engadir o CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -250,15 +255,15 @@ msgstr "" "A mensaxe de erro foi:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "A ler a caché" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Procurar datos desde a rede para a actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +275,11 @@ msgstr "" "Se dispós dde acceso rápido ou barato á rede deberías respostar \"Si\" aquí. " "Se che custa caro, escolle \"Non\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Non se atopou un servidor espello válido" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +299,12 @@ msgstr "" "selecciona «Si», actualizaranse todas as entradas '%s' a '%s'.\n" "Se selecciona «Non» cancelarase a actualización." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Xerar orixes predeterminadas?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,17 +312,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tras examinar o seu «sources.list», non se atoparon entradas válidas para " -"'%s'.\n" +"Tras examinar o seu «sources.list», non se atoparon entradas válidas para '%" +"s'.\n" "\n" "Deben engadirse entradas predeterminadas para '%s'? Se selecciona «Non» " "cancelarse a actualización." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Información de depósito non válida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +330,11 @@ msgstr "" "A actualización da información do depósito xerou un ficheiro incorrecto. Por " "favor, informe disto como un erro." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Orixes de terceiros desactivadas" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -338,11 +344,11 @@ msgstr "" "Pódelas volver a activar coa ferramenta \"software-properteis\" ou con " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Erro durante a actualización" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +357,11 @@ msgstr "" "tipo de problema na rede, por favor, comprobe a súa conexión de rede e " "volvao a intentar." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Non hai espazo suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -366,15 +372,16 @@ msgstr "" "espazo en disco en %s. Vacíe a súa papelera, e elimine os paquetes temporais " "de instalacións anteriores tecleando «sudo apt-get clean» nun terminal." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Desexa comezar a actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Non se puideron instalar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -385,14 +392,14 @@ msgstr "" "Vaise cancelar a actualización agora. O teu sistema podería ficar nun estado " "que non permita ser usado. Procedeuse a recuperalo (dpkg --configure -a).\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ no informe." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Non se puideron descargar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +407,11 @@ msgstr "" "A actualización interromperase agora. Por favor, comprobe a súa conexión a " "Internet (ou o seu soporte de instalación) e volvao a intentar. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Rematou o soporte para algunhas aplicacións" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -418,23 +425,23 @@ msgstr "" "Se non tes activado o software mantido pola comunidade (universe), " "suxerirase que elimines estes pacotes no paso seguinte." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Desinstalar os paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Borrar" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Erro durante a confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,26 +449,28 @@ msgstr "" "Ocorreu algún problema durante o limpado. Por favor, vexa a mensaxe inferior " "para máis información. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "A retornar ao estado orixinal do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "A procurar backports de \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Comprobando xestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Fallou a preparación da actualización" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -471,15 +480,15 @@ msgstr "" "pacote \"update-manager\" e inclúe os ficheiros de /var/log/dist-upgrade/ no " "informe." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Actualizando a información do repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Información de paquete non válida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -492,25 +501,26 @@ msgstr "" "esencial, xa non se dá atopado.\n" "Isto indica un erro serio.\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ no informe." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Comletouse a actualización do sistema." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -538,6 +548,7 @@ msgstr "A baixar o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando os cambios" @@ -555,6 +566,7 @@ msgstr "" "Vaise cancelar a actualización agora. Informa desde fallo do pacote \"update-" "manager\" e inclúe os ficheiros en /var/log/dist-upgrade/ no informe." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -582,18 +594,19 @@ msgstr "Ocorreu un erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " "Vaise cancelar a actualización agora.\n" -"O teu ficheiro sources.list orixinal gardouse en " -"/etc/apt/sources.list.distUpgrade." +"O teu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -636,9 +649,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Para previr a perda de datos peche todas as aplicacións e documentos." +msgstr "Para previr a perda de datos peche todas as aplicacións e documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -688,6 +701,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -710,6 +724,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -820,6 +835,7 @@ msgstr "Non se puideron descargar as notas da versión" msgid "Please check your internet connection." msgstr "Por favor, comprobe a súa conexión a Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Non se puido executar a ferramenta de actualización" @@ -854,8 +870,7 @@ msgstr "Erro ao descargar" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Fallou a descarga da actualización. Pode haber un problema coa rede. " +msgstr "Fallou a descarga da actualización. Pode haber un problema coa rede. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -923,14 +938,17 @@ msgstr "" "Non se puido descarregar a listaxe de modificacións. \n" "Comproba a túa conexión á Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizacións de seguranza importantes" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizacións recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizacións suxeridas" @@ -943,6 +961,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Actualizacións da distribución" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizacións" @@ -964,6 +983,7 @@ msgstr "_Quitarlle a Selección a Todo" msgid "_Check All" msgstr "_Seleccionalo Todo" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -998,6 +1018,7 @@ msgstr "Desde a versión %(old_version)s á %(new_version)s" msgid "Version %s" msgstr "Versión %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1022,6 +1043,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Está dispoñible a nova versión '%s' da distribución" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está danado" @@ -1036,19 +1058,23 @@ msgstr "" "xestor de paquetes \"Synaptic\", ou execute \"sudo apt-get install -f\" nun " "terminal, para corrixir este problema primeiro." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nengún" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1416,190 +1442,233 @@ msgstr "O tamaño da ventá" msgid "Configure the sources for installable software and updates" msgstr "Configurar as fontes para programas e actualizacións instalábeis" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pola Comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores propietarios de dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Aplicacións restrinxidas" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom con Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software de Código Aberto soportado por Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pola Comunidade (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Aberto mantido pola Comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores non libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores propietarios para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restrinxido (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restrinxido por razóns de copyright ou legais" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom con Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizacións de backports" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizacións para Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom con Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizacións para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pola comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software non libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom con Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Xa non se mantén oficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrinxido" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizacións para Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports para Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizacións de seguridade de Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (probas)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (inestable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible coa DFSG con dependencias non libres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatible coa DFSG" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1610,16 +1679,16 @@ msgstr "Software non compatible coa DFSG" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Ocorreu un problema imposible de resolver cando se calculaba a " #~ "actualización. Por favor, informe disto como un fallo. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" @@ -1639,11 +1708,12 @@ msgstr "Software non compatible coa DFSG" #~ "software», ou con Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "A actualización interromperase agora. O seu sistema pode quedar nun estado " -#~ "inutilizable. Estase levando a cabo unha recuperación (dpkg --configure -a)." +#~ "A actualización interromperase agora. O seu sistema pode quedar nun " +#~ "estado inutilizable. Estase levando a cabo unha recuperación (dpkg --" +#~ "configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Algúns programas xa non están soportados oficialmente" @@ -1664,40 +1734,33 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Restoring originale system state" #~ msgstr "Restaurando o estado orixinal do sistema" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." #~ msgstr "" -#~ "Logo de actualizarse a información dos seus paquetes xa non é posible atopar " -#~ "o paquete esencial '%s».\n" +#~ "Logo de actualizarse a información dos seus paquetes xa non é posible " +#~ "atopar o paquete esencial '%s».\n" #~ "Isto indica un problema serio, por favor, informe disto como un fallo." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Faltan %li dias %li horas %li minutos" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Faltan %li horas %li minutos" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Faltan %li minutos" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" #~ msgid "Download is complete" #~ msgstr "Completouse a descarga" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Descargando ficheiro %li de %li" @@ -1705,7 +1768,6 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "A actualización cancelarase agora. Por favor, informe disto como un fallo." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1714,43 +1776,41 @@ msgstr "Software non compatible coa DFSG" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Por favor, informe disto como un fallo e inclúa os arquivos /var/log/dist-" -#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A actualización " -#~ "cancelarase agora.\n" -#~ "O seu arquivo «sources.list» orixinal gardouse en " -#~ "/etc/apt/sources.list.distUpgrade." +#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A " +#~ "actualización cancelarase agora.\n" +#~ "O seu arquivo «sources.list» orixinal gardouse en /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "Vaise desinstalar %s paquete." #~ msgstr[1] "Vanse desinstalar %s paquetes." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "Vaise instalar %s paquete novo." #~ msgstr[1] "Vanse instalar %s paquetes novos." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "Vaise actualizar %s paquete." #~ msgstr[1] "Vanse actualizar %s paquetes." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Debe descargar un total de %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "A actualización pode levar varias horas e non poderá ser cancelada despois " -#~ "en ningún momento." +#~ "A actualización pode levar varias horas e non poderá ser cancelada " +#~ "despois en ningún momento." #~ msgid "Could not find any upgrades" #~ msgstr "Non se puido atopar ningunha actualización" @@ -1761,7 +1821,8 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Actualizando a Ubuntu 6.06 LTS" +#~ "Actualizando a Ubuntu 6.06 LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Descargando e instalando as actualizacións" @@ -1770,44 +1831,42 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizando Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Fallou a verificación da actualización. Pode haber un problema coa rede ou o " -#~ "servidor. " +#~ "Fallou a verificación da actualización. Pode haber un problema coa rede " +#~ "ou o servidor. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando ficheiro %li de %li a velocidade descoñecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo máis " -#~ "tarde." +#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo " +#~ "máis tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." #~ msgstr "" -#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión a " -#~ "Internet." +#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión " +#~ "a Internet." #~ msgid "Cannot install all available updates" #~ msgstr "Non se puideron instalar todas as actualizacións dispoñibles" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "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:" @@ -1821,7 +1880,6 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Show details" #~ msgstr "Mostrar detalles" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Nova versión: %s (Tamaño: %s)" @@ -1831,19 +1889,21 @@ msgstr "Software non compatible coa DFSG" #~ 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 "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Debe comprobar as actualizacións manualmente\n" #~ "\n" -#~ "O seu sistema non comproba as actualizacións automatimente. Pode configurar " -#~ "este comportamento en \"Sistema\" -> \"Administración\" -> \"Propiedades do " -#~ "software\"." +#~ "O seu sistema non comproba as actualizacións automatimente. Pode " +#~ "configurar este comportamento en \"Sistema\" -> \"Administración\" -> " +#~ "\"Propiedades do software\"." #~ msgid "" #~ "Examining your system\n" @@ -1853,8 +1913,8 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "Analizando o seu sistema\n" #~ "\n" -#~ "As actualizacións de software corrixen erros, eliminan fallos de seguridade " -#~ "e proporcionan novas funcionalidades." +#~ "As actualizacións de software corrixen erros, eliminan fallos de " +#~ "seguridade e proporcionan novas funcionalidades." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _descarga" @@ -1883,15 +1943,16 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "A información das canles está obsoleta\n" #~ "\n" #~ "Debe recargar a información das canles para poder instalar software e " -#~ "actualizacións a partir das canles recientemente engadidas ou cambiadas. \n" +#~ "actualizacións a partir das canles recientemente engadidas ou " +#~ "cambiadas. \n" #~ "\n" #~ "Necesita unha conexión a internet para continuar." @@ -1902,17 +1963,17 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Compoñentes" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Introduza a liña de APT completa da canle que queira " -#~ "engadir\n" +#~ "Introduza a liña de APT completa da canle que queira engadir\n" #~ "\n" -#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, por " -#~ "exemplo \"deb http://ftp.debian.org sarge main\"." +#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, " +#~ "por exemplo \"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Engadir unha canle" @@ -1930,12 +1991,12 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" -#~ "Se se desactiva a comprobación automática de actualizacións, debe recargar a " -#~ "lista de canles manualmente. Esta opción permítelle ocultar a notificación " -#~ "que se mostra neste caso." +#~ "Se se desactiva a comprobación automática de actualizacións, debe " +#~ "recargar a lista de canles manualmente. Esta opción permítelle ocultar a " +#~ "notificación que se mostra neste caso." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1960,4 +2021,4 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizacións de Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "«Backports» de Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "«Backports» de Ubuntu 6.06 LTS" diff --git a/po/he.po b/po/he.po index 42e311d3..cca523c2 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 08:48+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -58,13 +58,15 @@ msgstr "אחרי חודש" msgid "After %s days" msgstr "אחרי %s ימים" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "מתקין עדכונים..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,6 +76,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "שרת ראשי" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -167,6 +169,7 @@ msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "לא ניתן לחשב את השדרוג" @@ -182,6 +185,7 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "שגיאה באימות חלק מן החבילות" @@ -204,6 +208,7 @@ msgid "" "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "לא ניתן לקבוע חבילת על" @@ -220,11 +225,11 @@ msgstr "" "מותקנת במערכת שלך, לכן לא ניתן לזהות באיזו גירסה של אובונטו נעשה שימוש.\n" " אנא התקן אחת מהחבילות הנ\"ל בעזרת Synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "הוספת התקליטור נכשלה" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -239,15 +244,15 @@ msgstr "" "הודעת השגיאה הייתה:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "קורא מטמון" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "להוריד מידע מהאינטרנט לצורך השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -255,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "לא נמצא אתר מראה תקני" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -278,11 +283,12 @@ msgstr "" "\n" "בחירה ב\"לא\" תבטל את העדכון." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "לייצר מקורות ברירת מחדל?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -294,32 +300,32 @@ msgstr "" "\n" "האם לקבוע את ברירת המחדל כרישום ל\"%s\"? בחירה ב\"לא\" תבטל את העדכון." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "מידע מאגרים לא תקין" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "עדכון מידע המאגרים יצר קובץ לא תקין. אנא דווחו על כך כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "מקורות של ספקי צד שלישי בוטלו" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "שגיאה במהלך העדכון" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -327,11 +333,11 @@ msgstr "" "הייתה בעיה בתהליך העידכון. בדרך כלל זוהי בעיית רשת, אנא בדקו את חיבור הרשת " "שלכם ונסו שנית." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "אין מספיק שטח בדיסק הקשיח" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -341,15 +347,16 @@ msgstr "" "השדרגו יתבטל כעת. יש לפנות לפחות %s מהשטח ב-%s. רוקנו את הזבל והסירו חבילות " "זמניות מהתקנות קודמות על ידי שימוש בפקודה \"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -358,22 +365,22 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. אנא בדקו את החיבור לאינטרנט או את מדיית ההתקנה ונסו שנית. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "המיכה בכמה תוכנות הסתיימה" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -382,64 +389,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "להסיר חבילות שאינן בתוקף?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_דלג על השלב" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_הסר" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "שגיאה בעת ביצוע" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "מחזיר את המערכת למצבה המקורי" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "בודק את מנהל החבילות" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "מעדכן מידע מאגרים" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "מידע חבילה לא תקין" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -450,22 +459,23 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "משדרג" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -493,6 +503,7 @@ msgstr "מוריד קובץ %li מתוך %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "מחיל שינויים" @@ -508,6 +519,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -531,13 +543,14 @@ msgstr "ארעה שגיאה חמורה" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -582,6 +595,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -629,6 +643,7 @@ msgid "%li seconds" msgstr "%liשניות" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -648,6 +663,7 @@ msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם בר #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -758,6 +774,7 @@ msgstr "לא ניתן להוריד הערות שחרור גירסה." msgid "Please check your internet connection." msgstr "אנא בדקו את החיבור לאינטרנט." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "לא ניתן להריץ את כלי השדרוג" @@ -847,14 +864,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "עדכוני אבטחה חשובים" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "עדכונים מומלצים" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "עדכונים מוצעים" @@ -867,6 +887,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "עדכונים אחרים" @@ -888,6 +909,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -922,6 +944,7 @@ msgstr "" msgid "Version %s" msgstr "גרסה %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -945,6 +968,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "גירסה חדשה של ההפצה, \"%s\", זמינה" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "אינדקס התוכנות פגום" @@ -958,19 +982,23 @@ msgstr "" "אי אפשר להתקין או להסיר אף תוכנה. יש להשתמש במנהל החבילות \"Synaptic\" או " "להפעיל את הפקודה \"sudo apt-get install -f\" במסוף כדי לתקן בעיה זו." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1231,8 +1259,8 @@ msgid "" msgstr "" "הכנס את שורת APT השלמה של המאגר שברצונך להוסיף\n" "\n" -"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb " -"http://ftp.debian.org sarge main\"\n" +"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb http://ftp.debian." +"org sarge main\"\n" "אפשר למצוא הסבר מפורט על זה בתיעוד." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 @@ -1317,199 +1345,242 @@ msgstr "גודל החלון" msgid "Configure the sources for installable software and updates" msgstr "הגדרת מקורות התוכנות להתקנה והעדכונים" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "אובונטו 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "מתוחזק ע\"י הקהילה" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "דרייברים קניינים להתקנים" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "תוכנה בעלת הגבלות" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "תקליטור אובונטו 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "אובונטו 6.06 LTS \"DapperDrake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "מתוחזק ע\"י הקהילה (Universe(" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "תוכנות קוד פתוח המתוחזקות ע\"י הקהילה" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "דרייברים לא חופשיים" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "תוכנה בעלת הגבלות (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "תקליטור אובונטו 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "אובונטו 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור אובונטו 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "אובונטו 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור אובונטו 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "נתמך רשמית" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "עדכונים - אובונטו 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "אובונטו 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "לא-חופשי (Multiverse(" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור אובונטו 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "אינה נתמכת רשמית יותר" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "זכויות יוצרים מגבילות" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "עדכונים - אובונטו 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "דביאן 3.1 \"סארג'\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "עדכוני אבטחה - דביאן יציב" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "דביאן בדיקה" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "דביאן לא ארה\"ב (לא יציב)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "ההורדה תיקח בערך %s עם מודם 56k ובערך %s עם חיבור DSL במהירות 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." @@ -1539,11 +1610,9 @@ msgstr "" #~ "אם אל אפשרת התקנת תוכנות המתחוזקות ע\"י הקהילה (universe), החבילות האלה " #~ "יסומנו להסרה בצעד הבא." -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" @@ -1556,13 +1625,14 @@ msgstr "" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "יש לחפש עדכונים ידניתg>\n" #~ "\n" -#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת\"-" -#~ "> \"ניהול\" -> \"אפשרויות תוכנה\"." +#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת" +#~ "\"-> \"ניהול\" -> \"אפשרויות תוכנה\"." #~ msgid "Cancel _Download" #~ msgstr "בטל _הורדה" @@ -1588,7 +1658,6 @@ msgstr "" #~ msgid "Oficially supported" #~ msgstr "נתמך רשמית" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "נותרו %li שניות." @@ -1703,8 +1772,8 @@ msgstr "" #~ "תקינות התוכנה שאתה מוריד." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "הוסף קובץ מפתח חדש לרשימת המפתחות שאתה בוטח בהם. אנא וודא שאתה שקיבלת את " #~ "המפתח בדרך מאובטחת ושאתה בוטח בבעלים. " @@ -1734,8 +1803,8 @@ msgstr "" #~ msgstr "גודל מקסימלי במגה-בתים:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "שחזר את מפתחות ברירת המחדל שבאו עם ההפצה. זה לא ישנה את המפתחות המותקנים." @@ -1766,8 +1835,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "עדכונים זמינים\n" #~ "\n" @@ -1839,7 +1908,8 @@ msgstr "" #~ msgstr[1] "בחרת את כל %s החבילות המעודכנות, בגודל כולל של %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "בחרת %s מתוך חבילה מעודכנת אחת, בגודל של %s" #~ msgstr[1] "בחרת %s מתוך %s חבילות מעודכנות, בגודל כולל של %s" @@ -1847,8 +1917,8 @@ msgstr "" #~ msgstr "העדכונים מתבצעים כרגע." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "אפשר להריץ רק מנהל חבילות אחד באותו זמן. אנא סגור מנהלי חבילות אחרים קודם." @@ -1863,16 +1933,16 @@ msgstr "" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת עדכוני " -#~ "אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org בשביל " -#~ "מידע אודות שדרוג." +#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת " +#~ "עדכוני אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org " +#~ "בשביל מידע אודות שדרוג." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "הפצה חדשה עם שם קוד '%s' זמינה. אנא ראה http://www.ubuntulinux.org/ בשביל " #~ "הוראות שדרוג." @@ -1881,4 +1951,4 @@ msgstr "" #~ msgstr "אל תראה את הודעה זו שוב." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." \ No newline at end of file +#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." diff --git a/po/hi.po b/po/hi.po index 57c860f1..9665d78f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -55,6 +55,7 @@ msgstr "एक महीने बाद" msgid "After %s days" msgstr "%s दिन बाद" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -205,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -219,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -235,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -251,11 +256,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -264,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -307,15 +313,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -324,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -347,63 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,22 +422,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -540,6 +553,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +728,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -821,6 +841,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -842,6 +863,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -876,6 +898,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -897,6 +920,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -908,19 +932,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1246,187 +1274,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/hr.po b/po/hr.po index ea7c826a..7c63b86e 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 14:38+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Nakon mjesec dana" msgid "After %s days" msgstr "Nakon %s dana" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s nadogradnje" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Glavni poslužitelj" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Greška prilikom brisanja ključa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." @@ -165,6 +167,7 @@ msgstr "Ne mogu nadograditi potrebne meta-pakete" msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" @@ -178,9 +181,10 @@ msgid "" msgstr "" "Nerješiv problem se pojavio prilikom rješavanja nadogradnje. \n" "\n" -"Molimo prijavite ovo kao grešku u 'update-manager' paketu i uključite iz " -"/var/log/dist-upgrade/ u prijavu." +"Molimo prijavite ovo kao grešku u 'update-manager' paketu i uključite iz /" +"var/log/dist-upgrade/ u prijavu." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" @@ -208,6 +212,7 @@ msgstr "" "Nije bilo moguće instalirati potreban paket. Molimo prijavite ovo kao " "grešku. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" @@ -225,11 +230,11 @@ msgstr "" " Prije nastavka, molim instalirajte jedan od gore navedenih paketa koristeći " "synaptic ili apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Dodavanje CDa nije uspjelo" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +249,15 @@ msgstr "" "Poruka je bila:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Čitam spremnik" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Preuzeti podatke za nadogradnju putem mreže?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +269,11 @@ msgstr "" "Ako imate brz ili jeftin pristup mreži, trebali biste odgovoriti 'Da' ovdje. " "Ukoliko ne želite preuzeti pakete putem mreže, odgovorite 'Ne'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nisam našao ispravan zrcalni poslužitelj" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +292,12 @@ msgstr "" "odaberete 'Da' nadograditi će se svih '%s' do '%s' unosa.\n" "Ako odaberete 'ne' nadogradnja će se prekinuti." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -299,16 +305,16 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za " -"'%s'.\n" +"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za '%" +"s'.\n" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Podaci repozitorija neispravni" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +322,11 @@ msgstr "" "Nadogradnja podataka repozitorija je rezultirala neispravnom datotekom. " "Molim, prijavite ovo kao grešku." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -330,11 +336,11 @@ msgstr "" "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Greška prilikom nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +348,11 @@ msgstr "" "Pojavio se problem prilikom nadogradnje. Obično se radi o mrežnom problemu, " "pa vas molim da provjerite vašu mrežu i pokušate ponovo." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +363,16 @@ msgstr "" "Ispraznite smeće i uklonite privremene pakete od prošlih instalacija " "koristeći 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -376,14 +383,14 @@ msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Obnavljanje je pokrenuto (dpkg --configure -a).\n" "\n" -"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke u " -"/var/log/dist-upgrade/ direktoriju u prijavu." +"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke " +"u /var/log/dist-upgrade/ direktoriju u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +398,11 @@ msgstr "" "Nadogradnja se prekida. Molim provjerite vašu internet vezu ili " "instalacijski medij i pokušajte ponovo. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Podrška za neke programe je gotova" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -409,23 +416,23 @@ msgstr "" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Preskoči ovaj korak" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Ukloni" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Greška prilikom čina" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,44 +440,46 @@ msgstr "" "Neki problemi su se pojavili prilikom čišćenja. Molim pogledajte poruku za " "više informacija. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Dohvaćanje backporta od '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Neuspjelo pripremanje nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" "Nerješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " -"prijavite ovo kao grešku u 'update-manager' paketu i uključite iz " -"/var/log/dist-upgrade/ u prijavu." +"prijavite ovo kao grešku u 'update-manager' paketu i uključite iz /var/log/" +"dist-upgrade/ u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Neispravni podaci paketa" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -485,22 +494,23 @@ msgstr "" "manager' paketu i uključite datoteke u /var/log/dist-upgrade/ direktoriju u " "prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pitam za potvrdu" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Nadograđujem" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -528,6 +538,7 @@ msgstr "Preuzimam datoteku %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Primjenjujem promjene" @@ -545,6 +556,7 @@ msgstr "" "Nadogradnja se prekida. Molim, prijavite ovu grešku za 'update-manager' " "paket i uključite u prijavu datoteke iz /var/log/dist-upgrade direktorija." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -572,18 +584,19 @@ msgstr "Pojavila se ozbiljna greška" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-" -"upgrade/main.log i /var/log/dist-upgrade-apt.log u vaše izvješće. " -"Nadogradnja se sada prekida.\n" -"Vaša originalna sources.list datoteka je spremljena u " -"/etc/apt/sources.list.distUpgrade." +"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-upgrade/main." +"log i /var/log/dist-upgrade-apt.log u vaše izvješće. Nadogradnja se sada " +"prekida.\n" +"Vaša originalna sources.list datoteka je spremljena u /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -631,6 +644,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -678,6 +692,7 @@ msgid "%li seconds" msgstr "%li sekundi" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -700,6 +715,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -720,8 +736,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ponovno pokretanje računala potrebno je za završetak " -"nadogradnje" +"Ponovno pokretanje računala potrebno je za završetak nadogradnje" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -812,6 +828,7 @@ msgstr "Nisam mogao dohvatiti bilješke izdanja" msgid "Please check your internet connection." msgstr "Molim, provjerite vašu internet vezu." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nisam mogao pokrenuti alat za nadogradnju" @@ -845,8 +862,7 @@ msgstr "Preuzimanje nije uspjelo" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Preuzimanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži. " +msgstr "Preuzimanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -914,14 +930,17 @@ msgstr "" "Preuzimanje popisa promjena nije uspjelo. \n" "Molim, provjerite svoju internet vezu." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Važne sigurnosne nadogradnje" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Preporučene nadogradnje" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Predložene nadogradnje" @@ -934,6 +953,7 @@ msgstr "Backporti" msgid "Distribution updates" msgstr "Nadogranje distribucije" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Druge nadogradnje" @@ -955,6 +975,7 @@ msgstr "_Odznači sve" msgid "_Check All" msgstr "Pro_vjeri sve" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -990,6 +1011,7 @@ msgstr "Verzija %(old_version)s u %(new_version)s" msgid "Version %s" msgstr "Verzija %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1014,6 +1036,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Novo izdanje distribucije, '%s', je dostupno" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Popis programa je oštećen" @@ -1028,19 +1051,23 @@ msgstr "" "upravitelja paketima \"Synaptic\" ili upišite \"sudo apt-get install -f\" u " "terminalu za ispravljanje ovog problema." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ništa" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1313,11 +1340,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Unesite kompletnu APT liniju repozitorija koji želite " -"dodati\n" +"Unesite kompletnu APT liniju repozitorija koji želite dodati\n" "\n" -"APT linija uključuje vrstu, lokaciju i komponente kanala, na primjer " -"\"deb http://ftp.debian.org sarge main\"." +"APT linija uključuje vrstu, lokaciju i komponente kanala, na primjer " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1403,190 +1430,233 @@ msgstr "Veličina prozora" msgid "Configure the sources for installable software and updates" msgstr "Podesi repozitorije i nadogradnje" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Održavani od strane zajednice" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Neslobodni upogonitelji za uređaje" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Neslobodni softver" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM sa Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Službeno podržani Open Source softver" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Održavani od strane zajednice (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Softver održavan od strane zajednice" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Neslobodni pogonski programi" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Neslobodni upogonitelji za uređaje " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ograničeni softver (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Softver ograničen autorskim pravom ili legalnim pitanjima" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CDROM s Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 osvježenja" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backporti" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom sa Ubuntu 5.04 ' Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Službeno podržani" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 backporti" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Wart Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Održavani od strane zajednice (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodni (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom sa Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Više nisu službeno podržani" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ograničeno autorsko pravo" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 osvježenja" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sigurnosne nadogradnje" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testni)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (nestabilni)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilni programi sa neslobodnim ovisnostima" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" @@ -1637,8 +1707,8 @@ msgstr "DFSG-nekompatibilni programi" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Neke nadogradnje zahtijevaju uklanjanje pojedinih programa. Upotrijebite " #~ "opciju \"Označi sve nadogradnje\" upravitelja paketima \"Synaptic\" ili " @@ -1648,7 +1718,6 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "The following updates will be skipped:" #~ msgstr "Slijedeći paketi će biti preskočeni:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Otprilike je ostalo %li sekundi" @@ -1720,4 +1789,4 @@ msgstr "DFSG-nekompatibilni programi" #~ msgstr "Ubuntu 6.06 LTS osvježenja" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backporti" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS backporti" diff --git a/po/hu.po b/po/hu.po index 05748370..a9ebcb98 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -55,6 +55,7 @@ msgstr "Egy hónap után" msgid "After %s days" msgstr "%s nap után" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s frissítés" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Fő kiszolgáló" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,13 +123,12 @@ msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Az Ön által kijelölt kulcs nem távolítható el. Kérem jelentse ezt hibaként." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +167,7 @@ msgstr "A szükséges meta-csomagok nem frissíthetőek" msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" @@ -178,9 +181,10 @@ msgid "" msgstr "" "A frissítés megtervezése közben feloldhatatlan probléma lépett fel.\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " -"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" +"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" @@ -206,6 +210,7 @@ msgid "" "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" @@ -224,11 +229,11 @@ msgstr "" " A folytatás előtt telepítse a fenti csomagok egyikét a synaptic vagy az apt-" "get használatával." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "A CD hozzáadsa meghiúsult" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +248,15 @@ msgstr "" "A hibaüzenet:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Gyorsítótár beolvasása" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Letölt adatokat a hálózatról a frissítéshez?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +268,11 @@ msgstr "" "Ha gyors vagy olcsó hálózati kapcsolattal rendelkezik, válaszoljon igennel. " "Ha a hálózat elérése drásga, válaszoljon nemmel." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "nem található érvényes tükör" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +292,12 @@ msgstr "" "frissítve. \n" "A \"Nem\" kiválasztása megszakítja a frissítést." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -305,11 +311,11 @@ msgstr "" "Kíván alapértelmezett bejegyzéseket adni a következőhöz: %s? Ha a Nem " "gombott választja, a frissítés félbeszakad." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Érvénytelen csomagtároló információ" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,11 +323,11 @@ msgstr "" "A csomagtároló információ frissítése hibás fájlt eredményezett. Kérem, " "jelentse ezt hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "A külső források letiltva" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -331,11 +337,11 @@ msgstr "" "Újraengedélyezheti őket a frissítés után a Szoftvertulajdonságok eszközzel, " "vagy a Synaptic csomagkezelővel." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Hiba történt a frissítés közben" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,30 +349,31 @@ msgstr "" "Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. " "Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Nincs elég szabad hely a merevlemezen" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) " -"%s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " +"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) %" +"s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " "fájljait a \"sudo apt-get clean\" parancs kiadásával." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -377,14 +384,14 @@ msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " "állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a).\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " -"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" +"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -392,11 +399,11 @@ msgstr "" "A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy " "a telepítő médiát és próbálja újra. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Egyes alkalmazások támogatása megszűnt" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -411,23 +418,23 @@ msgstr "" "tároló), akkor ezek a csomagok a következő lépésben eltávolításra lesznek " "javasolva." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Ezen lé_pés kihagyása" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Eltávolítás" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,26 +442,28 @@ msgstr "" "A frissítés befejező fázisa közben hiba lépett fel. Az alábbi üzenet további " "információkat tartalmaz a hibára vonatkozóan. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "\"%s\" visszaportolt változatának letöltése" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "A frissítés előkészítése meghiúsult" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -464,15 +473,15 @@ msgstr "" "\"update-manager\" csomaghoz és vegye be a /var/log/dist-upgrade/ " "könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Csomagtároló-információk frissítése" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -487,22 +496,23 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Megerősítés kérése" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Frissítés folyamatban" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -524,12 +534,13 @@ msgid "About %s remaining" msgstr "Kb. %s van hátra" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Fájl letöltése: %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Módosítások alkalmazása..." @@ -548,6 +559,7 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -575,9 +587,9 @@ msgstr "Végzetes hiba történt" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Jelentse ezt hibaként és a hibajelentéshez mellékelje a /var/log/dist-" @@ -587,6 +599,7 @@ msgstr "" "mentésre." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -606,7 +619,7 @@ msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d csomag frissítve lesz." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -630,6 +643,7 @@ msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -679,6 +693,7 @@ msgid "%li seconds" msgstr "%li másodperc" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -702,6 +717,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -813,6 +829,7 @@ msgstr "A kiadási megjegyzések nem tölthetők le" msgid "Please check your internet connection." msgstr "Kérjük ellenőrizze az internetkapcsolatát." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nem sikerült futtatni a frissítőeszközt" @@ -917,14 +934,17 @@ msgstr "" "A módosítások listájának letöltése meghiúsult.\n" "Ellenőrizze az internetkapcsolatát." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Fontos biztonsági frissítések" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Ajánlott frissítések" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Javasolt frissítések" @@ -937,6 +957,7 @@ msgstr "Visszaportolt csomagok" msgid "Distribution updates" msgstr "Disztribúciófrissítések" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Egyéb frissítések" @@ -958,6 +979,7 @@ msgstr "_Kijelölések törlése" msgid "_Check All" msgstr "Összes _ellenőrzése" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -991,6 +1013,7 @@ msgstr "Régi verzió: %(old_version)s, új verzió: %(new_version)s" msgid "Version %s" msgstr "%s verzió" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1015,6 +1038,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "A szoftverindex sérült" @@ -1029,19 +1053,23 @@ msgstr "" "csomagkezelőt vagy futtassa a \"sudo apt-get install -f\" parancsot egy " "terminálban a probléma megoldása érdekében." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nincs" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1054,8 +1082,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Saját kezűleg kell megkeresnie a rendelkezésre álló " -"frissítéseket\n" +"Saját kezűleg kell megkeresnie a rendelkezésre álló frissítéseket\n" "\n" "A rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a " "viselkedést az Internetes frissítések lap Szoftverforrások " @@ -1068,8 +1096,8 @@ msgstr "Tartsa naprakészen a rendszerét" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Nem minden frissítés telepíthető \n" -" \n" +"Nem minden frissítés telepíthető\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1286,8 +1314,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Az elérhető szoftverekkel kapcsolatos információk " -"elévültek\n" +"Az elérhető szoftverekkel kapcsolatos információk elévültek\n" "\n" "Szoftverek és frissítések telepítéséhez újonnan felvett vagy módosított " "forrásokból, újra le kell töltenie az elérhető szoftverekkel kapcsolatos " @@ -1323,11 +1351,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Adja meg a forrásként felvenni kívánt tároló teljes APT " -"sorát\n" +"Adja meg a forrásként felvenni kívánt tároló teljes APT sorát\n" "\n" -"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " -"\"deb http://ftp.debian.org sarge main\"." +"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1415,190 +1443,233 @@ msgstr "Az ablak mérete" msgid "Configure the sources for installable software and updates" msgstr "Telepíthető szoftverek és frissítések forrásának beállítása" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Közösségi karbantartású" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Szabadalmazott eszközmeghajtók" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Nem-szabad" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Az Ubuntu 6.10 \"Edgy Eft\" CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "A Canonical által támogatott nyílt forrású szoftverek" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Közösségi karbantartású (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Közösségi karbantartású nyílt forrású szoftverek" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nem-szabad meghajtók" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Szabadalmazott eszközmeghajtók " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Nem-szabad szoftverek (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Szerzői vagy egyéb jogi problémák miatt korlátozott szoftver" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Az Ubuntu 6.06 LTS \"Dapper Drake\"-et tartalmazó CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Visszaportolt frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Az Ubuntu 5.04 \"Hoary Hedgehog\"-ot tartalmazó CD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Hivatalosan támogatott" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 visszaportolt csomagok" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Közösségi karbantartású (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nem-szabad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Az Ubuntu 4.10 \"Warty Warthog\"-ot tartalmazó CD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Hivatalosan már nem támogatott" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Szerzői jogi korlátozás alatt" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 visszaportolt csomagok" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" biztonsági frissítések" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (tesztelés alatt)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instabil)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" @@ -1649,8 +1720,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Néhány frissítés további szoftverek eltávolítását igényli. Használja a " #~ "Synaptic csomagkezelő \"Minden frissítés kijelölése\" funkcióját, vagy " @@ -1660,7 +1731,6 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "The following updates will be skipped:" #~ msgstr "A következő frissítések ki lesznek hagyva:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Kb. %li másodperc van hátra" @@ -1685,7 +1755,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic programokat." +#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic " +#~ "programokat." #~ msgid "Channels" #~ msgstr "Csatornák" @@ -1731,4 +1802,4 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgstr "Ubuntu 6.06 LTS frissítések" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" diff --git a/po/id.po b/po/id.po index ed101ae8..9efb2317 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -54,13 +54,15 @@ msgstr "Setelah satu bulan" msgid "After %s days" msgstr "Setelah %s hari" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "_Instal Update" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,13 +124,12 @@ msgid "Error removing the key" msgstr "Kesalahan menghapus kunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" @@ -181,6 +184,7 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" @@ -208,6 +212,7 @@ msgstr "" "Tidak memungkinkan untuk menginstal paket yang dibutuhkan. Silakan laporkan " "ini sebagai bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" @@ -227,12 +232,12 @@ msgstr "" " Silakan instal dahulu salah satu paket di atas dengan menggunakan synaptic " "atau apt-get sebelum melanjutkan." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Gagal untuk fetch" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -242,15 +247,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Membaca cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -258,11 +263,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Tidak menemukan mirror yang valid" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,11 +286,12 @@ msgstr "" "pilih 'Yes' disini, berkas akan memutakhirkan semua entri '%s' ke '%s'.\n" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Membuat sumber baku?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -298,11 +304,11 @@ msgstr "" "Haruskah entri baku untuk '%s' ditambahkan? Jika anda pilih 'No' " "pemutakhiran akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informasi gudang tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -310,11 +316,11 @@ msgstr "" "Meng-upgrade informasi gudang berakhir di dalam berkas yang tidak benar. " "Silakan laporkan ini sebagai bug." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sumber dari pihak ketiga dilumpukan" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -325,11 +331,11 @@ msgstr "" "dapat mengaktifkan kembali setelah upgrade dengan alat 'software-properties' " "atau dengan synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Kesalahan pada waktu pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -337,11 +343,11 @@ msgstr "" "Terjadi masalah pada waktu pemutakhiran. Ini biasanya karena masalah " "jaringan, silakan periksa koneksi jaringan anda dan ulangi." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Kapasitas cakram tidak mencukupi" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -352,15 +358,16 @@ msgstr "" "cakram pada %s. Kosongkan sampah anda dan hapus paket sementara dari " "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -372,11 +379,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Sistem anda dapat menjadi tidak dapat " "digunakan. Perbaikan sedang berjalan (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -384,11 +391,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Silakan periksa koneksi internet anda atau " "media instalasi dan coba lagi nanti. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -403,23 +410,23 @@ msgstr "" "Jika anda tidak mengaktifkan komponen 'universe' paket ini akan diajurkan " "untuk penghapusan dalam langkah selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Lewati Langkah Ini" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Hapus" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -427,27 +434,29 @@ msgstr "" "Beberapa kesalahan terjadi pada waktu pembersihan. Silakan lihat pesan di " "bawah untuk informasi lebih lanjut. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Memeriksa manajer paket" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Menyiapkan upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -457,16 +466,16 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informasi paket tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -479,22 +488,23 @@ msgstr "" "Ini mengindikasikan adanya kesalahan serius, silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Menanyakan konfigurasi" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Meng-upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -506,23 +516,24 @@ msgid "Fetching is complete" msgstr "Pemutakhiran selesai" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Mengunduh berkas %li dari %li pada %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Sekitar %li menit lagi" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Mengunduh berkas %li dari %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Sahkan perubahan" @@ -538,8 +549,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -564,37 +576,38 @@ msgstr "Terjadi kesalahan fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-" -"upgrade.log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade " -"akan dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam " -"/etc/apt/sources.list.distUpgrade." +"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-upgrade." +"log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade akan " +"dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam /etc/apt/" +"sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -618,6 +631,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -645,12 +659,12 @@ msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Sekitar %li hari %li jam %li menit lagi" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Sekitar %li jam %li menit lagi" @@ -665,6 +679,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -686,6 +701,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -799,6 +815,7 @@ msgstr "Tidak dapat mengunduh catatan luncuran" msgid "Please check your internet connection." msgstr "Silakan periksa koneksi internet anda." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Tidak dapat menjalankan alat upgrade" @@ -871,12 +888,12 @@ msgstr "" "dengan server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Mengunduh berkas %li dari %li dengan %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Mengunduh berkas %li dari %li dengan %s/s" @@ -901,15 +918,18 @@ msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Pemutakhiran lewat Internet" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -925,6 +945,7 @@ msgstr "Ubuntu 6.06 LTS Backports" msgid "Distribution updates" msgstr "_Lanjutkan Upgrade" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -949,6 +970,7 @@ msgstr "" msgid "_Check All" msgstr "_Periksa" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -974,15 +996,16 @@ msgid "Checking for updates" msgstr "_Instal Update" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versi baru: %s (Ukuran: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Versi %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -999,14 +1022,15 @@ msgid "" "information on upgrading." msgstr "" "Anda tidak akan mendapatkan perbaikan keamanan atau pemutakhiran penting " -"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat " -"http://www.ubuntu.com untuk informasi lebih lanjut." +"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." +"ubuntu.com untuk informasi lebih lanjut." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" @@ -1021,19 +1045,23 @@ msgstr "" "Silakan gunakan manajer paket \"Synaptic\" atau jalankan \"sudo apt-get " "install -f\" dalam terminal untuk memperbaiki persoalan ini." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1313,8 +1341,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Masukkan baris lengkap APT dari kanal yang ingin anda tambah " -"\n" +"Masukkan baris lengkap APT dari kanal yang ingin anda tambah \n" "\n" "Baris APT menyertakan tipe, lokasi dan komponen dari kanal, sebagai contoh " "\"deb http://ftp.debian.org sarge main\"." @@ -1407,210 +1435,253 @@ msgstr "Ukuran jendela" msgid "Configure the sources for installable software and updates" msgstr "Mengatur kanal perangkat lunak dan pemutakhiran lewat internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Tidak-bebas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Updates" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Tidak-bebas (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Tidak-bebas (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi disokong" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Tidak-bebas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Hak cipta terlarang" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "Perangkat Lunak yang sesuai dengan DFSG tapi tergantung pada Perangkat Lunak " "Tidak-Bebas" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" @@ -1634,7 +1705,8 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Mengupgrade ke Ubuntu 6.06 LTS" +#~ "Mengupgrade ke Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1664,18 +1736,17 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Beberapa pemutakhiran butuh penghapusan perangkat lunak yang ada. Gunakan " #~ "fungsi \"Mark All Upgrades\" dari paket manajer paket \"Synaptic\" atau " -#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk memutakhirkan " -#~ "sistem anda." +#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk " +#~ "memutakhirkan sistem anda." #~ msgid "The following updates will be skipped:" #~ msgstr "Pemutakhiran berikut akan dilewati:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Sekitar %li detik lagi" @@ -1740,4 +1811,4 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgstr "_Custom" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS" diff --git a/po/it.po b/po/it.po index 6ec5d7ba..54e1bdde 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -56,6 +56,7 @@ msgstr "Dopo un mese" msgid "After %s days" msgstr "Dopo %s giorni" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s aggiornamenti" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Server principale" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Errore nel rimuovere la chiave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La chiave selezionata non può essere rimossa. Notificare questo evento come " "bug." @@ -158,8 +160,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Il sistema contiene pacchetti danneggiati che non possono essere aggiustati " -"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-" -"get\" per risolvere il problema." +"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" +"\" per risolvere il problema." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -169,6 +171,7 @@ msgstr "Impossibile aggiornare i meta-pacchetti richiesti" msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" @@ -186,6 +189,7 @@ msgstr "" "Notificare questo evento come bug riguardo il pacchetto «update-manager» e " "includere nella notifica i file della cartella «/var/log/dist-upgrade»." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" @@ -213,6 +217,7 @@ msgstr "" "Non è stato possibile installare un pacchetto richiesto. Notificare questo " "evento come bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" @@ -231,11 +236,11 @@ msgstr "" " Prima di procedere, usare \"synaptic\" o \"apt-get\" per installare uno dei " "pacchetti sopra menzionati." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Aggiunta del CD fallita" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -250,15 +255,15 @@ msgstr "" "Il messaggio di errore era:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Lettura della cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Recuperare dalla rete i dati per l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +275,11 @@ msgstr "" "Se si possiede un accesso alla rete veloce e economico rispondere \"Sì\". " "Altrimenti scegliere \"No\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Non è stato trovato alcun mirror valido" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +299,12 @@ msgstr "" "tutte le voci «%s» verranno aggiornate a «%s»\n" "Scegliendo «No» l'aggiornamento verrà annullato." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +318,11 @@ msgstr "" "Aggiungere le voci predefinite per «%s»? Selezionando «No», l'aggiornamento " "verrà annullato." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informazioni sul repository non valide" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,25 +330,25 @@ msgstr "" "L'aggiornamento delle informazioni sul repository ha generato un file non " "valido. Notificare questo evento come bug." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sorgenti di terze parti disabilitate" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -"Sono state disabilitate alcune voci di terze parti nel proprio file " -"«sources.list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo " -"strumento «software-properties» o con synaptic." +"Sono state disabilitate alcune voci di terze parti nel proprio file «sources." +"list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo strumento " +"«software-properties» o con synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Errore durante l'aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +356,11 @@ msgstr "" "Si è verificato un problema durante l'aggiornamento. Solitamente si tratta " "di problemi di rete, controllare la connessione di rete e riprovare." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Spazio libero su disco insufficiente" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +371,16 @@ msgstr "" "il cestino e rimuovere i pacchetti temporanei di precedenti installazione " "usando \"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Impossibile installare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -385,14 +392,14 @@ msgstr "" "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" "a).\n" "\n" -"Riportare questo bug per il pacchetto 'update-manager' includendo i file in " -"/var/log/dist-upgrade/ nel rapporto." +"Riportare questo bug per il pacchetto 'update-manager' includendo i file in /" +"var/log/dist-upgrade/ nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +407,11 @@ msgstr "" "Interruzione immediata dell'aggiornamento. Controllare la connessione a " "internet o il supporto di installazione e riprovare. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Supporto terminato per alcune applicazioni" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +426,23 @@ msgstr "" "(«universe»), verrà suggerita la rimozione di questi pacchetti al prossimo " "passo." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Salta questo passo" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Rimuovi" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Errore durante il commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,44 +450,46 @@ msgstr "" "Si sono verificati alcuni problemi durante la pulizia. Leggere il messaggio " "seguente per maggiori informazioni. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Ripristino dello stato originale del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Recupero del backport di «%s»" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Controllo del gestore di pacchetti" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Preparazione dell'aggiornamento fallito" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/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." +"evento come bug per il pacchetto «update-manager» includendo i file in «/var/" +"log/dist-upgrade/» nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aggiornamento delle informazioni sui repository" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -495,22 +504,23 @@ msgstr "" "pacchetto «update-manager» includendo i file in «/var/log/dist-upgrade/» nel " "rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Richiesta di conferma" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -538,6 +548,7 @@ msgstr "Recupero del file %li di %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applicazione dei cambiamenti" @@ -556,6 +567,7 @@ msgstr "" "pacchetto «update-manager» e di includere i file in «/var/log/dist-upgrade/» " "nella segnalazione." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -583,18 +595,19 @@ msgstr "Si è verificato un errore fatale" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Segnalare questo evento come un bug e includere nella notifica i file " -"/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. " -"L'aggiornamento viene interrotto.\n" -"Il file sources.list originale è stato salvato in " -"/etc/apt/sources.list.distUpgrade." +"Segnalare questo evento come un bug e includere nella notifica i file /var/" +"log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. L'aggiornamento " +"viene interrotto.\n" +"Il file sources.list originale è stato salvato in /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -641,6 +654,7 @@ msgstr "" "Per prevenire la perdita di dati, chiudere tutte le applicazioni e i " "documenti aperti." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -690,6 +704,7 @@ msgid "%li seconds" msgstr "%li secondi" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -711,6 +726,7 @@ msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -730,8 +746,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Riavviare il sistema per completare l'aggiornamento" +msgstr "Riavviare il sistema per completare l'aggiornamento" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -822,6 +837,7 @@ msgstr "Impossibile scaricare le note di rilascio" msgid "Please check your internet connection." msgstr "Controllare la propria connessione a internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossibile eseguire lo strumento di aggiornamento" @@ -927,14 +943,17 @@ msgstr "" "Fallito lo scaricamento dell'elenco dei cambiamenti. \n" "Verificare la connessione a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Aggiornamenti di sicurezza importanti" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aggiornamenti raccomandati" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aggiornamenti proposti" @@ -947,6 +966,7 @@ msgstr "Backport" msgid "Distribution updates" msgstr "Aggiornamenti della distribuzione" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Altri aggiornamenti" @@ -968,6 +988,7 @@ msgstr "_Seleziona tutti" msgid "_Check All" msgstr "_Deseleziona tutti" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1002,6 +1023,7 @@ msgstr "Dalla versione %(old_version)s alla %(new_version)s" msgid "Version %s" msgstr "Versione %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1026,6 +1048,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'indice del software è danneggiato" @@ -1040,19 +1063,23 @@ msgstr "" "dei pacchetti \"Synaptic\" o eseguire in un terminale \"sudo apt-get install " "-f\" per risolvere il problema." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Niente" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1423,203 +1450,246 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura le sorgenti per gli aggiornamenti e per il software installabile" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenuto dalla comunità" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Driver proprietari per i dispositivi" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software con restrizioni" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software open source supportato da Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenuto dalla comunità (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software open source mantenuto dalla comunità" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Driver non liberi" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Driver proprietari per dispositivi " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software con restrizioni (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software con restrizioni per copyright o motivi legali" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Drapper Drake»" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aggiornamenti di backport" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aggiornamenti per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backport per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supportati ufficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aggiornamenti per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backport per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenuti dalla comunità (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libero (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Software non più supportato ufficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright con restrizioni" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aggiornamenti per Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backport per Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aggiornamenti di sicurezza per Debian 3.1 «Sarge»" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibile con le DFSG con dipendenze non libere" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." #~ msgstr "" -#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte le " -#~ "personalizzazioni apportate dall'utente o da uno script." +#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte " +#~ "le personalizzazioni apportate dall'utente o da uno script." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" -#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con una " -#~ "connessione DSL da 1Mbit" +#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con " +#~ "una connessione DSL da 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" @@ -1638,7 +1708,6 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software con restrizioni per copyright o questioni legali" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Scaricamento del file %li di %li a velocità sconosciuta" @@ -1687,18 +1756,17 @@ msgstr "Software non compatibile con le DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. Utilizzare " -#~ "la funzione \"Marca tutti gli aggiornamenti\" del gestore di pacchetti " -#~ "\"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade\" in un " -#~ "terminale per aggiornare completamente il sistema." +#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. " +#~ "Utilizzare la funzione \"Marca tutti gli aggiornamenti\" del gestore di " +#~ "pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade" +#~ "\" in un terminale per aggiornare completamente il sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "I seguenti aggiornamenti saranno tralasciati:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Circa %li secondi rimanenti" @@ -1707,7 +1775,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come bug." +#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come " +#~ "bug." #~ msgid "Upgrading Ubuntu" #~ msgstr "Aggiornamento di Ubuntu" @@ -1726,8 +1795,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" prima " -#~ "di continuare." +#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" " +#~ "prima di continuare." #~ msgid "Channels" #~ msgstr "Canali" @@ -1780,27 +1849,27 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Nessuna voce valida trovata" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Durante la scansione delle informazioni sui repository, non è stata trovata " -#~ "alcuna voce valida per l'aggiornamento.\n" +#~ "Durante la scansione delle informazioni sui repository, non è stata " +#~ "trovata alcuna voce valida per l'aggiornamento.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in uno " -#~ "stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg --" -#~ "configure -a)." +#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in " +#~ "uno stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg " +#~ "--configure -a)." #~ msgid "" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Notificare questo evento come bug e includere nella notifica i file \"~/dist-" -#~ "upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene interrotto " -#~ "ora. " +#~ "Notificare questo evento come bug e includere nella notifica i file \"~/" +#~ "dist-upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene " +#~ "interrotto ora. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1820,8 +1889,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analisi del sistema in uso\n" #~ "\n" @@ -1829,8 +1898,8 @@ msgstr "Software non compatibile con le DFSG" #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Gli aggiornamenti software possono correggere errori, eliminare " #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." @@ -1841,18 +1910,18 @@ msgstr "Software non compatibile con le DFSG" #~ "installed therefor" #~ msgstr "" #~ "L'installazione automatica è limitata ai soli aggiornamenti di sicurezza " -#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software \"unattended-" -#~ "upgrades\" deve perciò essere installato" +#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software " +#~ "\"unattended-upgrades\" deve perciò essere installato" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Inserire la riga APT completa del canale che si vuole " -#~ "aggiungere\n" +#~ "Inserire la riga APT completa del canale che si vuole aggiungere\n" #~ "\n" #~ "La riga APT contiene il tipo, la posizione e le sezioni di un canale, ad " #~ "esempio \"deb http://ftp.debian.org sarge main\"" @@ -1871,8 +1940,8 @@ msgstr "Software non compatibile con le DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Download delle modifiche in " -#~ "corso\n" +#~ "Download delle modifiche in corso\n" #~ "\n" #~ "Devo scaricare le modifiche dal server centrale" @@ -1914,11 +1983,11 @@ msgstr "Software non compatibile con le DFSG" #~ "permette di verificare l'integrità del software che scarichi." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati di " -#~ "aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " +#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati " +#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " #~ "proprietario. " #~ msgid "Add repository..." @@ -1946,8 +2015,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Dimensione massima in MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Ripristina le chiavi di default della distribuzione.\n" #~ "Questo non modificherà le chiavi installate dal'utente." @@ -1979,13 +2048,13 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Aggiornamenti Disponibili\n" #~ "\n" -#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando il " -#~ "pulsante Installa." +#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando " +#~ "il pulsante Installa." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancella il download delle modifiche" @@ -2020,7 +2089,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " +#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " #~ msgid "Choose a key-file" #~ msgstr "Scegli un file di chiave" @@ -2045,7 +2115,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr[1] "" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Hai selezionato %s pacchetti su %s, dimensione %s" #~ msgstr[1] "" @@ -2053,8 +2124,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Gli aggiornamenti sono in fase di applicazione." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Puoi eseguire una sola applicazione di gestione dei pacchetti " #~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione." @@ -2070,27 +2141,28 @@ msgstr "Software non compatibile con le DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione che " -#~ "stai usando non riceverà più aggiornamenti di sicurezza o altri " -#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org per " -#~ "informazioni riguardo all'aggiornamento." +#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione " +#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri " +#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org " +#~ "per informazioni riguardo all'aggiornamento." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "È disponibile una nuova release di Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su " -#~ "http://www.ubuntulinux.org/ per informazioni sull'aggiornamento" +#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://" +#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento" #~ msgid "Never show this message again" #~ msgstr "Non mostrare più questo messaggio" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" -#~ "Modifiche non trovate, il server potrebbe non essere stato ancora aggiornato." \ No newline at end of file +#~ "Modifiche non trovate, il server potrebbe non essere stato ancora " +#~ "aggiornato." diff --git a/po/ja.po b/po/ja.po index 58fca3a6..bfa72652 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -56,13 +56,15 @@ msgstr "1ヶ月後" msgid "After %s days" msgstr "%s 日後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "アップデートをインストール中" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "メインサーバ" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -114,19 +117,19 @@ msgstr "選択したファイルのインポートエラー" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" +msgstr "" +"選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "鍵削除のエラー" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -153,7 +156,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれています。 Synaptic や apt-get を使って最初に修正してください。" +"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" +"す。 Synaptic や apt-get を使って最初に修正してください。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -163,6 +167,7 @@ msgstr "要求されたメタパッケージがアップグレードできませ msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" @@ -176,6 +181,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" @@ -186,9 +192,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"" -"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワークの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケージが" -"表示されます。" +"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワー" +"クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" +"ジが表示されます。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -199,8 +205,10 @@ msgstr "'%s' がインストールできません" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "要求されたパッケージのインストールができません。バグとして報告してください。 " +msgstr "" +"要求されたパッケージのインストールができません。バグとして報告してください。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" @@ -213,15 +221,17 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケージ " -"が含まれていません。また、実行している ubuntu のバージョンが検出できません。 \n" -" 開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインストールしてください。" +"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケー" +"ジ が含まれていません。また、実行している ubuntu のバージョンが検出できませ" +"ん。 \n" +" 開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをイン" +"ストールしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "CDの追加に失敗しました" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -230,34 +240,37 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"CD の追加に失敗したため、アップグレードは終了されます。この CD が正規の Ubuntu CD の場合は、このことをバグとして報告してください。\n" +"CD の追加に失敗したため、アップグレードは終了されます。この CD が正規の " +"Ubuntu CD の場合は、このことをバグとして報告してください。\n" "\n" "エラーメッセージ:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "キャッシュを読み込み中" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "アップグレードをするためにネットワーク経由でデータを取得しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"アップグレードは、ネットワークを利用して最新のアップデートを確認し、現在の CD に無いパッケージを取得することができます。\n" -"高速、または安価なネットワークアクセスがある場合は、ここで 'はい' を選んでください。そのようなネットワークが無い場合は 'いいえ' を選んでください。" +"アップグレードは、ネットワークを利用して最新のアップデートを確認し、現在の " +"CD に無いパッケージを取得することができます。\n" +"高速、または安価なネットワークアクセスがある場合は、ここで 'はい' を選んでく" +"ださい。そのようなネットワークが無い場合は 'いいえ' を選んでください。" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "正しいミラーが見つかりません" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -268,16 +281,19 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりませんでした。内部ミラーないしミラー情報が古いと思われます。\n" +"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりま" +"せんでした。内部ミラーないしミラー情報が古いと思われます。\n" "\n" -"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリを '%s' エントリにアップデートします。 " -"'いいえ' を選択するとアップデートをキャンセルします。" +"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリ" +"を '%s' エントリにアップデートします。 'いいえ' を選択するとアップデートを" +"キャンセルします。" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -287,64 +303,72 @@ msgid "" msgstr "" "'sources.list' をスキャン中、 '%s' の正しいエントリが見つかりませんでした。\n" "\n" -"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートをキャンセルします。" +"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" +"キャンセルします。" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "リポジトリ情報が無効です" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報告してください。" +msgstr "" +"リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" +"告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "公式ではないソースが無効になりました" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、アップグレード後に 'ソフトウェアの配布元' ツールか " -"Synaptic を使用してください。" +"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、" +"アップグレード後に 'ソフトウェアの配布元' ツールか Synaptic を使用してくださ" +"い。" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "アップデート中にエラー発生" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -msgstr "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。ネットワーク接続をチェックし、再びアップデートしてください。" +msgstr "" +"アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" +"ネットワーク接続をチェックし、再びアップデートしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "ディスクの空き領域が足りません" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してください。ごみ箱を空にし、'sudo apt-get clean' " -"コマンドを実行して以前インストールした一時パッケージを削除してください。" +"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してくださ" +"い。ごみ箱を空にし、'sudo apt-get clean' コマンドを実行して以前インストールし" +"た一時パッケージを削除してください。" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -352,27 +376,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"アップグレードを中断しました。システムが使用できない状態になっている可能性があります。ただいま修正を実行中です (dpkg --configure -" -"a)。\n" +"アップグレードを中断しました。システムが使用できない状態になっている可能性が" +"あります。ただいま修正を実行中です (dpkg --configure -a)。\n" "\n" -"このバグを 'update-manager' パッケージのバグとして報告して下さい。その際、バグ報告に /var/log/dist-upgrade/ " -"中のファイルを含めて下さい。" +"このバグを 'update-manager' パッケージのバグとして報告して下さい。その際、バ" +"グ報告に /var/log/dist-upgrade/ 中のファイルを含めて下さい。" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "アップグレードをダウンロードできません" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "アップグレードを中断しました。インターネット接続またはインストールメディア(CD-ROMなど)をチェックし。再試行してください。 " +msgstr "" +"アップグレードを中断しました。インターネット接続またはインストールメディア" +"(CD-ROMなど)をチェックし。再試行してください。 " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -381,53 +407,59 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"インストールされているこれらのパッケージは、もう公式にサポートされておらず、コミュニティサポートになっています('universe')。\n" +"インストールされているこれらのパッケージは、もう公式にサポートされておらず、" +"コミュニティサポートになっています('universe')。\n" "\n" -"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを提案します。" +"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" +"提案します。" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "不要なパッケージを削除しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "このステップをスキップ(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "削除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "コミット中にエラー" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧ください。 " +msgstr "" +"クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧" +"ください。 " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "システムを元に戻し中" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "パッケージマネージャをチェック中" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "アップグレードの準備中" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -435,16 +467,16 @@ msgid "" "upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "リポジトリ情報をアップデート" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "無効なパッケージ情報" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -455,22 +487,23 @@ msgstr "" "パッケージ情報のアップデートのあと、重要パッケージ '%s' が見つかりません。\n" "このメッセージは深刻なエラーです。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "確認する" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "アップグレード中" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索する" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -482,23 +515,24 @@ msgid "Fetching is complete" msgstr "アップデートが完了しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "およそ残り %li 分" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "%i のうち %i をダウンロード中" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "変更を適用中" @@ -514,6 +548,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -540,16 +575,18 @@ msgstr "重大なエラーが発生しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"~/dist-upgrade.log と ~/dist-upgrade-apt.log " -"を含めて不具合として報告してください。アップグレードは中断しました。\n" -"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されています。" +"~/dist-upgrade.log と ~/dist-upgrade-apt.log を含めて不具合として報告してくだ" +"さい。アップグレードは中断しました。\n" +"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されていま" +"す。" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -569,7 +606,7 @@ msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 個のパッケージがアップグレードされます。" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -583,12 +620,17 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "アップグレードの取得とインストールには数時間かかり、今後一切キャンセルはできません。" +msgstr "" +"アップグレードの取得とインストールには数時間かかり、今後一切キャンセルはでき" +"ません。" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてください。" +msgstr "" +"データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" +"さい。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -636,6 +678,7 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -655,6 +698,7 @@ msgstr "アップグレードが終了しました。再起動が必要ですが #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -669,11 +713,13 @@ msgid "" msgstr "" "アップグレードをキャンセルしますか?\n" "\n" -"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。アップグレードを再開することを強くおすすめします。" +"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。" +"アップグレードを再開することを強くおすすめします。" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "アップグレードを完了するためにシステムの再起動が必要です" +msgstr "" +"アップグレードを完了するためにシステムの再起動が必要です" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -764,6 +810,7 @@ msgstr "リリースノートををダウンロードできません" msgid "Please check your internet connection." msgstr "インターネット接続を確認してください。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "アップグレードツールを実行できません" @@ -805,7 +852,9 @@ msgstr "抽出に失敗しました" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題です。 " +msgstr "" +"アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題で" +"す。 " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -815,7 +864,9 @@ msgstr "検証に失敗しました" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "アップグレードの検証に失敗しました。ネットワーク接続もしくはサーバに問題があるかもしれません。 " +msgstr "" +"アップグレードの検証に失敗しました。ネットワーク接続もしくはサーバに問題があ" +"るかもしれません。 " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -825,12 +876,15 @@ msgstr "認証に失敗しました" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題です。 " +msgstr "" +"アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題で" +"す。 " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "%(total)li のうち %(current)li 番目のファイルをダウンロード中 (%(speed)s/秒)" +msgstr "" +"%(total)li のうち %(current)li 番目のファイルをダウンロード中 (%(speed)s/秒)" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -854,17 +908,22 @@ msgstr "" msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "変更点の取得に失敗しました。インターネットに接続されているか確認してください。" +msgstr "" +"変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" +"い。" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -880,6 +939,7 @@ msgstr "Ubuntu 6.04 バックポート" msgid "Distribution updates" msgstr "アップグレードを再開する(_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -904,6 +964,7 @@ msgstr "すべてのチェックをはずす(_U)" msgid "_Check All" msgstr "チェック(_C)" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -929,7 +990,7 @@ msgid "Checking for updates" msgstr "インストールできるアップデートをチェック" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "新しいバージョン: %s (サイズ: %s)" @@ -938,6 +999,7 @@ msgstr "新しいバージョン: %s (サイズ: %s)" msgid "Version %s" msgstr "バージョン %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -953,7 +1015,8 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの Ubuntu Linux にアップグレードしてください。 \n" +"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの " +"Ubuntu Linux にアップグレードしてください。\r\n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" #: ../UpdateManager/UpdateManager.py:863 @@ -961,6 +1024,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "新しいディストリビューション '%s' にアップグレードできます" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" @@ -971,22 +1035,27 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッケージマネージャを使用するか、 まずこの問題を解決するために " -"\"sudo apt-get install -f\" コマンドをターミナルで実行してください。" +"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッ" +"ケージマネージャを使用するか、 まずこの問題を解決するために \"sudo apt-get " +"install -f\" コマンドをターミナルで実行してください。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "なし" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1001,9 +1070,8 @@ msgid "" msgstr "" "アップデートの情報を手動でチェックしてください\n" "\n" -"" -"システムはアップデートを自動的にチェックしません。この動作の変更は、ソフトウェアの配布元インターネットアップデートタブで行いま" -"す。" +"システムはアップデートを自動的にチェックしません。この動作の変更は、ソフト" +"ウェアの配布元インターネットアップデートタブで行います。" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1012,8 +1080,8 @@ msgstr "システムを最新の状態にする" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"一部のアップデートだけがインストールされました \n" -" \n" +"一部のアップデートだけがインストールされました\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1064,7 +1132,9 @@ msgstr "ソフトウェアのアップデート" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能を提供します。" +msgstr "" +"ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能" +"を提供します。" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1159,7 +1229,9 @@ msgstr "インターネットアップデート" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールされます。" +msgstr "" +"公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールさ" +"れます。" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1221,7 +1293,8 @@ msgid "" msgstr "" "チャンネルの情報が古いです\n" "\n" -"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うため、チャンネルを再読み込みしてください。\n" +"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うた" +"め、チャンネルを再読み込みしてください。\n" "\n" "続けるためには、インターネット接続が有効になっている必要があります。" @@ -1256,8 +1329,8 @@ msgid "" msgstr "" "追加したい完全な APT line を入力してください。\n" "\n" -"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。例:\"deb http://ftp.debian.org " -"sarge main\"" +"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。" +"例:\"deb http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1301,7 +1374,9 @@ msgstr "アップデートマネージャー" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "現在使用中のディストリビューションの最新バージョンが存在する場合自動的にチェックし、可能ならアップグレードを提案する" +msgstr "" +"現在使用中のディストリビューションの最新バージョンが存在する場合自動的に" +"チェックし、可能ならアップグレードを提案する" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1314,7 +1389,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込みしなければなりません。このオプションはその場合の催促をしないようにします。" +"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込み" +"しなければなりません。このオプションはその場合の催促をしないようにします。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1344,196 +1420,240 @@ msgstr "ウィンドウのサイズ" msgid "Configure the sources for installable software and updates" msgstr "ソフトウェアチャンネルとインターネットアップデートを設定" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "コミュニティによるメンテナンス" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "デバイス用のプロプライエタリなドライバ" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "制限のあるソフトウェア" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' のCD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonical によってサポートされるオープンソースソフトウェア" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "コミュニティによるメンテナンス (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "コミュニティによるメンテナンスされるオープンソースソフトウェア" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "フリーではないドライバ" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "デバイス用のプロプライエタリなドライバ " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "制限されたソフトウェア (Multiuniverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' の CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "バックポートされたアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 バックポート" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 バックポート" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiuniverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' のCD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "いくつかのソフトウェアはもう公式にサポートされません" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 バックポート" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian·3.1·\"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian·3.1·\"Sarge\"·セキュリティアップデート" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian·\"Etch\"·(testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian·\"Sid\"·(unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" @@ -1542,7 +1662,6 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "ダウンロード中: 速度不明で %li のうち %li" @@ -1566,7 +1685,8 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Ubuntu 6.06 LTS にアップデート中" +#~ "Ubuntu 6.06 LTS にアップデート中" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1587,23 +1707,25 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "システムを解析中です\n" #~ "\n" -#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機能を提供します。" +#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機" +#~ "能を提供します。" #~ msgid "Oficially supported" #~ msgstr "公式サポート" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグレードするためにはパッケージマネージャ \"Synaptic\" の " -#~ "\"すべてのアップグレードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を実行してください。" +#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグ" +#~ "レードするためにはパッケージマネージャ \"Synaptic\" の \"すべてのアップグ" +#~ "レードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を" +#~ "実行してください。" #~ msgid "The following updates will be skipped:" #~ msgstr "これらのパッケージはアップグレードされません:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "およそ残り %li 秒" @@ -1623,11 +1745,14 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "詳細を表示" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "ソフトウェアマネージメントツールは同時に1つしか実行することができません" +#~ msgstr "" +#~ "ソフトウェアマネージメントツールは同時に1つしか実行することができません" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してください。" +#~ msgstr "" +#~ "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してく" +#~ "ださい。" #~ msgid "Channels" #~ msgstr "チャンネル" @@ -1679,9 +1804,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "Ubuntu 6.06 LTS バックポート" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" -#~ msgstr "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリがみつかりました。\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" +#~ msgstr "" +#~ "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリが" +#~ "みつかりました。\n" #~ msgid "Repositories changed" #~ msgstr "リポジトリが変更されました" @@ -1689,17 +1816,20 @@ msgstr "DFSGに適合しないソフトウェア" #~ 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 "変更点を有効にするためにパッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?" +#~ msgstr "" +#~ "変更点を有効にするためにパッケージリストをサーバから再取得する必要がありま" +#~ "す。今すぐ実行しますか?" #~ msgid "Sections" #~ msgstr "セクション:" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. Please try " -#~ "'sudo apt-get install -f' or Synaptic to fix your system." +#~ "The upgrade aborts now. Your system can be in an unusable state. Please " +#~ "try 'sudo apt-get install -f' or Synaptic to fix your system." #~ msgstr "" -#~ "アップグレードを中断しました。システムが不安定な状態になっています。システムを修正するために 'sudo apt-get install -f ' " -#~ "または Synapticを試してみてください。" +#~ "アップグレードを中断しました。システムが不安定な状態になっています。システ" +#~ "ムを修正するために 'sudo apt-get install -f ' または Synapticを試してみて" +#~ "ください。" #~ msgid "Remove obsolete Packages?" #~ msgstr "古いパッケージ削除しますか?" @@ -1708,18 +1838,19 @@ msgstr "DFSGに適合しないソフトウェア" #~ "Upgrading to Ubuntu \"Dapper\" " #~ "6.04" #~ msgstr "" -#~ "Ubuntu·\"Dapper\"·6.04 " -#~ "にアップグレード中" +#~ "Ubuntu·\"Dapper\"·6.04 にアップグ" +#~ "レード中" #~ msgid "" #~ "Checking for available updates\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "アップデートをチェック中\n" #~ "\n" -#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去し、新機能を追加します。" +#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去" +#~ "し、新機能を追加します。" #~ msgid "Sections:" #~ msgstr "セクション:" @@ -1762,11 +1893,12 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" -#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量がありません。再び試行する前に 'sudo apt-get clean' " -#~ "などで空き容量を確保してください" +#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量があり" +#~ "ません。再び試行する前に 'sudo apt-get clean' などで空き容量を確保してくだ" +#~ "さい" #~ msgid "Error fetching the packages" #~ msgstr "パッケージ取得中にエラー" @@ -1774,7 +1906,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " -#~ msgstr "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの問題です。ネットワークを確認して再試行してください。 " +#~ msgstr "" +#~ "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの" +#~ "問題です。ネットワークを確認して再試行してください。 " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1799,9 +1933,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "本当にキャンセルしますか?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " -#~ msgstr "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作を継続することを強く忠告します。 " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " +#~ msgstr "" +#~ "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作" +#~ "を継続することを強く忠告します。 " #, fuzzy #~ msgid "Sources" @@ -1835,15 +1971,18 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "認証鍵\n" #~ "\n" -#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完全なものか確認することができます。" +#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完" +#~ "全なものか確認することができます。" #~ msgid "A_uthentication" #~ msgstr "認証(_U)" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " -#~ msgstr "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経由で鍵を取得し、信頼される持ち主のものか確認してください。 " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " +#~ msgstr "" +#~ "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経" +#~ "由で鍵を取得し、信頼される持ち主のものか確認してください。 " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "一時ファイルを自動的に削除する(_T)" @@ -1864,9 +2003,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "最大量(MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." -#~ msgstr "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更によりユーザが追加した鍵が失われることはありません。" +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." +#~ msgstr "" +#~ "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更により" +#~ "ユーザが追加した鍵が失われることはありません。" #~ msgid "Set _maximum size for the package cache" #~ msgstr "パッケージキャッシュの最大量を設定する(_M)" @@ -1892,26 +2033,27 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "アップデートがあります\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" +#~ "のパッケージがインストールされます。" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. If " -#~ "you are behind an internet connection that needs to be started by hand (e.g. " -#~ "a modem) you should use this button so that update-manager knows about new " -#~ "updates." +#~ "If you have a permanent internet connection this is done automatically. " +#~ "If you are behind an internet connection that needs to be started by hand " +#~ "(e.g. a modem) you should use this button so that update-manager knows " +#~ "about new updates." #~ msgstr "" #~ "サーバからパッケージ情報を読み込み直します。\n" #~ "\n" -#~ "" -#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデムなどでそうではないなら、アップデートマネージャに新しいアップデートがあるかどうかを" -#~ "知らせるため、このボタンを使用して手動で行う必要があります。" +#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデム" +#~ "などでそうではないなら、アップデートマネージャに新しいアップデートがあるか" +#~ "どうかを知らせるため、このボタンを使用して手動で行う必要があります。" #~ msgid "Binary" #~ msgstr "バイナリ" @@ -1932,7 +2074,8 @@ msgstr "DFSGに適合しないソフトウェア" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" または \"apt-get\" を使用して修正してください。" +#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" ま" +#~ "たは \"apt-get\" を使用して修正してください。" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "全てのパッケージをアップグレードすることは不可能です。" @@ -1940,21 +2083,27 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対処がいるようです。Synaptic \"Smart " -#~ "Upgrade\"か\"apt-get dist-upgrade\"を実行して問題を修正してください。" +#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対" +#~ "処がいるようです。Synaptic \"Smart Upgrade\"か\"apt-get dist-upgrade\"を実" +#~ "行して問題を修正してください。" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "変更点は見つかりませんでした。サーバはまだアップデートされていないようです。" +#~ msgstr "" +#~ "変更点は見つかりませんでした。サーバはまだアップデートされていないようで" +#~ "す。" #~ msgid "The updates are being applied." #~ msgstr "アップデートされました。" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." -#~ msgstr "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケーションマネージャを終了してください。" +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." +#~ msgstr "" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケー" +#~ "ションマネージャを終了してください。" #~ msgid "Updating package list..." #~ msgstr "アップデートされるパッケージのリスト..." @@ -1964,22 +2113,22 @@ msgstr "DFSGに適合しないソフトウェア" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "新しいUbuntu " -#~ "Linuxにアップグレードしてください。現在お使いのシステムにはセキュリティフィクスや危急のアップデートはすでに提供されていません。アッ" -#~ "プグレードに関する情報は http://www.ubuntulinux.org/ を見てください。" +#~ "新しいUbuntu Linuxにアップグレードしてください。現在お使いのシステムにはセ" +#~ "キュリティフィクスや危急のアップデートはすでに提供されていません。アップグ" +#~ "レードに関する情報は http://www.ubuntulinux.org/ を見てください。" #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntuの新しいリリース版があります!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするために http://www.ubuntulinux.org/ " -#~ "をご覧ください。" +#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするため" +#~ "に http://www.ubuntulinux.org/ をご覧ください。" #~ msgid "Never show this message again" #~ msgstr "このメッセージを二度と表示しない" @@ -1988,10 +2137,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "排他的なロックができません" #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や aptitudeのような他のパッケージマネージャを終了してください。" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や " +#~ "aptitudeのような他のパッケージマネージャを終了してください。" #~ msgid "Initializing and getting list of updates..." #~ msgstr "アップデートリストを取得中..." @@ -2008,9 +2158,10 @@ msgstr "DFSGに適合しないソフトウェア" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "利用可能なアップデート\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" \ No newline at end of file +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" +#~ "のパッケージがインストールされます。" diff --git a/po/ka.po b/po/ka.po index 0dee0d27..d3a1b6a9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -57,6 +57,7 @@ msgstr "ერთი თვის შემდგომ" msgid "After %s days" msgstr "%s დღის შემდეგ" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "%s განახლება" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "მთავარი სერვერი" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,13 +128,12 @@ msgid "Error removing the key" msgstr "გასღების წაშლა ვერ მოხერხდა" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "ამორჩეული გასაღების წაშლა ვერ მოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -171,6 +173,7 @@ msgstr "საჭირო მეტა-პაკეტების განა msgid "A essential package would have to be removed" msgstr "ამით საჭირო პაკეტი წაიშლება" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -185,9 +188,10 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "მოხდა დაუდგენელი შეცდომა განახლებისათვის მზადებისას. შეატყობინეთ ეს ხარვეზი " -"'update-manager' პაკეტის საშუალებით, შეტყობინებას დაურთეთ ფაილები " -"/var/log/dist-upgrade/-დან." +"'update-manager' პაკეტის საშუალებით, შეტყობინებას დაურთეთ ფაილები /var/log/" +"dist-upgrade/-დან." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" @@ -210,9 +214,9 @@ msgstr "'%s' ვერ დაყენდა" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორც ხარვეზი. " +msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორც ხარვეზი. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ შეირჩა" @@ -231,12 +235,12 @@ msgstr "" "სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " "გამოყენებით." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "ვერ განხორციელდა CD-ს დამატება" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +250,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "ქეშის კითხვა" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "ნივიღოთ ქსელიდან მონაცემები განახლების შესახებ?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +270,11 @@ msgstr "" "დაეთანხმეთ განახლების მიღებას, ან უარი თქვით, თუ თქვენი ქსელი ძალიან ნელია " "ან ძვირი." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "არ მოინახა შესაბამისი სარკე" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,12 +293,13 @@ msgstr "" "ყველა ჩანაწერი %s'-დან '%s'-მდე განახლდება.\n" "უარის შემთხვევაში განახლება არ მოხდება." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 #, fuzzy msgid "Generate default sources?" msgstr "გავუშვათ ნაგულისხმევი წყაროების გენერაცია?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +313,11 @@ msgstr "" "დავამატოთ ნაგულისხმევი ჩანაწერები '%s'-სთვის? უარის შემთხვევაში განახლება არ " "მოხდება." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "რეპოზიტორიების ინფორმაცია არასწორია" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,12 +325,12 @@ msgstr "" "რეპოზიტორიების განახლების შედეგად დაზიანდა ფაილი. შეატყობინეთ ეს როგორხ " "ხარვეზი." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "Third party sources disabled" msgstr "მესამე მხარის წყაროები გამორთულია" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -335,11 +340,11 @@ msgstr "" "მესამე მხარის ზოგი წყარო sources.list-ში გამორთულია. განახლების შემდეგ " "შეგეძლებათ მათი ჩართვა 'software-properties' ან synaptic-ის საშუალებით." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "განახლებისას მოხდა შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -347,11 +352,11 @@ msgstr "" "განახლებისას მოხდა შეცდომა. როგორც წესი ეს არის კავშირის პრობლემა, შეამოწმეთ " "თქვენი კავშირი და სცადეთ კიდევ ერთხელ." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "დისკზე არ არის საკმარისი თავისუფალი ადგილი" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,16 +367,17 @@ msgstr "" "გამოიყენეთ 'sudo apt-get clean' სანაგვიდან ფაილებისა და წინა ინსტალაციის " "დროებითი პაკეტების წასაშლელად." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 #, fuzzy msgid "Could not install the upgrades" msgstr "განახლებების დაყენება ვერ ხერხდება" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,24 +392,23 @@ msgstr "" "შეატყობინეთ ხარვეზის შესახებ 'update-manager' პაკეთის საშუალებით, " "შეტყობინებაში ჩართეთ ფაილები var/log/dist-upgrade/-დან." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 #, fuzzy msgid "Could not download the upgrades" msgstr "განახლებების ჩამოტვირთვა ვერ ხერხდება" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" -"განახლება შეწყვეტილია. შეამოწმეთ ხელახლა ქსელი და საინსტალაციო დისკი. " +msgstr "განახლება შეწყვეტილია. შეამოწმეთ ხელახლა ქსელი და საინსტალაციო დისკი. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "ზოგ პროგრამას მხარდაჭერა აღარა აქვს" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -417,51 +422,53 @@ msgstr "" "თუ თქვენ არა გაქვთ საზოგადოების უზრუნველყოფა (universe), მაშინ შემდეგ ეტაპზე " "შემოთავაზებული იქნება ამ პაკეტების წაშლა." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "წავშალოთ მოძველებული პაკეტები?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "ეტაპის გა_მოტოვება" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_წაშლა" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 #, fuzzy msgid "Error during commit" msgstr "შეცდომა გადაცემისას" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 #, fuzzy msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "შეცდომა გასუფთავებისას. დაწვრილებით იხილეთ ქვემოთ. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "სისტემის საწყისი მდგომარეობის აღდგენა" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "%s'-ის მიღება backport-იდან" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "ვამოწმებ პროგრამულ მენეჯერს" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "განახლების ჩადგმის მომზადება" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -470,15 +477,15 @@ msgid "" msgstr "" "მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "რეპოზტორიის ინფორმაციის განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "გაფუჭებული პაკეტის შესახებ ინფორმაცია" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,25 +495,26 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 #, fuzzy msgid "Asking for confirmation" msgstr "-თვის" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "მიმდინარეობს განახლებების ჩაყენება" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 #, fuzzy msgid "Searching for obsolete software" msgstr "ვეძებ -თვის" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 #, fuzzy msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -535,6 +543,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "ცვლილებების დამტკიცება" @@ -550,6 +559,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -576,15 +586,16 @@ msgstr "A შეცდომა" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "a და შემცველობა და -ში ახლა თავდაპირველი სია -ში სია." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "A არსებითი -სკენ" @@ -621,6 +632,7 @@ msgstr "საათი და ნებისმიერი დრო." msgid "To prevent data loss close all open applications and documents." msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -668,6 +680,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -688,6 +701,7 @@ msgstr "ტოლია დასრულდა და a ტოლია -ს #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -802,6 +816,7 @@ msgstr "შეუძლებელია ვერსიის შენიშ msgid "Please check your internet connection." msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ კავშირი." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს" @@ -906,15 +921,18 @@ msgid "" "Please check your Internet connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -930,6 +948,7 @@ msgstr "Ubuntu 5.10 დამატებითი პროგრამებ msgid "Distribution updates" msgstr "განახლება _გაგრძელება" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -954,6 +973,7 @@ msgstr "" msgid "_Check All" msgstr "შ_ემოწმება" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -979,15 +999,16 @@ msgid "Checking for updates" msgstr "განახლებების _დაყენება" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "ახალი ვერსია: %s (ზომა: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "ვერსია %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1012,6 +1033,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" @@ -1025,19 +1047,23 @@ msgid "" msgstr "" "ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1409,203 +1435,248 @@ msgstr "ფანჯარა ზომა" msgid "Configure the sources for installable software and updates" msgstr "კონფიგურირება და" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 -#, fuzzy +#, fuzzy, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 განახლებები" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "არათავისუფალი (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "არათავისუფალი (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "არათავისუფალი (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "არათავისუფალი (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "არა" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "შეზღუდული" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 -#, fuzzy +#, fuzzy, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/ s s s s s" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "უსაფრთხოება" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 #, fuzzy msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "პროგრამა თავისუფალი დამოკიდებულებანი" +#. CompDescription #: ../data/channels/Debian.info.in:57 #, fuzzy msgid "Non-DFSG-compatible Software" @@ -1658,8 +1729,8 @@ msgstr "პროგრამა" #, fuzzy #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "ის გამოყენება მონიშვნა ყველა ის Synaptic ან sudo -ში a ტერმინალი -სკენ " #~ "განახლება." @@ -1738,4 +1809,4 @@ msgstr "პროგრამა" #~ msgstr "Ubuntu 6.06 LTS განახლებები" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" diff --git a/po/ko.po b/po/ko.po index 4c875ced..74bb9644 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" @@ -54,6 +54,7 @@ msgstr "한달 후에" msgid "After %s days" msgstr "%s일 후에" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s 업데이트" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "주 서버" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "키 삭제 오류" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "선택한 키를 지울 수 없습니다. 버그를 보고하십시오." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -151,7 +153,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시냅틱이나 apt-get을 사용하여 복구하십시오." +"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" +"냅틱이나 apt-get을 사용하여 복구하십시오." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -161,6 +164,7 @@ msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" msgid "A essential package would have to be removed" msgstr "필수적인 패키지를 제거해야만 합니다." +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." @@ -172,11 +176,13 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다.\n" +"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니" +"다.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " -"파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" +"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "패키지 인증 오류" @@ -187,8 +193,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 " -"목록은 다음과 같습니다." +"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우" +"라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 목록은 다음과 같습니다." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -201,6 +207,7 @@ msgid "" "bug. " msgstr "요청한 패키지를 설치할 수 없습니다. 버그를 보고하여 주십시오. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "메타 패키지를 추측할 수 없습니다" @@ -213,15 +220,16 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없으며, 현재 실행중인 " -"우분투의 버전을 알아낼 수 없습니다.\n" -" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니다." +"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없" +"으며, 현재 실행중인 우분투의 버전을 알아낼 수 없습니다.\n" +" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니" +"다." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "CD 추가하기 실패" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -230,35 +238,37 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우분투 CD를 사용하고 있었다면 이 버그를 보고해 " -"주십시오.\n" +"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우" +"분투 CD를 사용하고 있었다면 이 버그를 보고해 주십시오.\n" "\n" "오류 메시지:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "캐시를 읽고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "업그레이드할 때 네트워크에서 자료를 받을까요?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 패키지를 받을 수 있습니다.\n" -"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." +"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 " +"패키지를 받을 수 있습니다.\n" +"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워" +"크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "적합한 미러 서버를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -269,17 +279,20 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 " -"오래됐을 때 이러한 문제가 일어날 수 있습니다.\n" +"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니" +"다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 오래됐을 때 이러한 문제" +"가 일어날 수 있습니다.\n" "\n" -"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%s' 항목으로 업데이트 합니다.\n" +"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%" +"s' 항목으로 업데이트 합니다.\n" "'아니오'를 선택하면 업데이트가 취소됩니다." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -289,65 +302,72 @@ msgid "" msgstr "" "'sources.list'를 검색했지만 '%s'에 적합한 항목을 찾지 못했습니다.\n" "\n" -"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소됩니다." +"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소" +"됩니다." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "저장소 정보가 올바르지 않습니다" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 주십시오." +msgstr "" +"저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 " +"주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "써드 파티 소스는 이용할 수 없습니다" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-properties' 도구나 시냅틱으로 " -"업그레이드 한 후에 다시 사용가능하게 할 수 있습니다." +"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-" +"properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" +"니다." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "업데이트 중 오류" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." +"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" +"니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "디스크 여유 공간이 충분하지 않습니다." -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 바랍니다. 휴지통을 비우시고 'sudo apt-get " -"clean' 명령으로 이전 설치 과정 중에 사용했던 임시 패키지들을 삭제하시기 바랍니다." +"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 " +"바랍니다. 휴지통을 비우시고 'sudo apt-get clean' 명령으로 이전 설치 과정 중" +"에 사용했던 임시 패키지들을 삭제하시기 바랍니다." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -355,27 +375,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. (dpkg --configure -a)를 실행하여 " -"복구하십시오.\n" +"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " +"(dpkg --configure -a)를 실행하여 복구하십시오.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " -"파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" +"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "업그레이를 다운로드 할 수 없습니다." -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도하십시오. " +msgstr "" +"업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" +"하십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "일부 프로그램의 지원이 종료되었습니다" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -383,67 +405,73 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니티를 통해서 여전히 지원받을 수 있습니다.\n" +"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니" +"티를 통해서 여전히 지원받을 수 있습니다.\n" "\n" -"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 패키지들을 삭제하도록 제안할 것입니다." +"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 " +"패키지들을 삭제하도록 제안할 것입니다." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "구식 패키지를 삭제하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "이 단계 건너뛰기(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "제거(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "커밋 도중 오류 발생" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인할 수 있습니다. " +msgstr "" +"정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인" +"할 수 있습니다. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "시스템을 원래의 상태로 복구하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "'%s'의 백포트를 받고 있습니다" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "패키지 관리자를 확인하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "저장소 정보를 업데이트하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "잘못된 패키지 정보" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -453,25 +481,26 @@ msgid "" "bugreport." msgstr "" "패키지 정보를 업데이트한 다음에 필수 패키지 '%s'를 더이상 찾을 수 없습니다.\n" -"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-" -"upgrade/에 있는 파일을 포함하여 주십시오." +"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리" +"고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "확인을 요청하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "업그레이드하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "구식 소프트웨어를 검색하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "완전히 시스템을 업그레이드하였습니다." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -499,6 +528,7 @@ msgstr "%li의 %li 파일 내려받는 중" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "변경 사항을 적용하고 있습니다" @@ -513,9 +543,11 @@ 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 bugreport." msgstr "" -"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 " -"/var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시" +"오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시" +"오." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -541,16 +573,18 @@ msgstr "심각한 오류 발생" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main.log 파일과 /var/log/dist-" -"upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드가 중단되었습니다.\n" +"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main." +"log 파일과 /var/log/dist-upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드" +"가 중단되었습니다.\n" "원래의 sources.list는 /etc/apt/sources.list.distUpgrade에 저장되어 있습니다." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -584,12 +618,15 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에도 취소할 수 없습니다." +msgstr "" +"업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에" +"도 취소할 수 없습니다." #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -637,6 +674,7 @@ msgid "%li seconds" msgstr "%li초" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -656,6 +694,7 @@ msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -670,7 +709,8 @@ msgid "" msgstr "" "실행 중인 업그레이드를 취소하시겠습니까?\n" "\n" -"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이드를 계속 하시기를 강력히 건의합니다." +"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이" +"드를 계속 하시기를 강력히 건의합니다." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -765,6 +805,7 @@ msgstr "릴리즈 정보를 다운로드 할 수 없습니다." msgid "Please check your internet connection." msgstr "인터넷 연결 상태를 확인하십시오." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "업그레이드 도구를 실행할 수 없습니다." @@ -806,7 +847,9 @@ msgstr "압축 풀기 실패" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있" +"습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -816,7 +859,9 @@ msgstr "확인 실패" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습" +"니다. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -826,12 +871,15 @@ msgstr "인증 실패" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니" +"다. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" +msgstr "" +"%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -854,14 +902,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "중요한 보안 업데이트" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "추천하는 업데이트" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "제안하는 업데이트" @@ -874,6 +925,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "배포판 업데이트" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "기타 업데이트" @@ -895,6 +947,7 @@ msgstr "전체 선택 취소(_U)" msgid "_Check All" msgstr "전체 선택(_C)" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -928,6 +981,7 @@ msgstr "버전 %(old_version)s에서 %(new_version)s(으)로" msgid "Version %s" msgstr "버전 %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -943,14 +997,16 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 " -"http://www.ubuntu.com에서 보실 수 있습니다." +"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업" +"그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" +"서 보실 수 있습니다." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'을(를) 설치할 수 있습니다" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." @@ -961,22 +1017,26 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 \"sudo apt-get install -f\"를 " -"실행하여 이 문제를 먼저 해결하십시오." +"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 " +"\"sudo apt-get install -f\"를 실행하여 이 문제를 먼저 해결하십시오." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "없음" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -991,7 +1051,8 @@ msgid "" msgstr "" "업데이트 확인을 직접 해야 합니다.\n" "\n" -"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭의 소프트웨어 소스에서 설정할 수 있습니다." +"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭" +"의 소프트웨어 소스에서 설정할 수 있습니다." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1038,7 +1099,8 @@ msgid "" msgstr "" "배포판 업그레이드를 수행하여 가능한 많은 업데이트를 설치합니다. \n" "\n" -"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에서 실행했기 때문일 수 있습니다." +"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에" +"서 실행했기 때문일 수 있습니다." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1052,7 +1114,9 @@ msgstr "소프트웨어 업데이트" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공합니다." +msgstr "" +"소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" +"합니다." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1117,10 +1181,12 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 " -"우분투 프로젝트로 일주일에 한번씩 익명으로 전송합니다.\n" +"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 " +"설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 우분투 프로젝트로 일주일" +"에 한번씩 익명으로 전송합니다.\n" "\n" -"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위를 매기는데 사용합니다." +"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위" +"를 매기는데 사용합니다." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1208,7 +1274,8 @@ msgid "" msgstr "" "이용할 수 있는 소프트웨어에 대한 정보가 오래되었습니다.\n" "\n" -"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" +"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이" +"용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" "\n" "계속하기 위해서는 인터넷 연결이 필요합니다." @@ -1240,10 +1307,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" +"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" "\n" -"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb http://ftp.debian.org " -"sarge main\"" +"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb " +"http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1285,7 +1353,8 @@ msgstr "업데이트 관리자" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." +msgstr "" +"현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1297,8 +1366,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 " -"합니다." +"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 " +"합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 합니다." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1326,199 +1395,246 @@ msgstr "창 크기" msgid "Configure the sources for installable software and updates" msgstr "설치할 수 있는 소프트웨어와 업데이트를 위한 소스를 설정" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "커뮤니티에서 관리" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "장치의 독점 드라이버" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "제한된 소프트웨어" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "커뮤니티에서 관리 (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "커뮤니티에서 관리하는 오픈 소스 소프트웨어" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "비자유 드라이버" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "장치의 독점 드라이버 " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "제한된 소프트웨어 (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "우분투 5.10 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "우분투 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog' 씨디롬" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "공식적으로 지원함" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "우분투 5.04 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "우분투 5.04 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "우분투 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "커뮤니티에서 관리 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "비자유 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog' 씨디롬" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "더 이상 공식적으로 지원하지 않음" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "저작권이 제한됨" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "우분투 4.10 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "우분투 4.10 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "우분투 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "데비안 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "데비안 3.1 \"Sarge\" 보안 업데이트" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "데비안 \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "데비안 \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG 호환이 되지만 비자유 소프트웨어에 의존하는 소프트웨어" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." -#~ msgstr "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것을 잃어버릴 것입니다." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." +#~ msgstr "" +#~ "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것" +#~ "을 잃어버릴 것입니다." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" -#~ msgstr "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로는 약 %s이(가) 걸립니다." +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" +#~ msgstr "" +#~ "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로" +#~ "는 약 %s이(가) 걸립니다." #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "변경 사항 목록이 아직 없습니다. 잠시 후 다시 시도해 주십시오." @@ -1526,10 +1642,12 @@ msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." -#~ msgstr "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." +#~ msgstr "" +#~ "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시" +#~ "오." #~ msgid "By Canonical supported Open Source software" #~ msgstr "Canonical이 지원하는 오픈 소스 소프트웨어" #~ msgid "By copyright or legal issues restricted software" -#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" \ No newline at end of file +#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" diff --git a/po/ku.po b/po/ku.po index 316cd309..cf2c6d52 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: ElîxanLoran \n" "Language-Team: Kurdish \n" @@ -55,6 +55,7 @@ msgstr "Piştî mehekê" msgid "After %s days" msgstr "Piştî %s roj" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s rojanekirin" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pêşkêşkera Mak" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Di dema rakirina mifteyan de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê yekê weke " "çewtiyekê ragihîne." @@ -168,6 +170,7 @@ msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" msgid "A essential package would have to be removed" msgstr "Divê pakêteke pêwist jê were rakirin" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Rojanekirin nikaribû were hesabkirin" @@ -181,9 +184,10 @@ msgid "" msgstr "" "Dema bilindkirin hesab dikir çewtiyeke ku nayê veçirandin derkete holê.\n" "\n" -"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li " -"/var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." +"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li /" +"var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Di piştrastkirina çend paketan de çewtî derket" @@ -210,6 +214,7 @@ msgstr "" "Pakêta pêwist nehate barkirin. Ji kerema xwe re vê yekê weke çewtiyekê " "ragihîne. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakêta-meta nehate kifşkirin" @@ -228,11 +233,11 @@ msgstr "" "Ji kerema xwe re berî ku tu berdewam bikî, bi synaptic yan jî bi apt-getê " "pakêtên ku li jor in yekê saz bike." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Dema têxistina CDyê de çewtî" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -247,15 +252,15 @@ msgstr "" "Peyama çewtiyê:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Pêşbîr tê xwendin" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Ji bo bilindkirinê bila dane ji toreyê were daxistin?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +272,11 @@ msgstr "" "Heke gihiştina te ya torê ne lez be yan jî ne biha be divê tu pêl 'Ere' " "bike. Yan jî pêl 'Na' bike." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Şewqdereke derbasdar nehate dîtin." -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +296,12 @@ msgstr "" "rojanekirin.\n" "Heke tu bibêjî 'Na' wê rojanekirin betal bibe." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Bile çavkaniyên rawêjî pêk bên?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,11 +315,11 @@ msgstr "" "Ji bo '%s' bila têketinên heyî lê zêde bibe? Heke tu bibêjî 'Na' dê " "rojanekirin were betalkirin." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Agahiya depoyê ne derbasdar e" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -321,22 +327,22 @@ msgstr "" "Karê rojanekirina agahiya depoyê, dosyeyeke nederbasdar çêkir. Ji kerema xwe " "re vê çewtiyê ragihîne." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Ji çavkaniyên partiyên sêyemîn têkilî hate birîn." -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Di rojanekirinê de çewtî derket" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +350,11 @@ msgstr "" "Di dema rojanekirinê de çewtiyek derket. Ev çewtî piranî pirsgirêka torê ye, " "ji kerema xwe re girêdana xwe ya torê kontrol bike û ji nû ve biceribîne." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Cihê vala yê diskê têr nake" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +365,16 @@ msgstr "" "bike. Çopa xwe vala bikin û bi 'sudo apt-get clean' pakêtên derbasdar yên " "sazkirinên berê rake." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Tu dixwazî dest bi bilindkirinê bikî?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Sazkirina hemû bilindkirinan biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -381,11 +388,11 @@ msgstr "" "Ji kerema xwe re bo pakêta 'update-manager' vê çewtiyê ragihîne. Dosyeyên ku " "li /var/log/dist-upgrade/ de ye jî li peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Daxistina bilindkirinan serneket" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +400,11 @@ msgstr "" "Rojanekirin niha tê betalkirin. Ji kerema xwe girêdana înternetê an medyaya " "sazkirinê kontrol bike û ji nû ve biceribîne. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Ji bo hin sepanan piştrastkirin qediya" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -406,23 +413,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Bila pakêtên ku nayên bikaranîn werine rakirin?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Vê gavê derbas bike" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Jê bibe" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Di dema xebatê de çewtî" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -430,41 +437,43 @@ msgstr "" "Di dema paqijkirinê de hin pirsgirêk derketin. Ji bo agahiyan ji kerema xwe " "re li peyama jêr binihêre. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Vedigere rewşa pergala orjînal" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Bireveberiya paketan tê kontrol kirin" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Amadekrinên nûjenkirinê biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Agahiyên depoyê tê rojanekirin" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Agahiya paketê nederbasdar e" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -473,28 +482,29 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng " -"'%s' êdî nayê dîtin.\n" +"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng '%" +"s' êdî nayê dîtin.\n" "Dibe ku ev çewtiyeke girîng e, ji kerema xwe re bo pakêta 'update-manager' " "vê çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li " "peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pirsa piştrastkirinê" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Tê bilindkirin" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Li nivîsbariya kevin tê gerandin" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -523,6 +533,7 @@ msgstr "Dosyan dadixe %li daxistin ji %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Guherandin tê bi kar anîn" @@ -541,6 +552,7 @@ msgstr "" "çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li peyama " "xwe ya çewtiyê zêde bike." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -566,9 +578,9 @@ msgstr "Çewtiyeke giran derket" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ji kerema xwe re vê çewtiyê ragihîne.Dosyeyên ku li /var/log/dist-upgrade/ " @@ -578,6 +590,7 @@ msgstr "" "hate tomarkirin." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -600,7 +613,7 @@ msgstr[0] "Dê %d pakêt were bilindkirin" msgstr[1] "Dê %d pakêt werine bilindkirin" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -622,6 +635,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -671,6 +685,7 @@ msgid "%li seconds" msgstr "%li çirke" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -691,6 +706,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -710,8 +726,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide " -"destpêkirin" +"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide destpêkirin" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -802,6 +818,7 @@ msgstr "Nîşeyên weşanê nehate daxistin" msgid "Please check your internet connection." msgstr "Ji kerema xwe girêdana înternetê kontrol bike." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Amûra bilindkirinê nikaribû bimeşîne" @@ -897,14 +914,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Rojanekirinên ewlekariyê yên girîng" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rojanekirinên têne pêşniyarkirin" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Rojanekirinên hatine pêşniyarkirin" @@ -917,6 +937,7 @@ msgstr "Nivîsbariyên bi paş de şandî" msgid "Distribution updates" msgstr "Rojanekirinên dîstrîbusiyonê" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Rojanekirinên din" @@ -938,6 +959,7 @@ msgstr "Yekê Jî _Hilnebijêre" msgid "_Check All" msgstr "Hemûyan _Hilbijêrî" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -963,7 +985,7 @@ msgid "Checking for updates" msgstr "Rojanekirin têne venihartin." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" @@ -972,6 +994,7 @@ msgstr "Guhertoya nû: %s (Mezinahî: %s)" msgid "Version %s" msgstr "Guherto %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -996,6 +1019,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Weşana belavkariya nû dikare bigihêje '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Pêrista nivîsbariyê xera bûye" @@ -1008,23 +1032,27 @@ msgid "" msgstr "" "Sazkirin an jî rakirina nivîsbariyê qet ne gengaz e. Ji kerema xwe berî her " "tiştî vê pirsgirêkê bi gerînendeyê pakêtan ya \"Synaptic\" and jî bi fermana " -"\"sudo apt-get install -f\" re di termînalê de çareser bike. \n" -" \n" +"\"sudo apt-get install -f\" re di termînalê de çareser bike.\r\n" +"\r\n" "— By ElîxanLoran on 2006-08-25 06:29:14 UTC (2 more)" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ne yek jî" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1372,189 +1400,233 @@ msgstr "Mezinahiyê paceyê" msgid "Configure the sources for installable software and updates" msgstr "Ji bo nivîsbarî û rojanekirinên têne sazkirin çavkaniyan veava bike" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yên ji aliyê komekê ber çav hatiye derbaskirin" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Ji bo cîhazan ajokerên ku çavkaniyên wan girtî ne" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Neazad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdroma Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Yên ji aliyê koman lê hatine nihêrtin" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 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/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neazad (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Ji bo cîhazan ajokarên xwedî-bawername " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neazad (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Nivîsbariya bi mafên weşan û belavkirinê sînor kirî" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdroma Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Rojanekirinên paş de hatine kişandin" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Rojanekirinên Ewlekariyê yên Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Rojanekirina Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdroma Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Bi piştgiriya fermî" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Rojanekirinên Ewlekariyên yên Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Rojanekirinên Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yên ji aliyê koman ve lê tê nihêrîn (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne-azad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdroma Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Êdi bi awayekî fermî nayê destekkirin" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Mafê kopîkrinê yê sînorkirî" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekariyê" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Rojanekirinên Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 nivîsbariyên bi paş de kişandî (Backports)" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Rojanekirinên Ewlekariyê" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-nivîsbariya hevgirtî ya ne azad" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "nivîsbariya hevgirtî ya ne li gorî -DFSG" @@ -1585,4 +1657,4 @@ msgstr "nivîsbariya hevgirtî ya ne li gorî -DFSG" #~ msgstr "Kanal" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/lt.po b/po/lt.po index aa34ab8f..bc848fe7 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"(n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,6 +55,7 @@ msgstr "Po mėnesio" msgid "After %s days" msgstr "Po %s dienų" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s atnaujinimai" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,13 +124,12 @@ msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Negalima atnaujinti reikiamų metapaketų" msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" @@ -181,6 +184,7 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" @@ -206,6 +210,7 @@ msgid "" msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 #, fuzzy msgid "Can't guess meta-package" @@ -226,12 +231,12 @@ msgstr "" " Prieš tęsdami pirmiausia įdiekite vieną iš šių paketų naudodamiesi " "„synaptic“ arba „apt-get“." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Atsiųsti nepavyko" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -241,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Nuskaitoma talpykla" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -257,12 +262,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, fuzzy msgid "No valid mirror found" msgstr "Nerasta tinkamo įrašo" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -274,11 +279,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Ar sukurti numatytųjų programinės įrangos saugyklų sąrašą?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -287,11 +293,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Saugyklų informacija netinkama" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -299,11 +305,11 @@ msgstr "" "Saugyklos informacijos atnaujinimo rezultatas buvo sugadinta byla. " "Praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Trečiųjų šalių programinės įrangos saugyklos išjungtos" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -314,11 +320,11 @@ msgstr "" "Juos galėsite vėl įjungti, kai baigsite atnaujinimą su „programų savybių“ " "įrankiu arba „Synaptic“ paketų tvarkykle." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Klaida atnaujinant" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -326,11 +332,11 @@ msgstr "" "Atnaujinant iškilo problema. Tai greičiausiai kokia nors tinklo problema, " "todėl iš naujo patikrinkite tinklo jungtis ir bandykite dar." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Diske nepakanka laisvos vietos" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -338,15 +344,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -358,11 +365,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. " "Dabar bus vykdomas atkūrimas (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -370,11 +377,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo " "laikmeną ir bandykite dar. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -389,23 +396,23 @@ msgstr "" "Jei nesate įjungę „universe“ skyriaus, šie paketai bus siūlomi pašalinimui " "kitame žingsnyje." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Praleisti šį žingsnį" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "P_ašalinti" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -413,27 +420,29 @@ msgstr "" "Išvalymo metu iškilo problema. Daugiau informacijos rasite žemiau esančiame " "pranešime. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Perkraunama sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Tikrinama paketų valdyklė" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Ruošiamas atnaujinimas" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -443,16 +452,16 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Netinkama paketo informacija" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -464,22 +473,23 @@ msgstr "" "paketo „%s“.\n" "Tai labai rimta problema, praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Klausiama patvirtinimo" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Atnaujinama" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -491,7 +501,7 @@ msgid "Fetching is complete" msgstr "Atnaujinimas užbaigtas" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" @@ -502,12 +512,13 @@ msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Atsiunčiamas failas %li iš %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Pritaikomi pakeitimai" @@ -523,8 +534,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -549,20 +561,21 @@ msgstr "Įvyko lemtinga klaida" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Praneškite apie tai kaip klaidą ir prie pranešimo pridėkite „/var/log/dist-" "upgrade.log“ bei „/var/log/dist-upgrade-apt.log“ bylas. Atnaujinimas dabar " "bus nutrauktas.\n" -"Jūsų originalioji „sources.list“ byla buvo išsaugota " -"„/etc/apt/sources.list.distUpgrade“ aplanke." +"Jūsų originalioji „sources.list“ byla buvo išsaugota „/etc/apt/sources.list." +"distUpgrade“ aplanke." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bus pašalintas %s paketas." @@ -570,7 +583,7 @@ msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bus įdiegtas %s naujas paketas." @@ -578,7 +591,7 @@ msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bus atnaujintas %s paketas." @@ -586,7 +599,7 @@ msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -610,6 +623,7 @@ msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -657,6 +671,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -678,6 +693,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -698,8 +714,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš " -"naujo" +"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš naujo" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -794,6 +810,7 @@ msgstr "Nepavyko atsiųsti laidos informacijos" msgid "Please check your internet connection." msgstr "Patikrinkite savo Interneto ryšį." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nepavyko paleisti atnaujinimo priemonės" @@ -896,14 +913,17 @@ msgstr "" "Nepavyko atsiųsti pakeitimų sąrašo. \n" "Patikrinkite Interneto ryšį." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Svarbūs saugumo atnaujinimai" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rekomenduojami atnaujinimai" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Testuojami atnaujinimai" @@ -916,6 +936,7 @@ msgstr "Naujos programos" msgid "Distribution updates" msgstr "Distributyvo atnaujinimai" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Kiti atnaujinimai" @@ -939,13 +960,14 @@ msgstr "" msgid "_Check All" msgstr "_Patikrinti" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" @@ -965,7 +987,7 @@ msgid "Checking for updates" msgstr "Ieškoma atnaujinimų" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nauja versija: %s (Dydis: %s)" @@ -974,6 +996,7 @@ msgstr "Nauja versija: %s (Dydis: %s)" msgid "Version %s" msgstr "Versija %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -998,6 +1021,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nauja distributyvo versija '%s' yra išleista" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" @@ -1012,19 +1036,23 @@ msgstr "" "pasinaudokite „Synaptic“ arba terminale įvykdykite komandą „sudo apt-get " "install -f“, norėdami ištaisyti šią problemą." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1051,8 +1079,8 @@ msgstr "" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"Klaida skanuojant CD \n" -" \n" +"Klaida skanuojant CD\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1399,197 +1427,239 @@ msgstr "" "Nustatykite programinės įrangos įdiegimo šaltinius bei atnaujinimus iš " "interneto" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Prižiūrima bendruomenės" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Ne Laisva (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD diskas su Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS „Dapper Drake“" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Prižiūrima bendruomenės (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Bendruomenės prižiūrima laisva programinė įranga" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ne Laisva (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Nuosavybinės įrenginių valdyklės " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ne Laisva (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD diskas su Ubuntu 6.06 LTS „Dapper Drake“" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Naujos ir atnaujintos programos" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD diskas su Ubuntu 5.10 „Breezy Badger“" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Naujos programos Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 „Hoary Hedgehog“" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD diskas Ubuntu 5.04 „Hoary Hedgehog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficialiai palaikoma" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Naujos programos Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 „Warty Warthog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne Laisva (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD diskas su Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Apribotos autorinės teisės" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Naujos programos Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 „Sarge“ saugumo atnaujinimai" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian „Etch“ (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.lt.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian „Sid“ (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" -"Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" @@ -1613,7 +1683,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atnaujinama į Ubuntu 6.06 LTS" +#~ "Atnaujinama į Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1635,21 +1706,21 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "" #~ "Ieškoma galimų atnaujinimų\n" #~ "\n" -#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " -#~ "spragas bei suteikti naujas funkcijas." +#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti " +#~ "saugumo spragas bei suteikti naujas funkcijas." #~ msgid "Oficially supported" #~ msgstr "Prižiūrima oficialiai" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Kai kuriems atnaujinimams reikia pašalinti programinę įrangą. Naudokitės " #~ "funkcija „Žymėti visus atnaujinimus“ paketų tvarkyklėje „Synaptic­“ arba " -#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų sistema " -#~ "būtų visiškai atnaujinta." +#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų " +#~ "sistema būtų visiškai atnaujinta." #~ msgid "The following updates will be skipped:" #~ msgstr "Šie atnaujinimai nebus įdiegti:" @@ -1727,8 +1798,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #, fuzzy #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Skanuojant Jūsų saugyklos informaciją nebuvo rasta tinkamo atnaujinimo " #~ "įrašo.\n" @@ -1740,17 +1811,19 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "Skyriai:" #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Jūs turite patys įkelti naujausią informaciją apie " -#~ "atnaujinimus\n" +#~ "Jūs turite patys įkelti naujausią informaciją apie atnaujinimus\n" #~ "\n" #~ "Jūsų sistema automatiškai neieško atnaujinimų. Šią elgseną galite " -#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos savybės“." +#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos " +#~ "savybės“." #~ msgid "Reload the latest information about updates" -#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" \ No newline at end of file +#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" diff --git a/po/lv.po b/po/lv.po index f1bfe622..8ef74981 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-09-05 20:00+0000\n" "Last-Translator: Raivis Dejus \n" "Language-Team: Latvian \n" @@ -58,6 +58,7 @@ msgstr "Pēc viena mēneša" msgid "After %s days" msgstr "Pēc %s dienām" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,6 +66,7 @@ msgstr "%s atjauninājumi" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,6 +76,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Galvenais serveris" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Kļūda aizvācot atslēgu" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Jūsu izvēlēto atslēgu nevar noņemt. Lūdzu, ziņojiet par šo kļūdu." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,6 +163,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nevar aprēķināt atjauninājumu" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -195,6 +199,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -208,11 +213,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -222,15 +227,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -238,11 +243,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -254,11 +259,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -267,42 +273,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -310,15 +316,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -327,21 +334,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -350,63 +357,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Izņemt" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -416,22 +425,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,6 +469,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -474,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -497,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -546,6 +559,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -593,6 +607,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +627,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,6 +734,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -807,14 +824,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -827,6 +847,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -848,6 +869,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -883,6 +905,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -904,6 +927,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -915,19 +939,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nekas" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1255,187 +1283,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiāli atbalstītie" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Sabiedrības uzturētie (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Maksas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Saistītie autortiesību" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Select _All" -#~ msgstr "Izvēlēties _Visu" \ No newline at end of file +#~ msgstr "Izvēlēties _Visu" diff --git a/po/mk.po b/po/mk.po index 880eecd4..2d3da4e4 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -56,13 +56,15 @@ msgstr "После еден месец" msgid "After %s days" msgstr "После %s дена" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Инсталирам надградби..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,8 +128,7 @@ msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." @@ -167,6 +169,7 @@ msgstr "Не може да се надградат потребните мета msgid "A essential package would have to be removed" msgstr "Важен пакет мора да се отстрани" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да се одреди надградбата" @@ -182,6 +185,7 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при автентикација на некои пакети" @@ -209,6 +213,7 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не може да се погоди мета пакетот" @@ -222,11 +227,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -236,15 +241,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Читање на кешот" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,12 +257,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, fuzzy msgid "No valid mirror found" msgstr "Не е пронајден валиден помошен сервер" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -276,12 +281,13 @@ msgstr "" "изберете „Да“, ќе ги надградам '%s' до '%s' записи.\n" "Ако изберете „не“, надградбата ќе прекине." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 #, fuzzy msgid "Generate default sources?" msgstr "Врати ги стандардните клучеви" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -289,17 +295,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за " -"'%s'.\n" +"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за '%" +"s'.\n" "\n" "Дали треба стандардните записи за '%s' да бидат додадени? Ако изберете „Не“, " "надградувањето ќе прекини." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Информациите за складиштето се невалидни" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -307,23 +313,23 @@ msgstr "" "Од надградувањето на информациите за складиштето произлезе невалидна " "датотека. Ве молам пријавете го ова како бубачка." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Додатните извори се оневозможени" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Грешка при отстранување на клучот" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -331,11 +337,11 @@ msgstr "" "Се случи проблем при надградбата. Ова е обично некој проблем со мрежата и Ве " "молиме да ја проверете Вашата мрежна врска и да се обидете повторно." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Нема доволно место на дискот" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -346,15 +352,16 @@ msgstr "" "на %s. Испразнете го ѓубрето и отстранете ги привремените пакети или " "поранешни инсталации со помош на 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Дали сакате да ја започнете надградбата?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Не можам да ги инсталирам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -363,11 +370,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Не можам да ги симнам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -375,11 +382,11 @@ msgstr "" "Надградбата сега прекинува. Проверете ја Вашата интернет врска или медиумот " "за инсталација и обидете се повторно. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -388,24 +395,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Да ги отстранам застарените пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Прескокни го овој чекор" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Отстрани" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 #, fuzzy msgid "Error during commit" msgstr "Грешка во извршувањето" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -413,28 +420,30 @@ msgstr "" "Се случи некој проблем при расчистувањето. Видете ја пораката подолу за " "повеќе информации. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "Веќе работи друг менаџер за пакети" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Преземам промени" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -444,15 +453,15 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Ги ажурирам информациите за складиштето" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Невалидни информации за пакетот" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -462,23 +471,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Прашувам за потврда" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Надградбата е завршена" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Барам застарен софтвер" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Надградбата на системот е завршена." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -506,6 +516,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -522,6 +533,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -545,13 +557,14 @@ msgstr "Се случи фатална грешка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -596,6 +609,7 @@ msgstr "" "За да спречите загуба на податоци, затворете ги сите отворени апликации и " "документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -644,6 +658,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -665,6 +680,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -778,6 +794,7 @@ msgstr "Не можам да ги преземам белешките за из msgid "Please check your internet connection." msgstr "Ве молам проверете ја Вашата интернет врска." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не можам да ја извршам алатката за надградба" @@ -881,15 +898,18 @@ msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Безбедносни надградби за Debian Stable" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -905,6 +925,7 @@ msgstr "Надградби за Убунту 5.10" msgid "Distribution updates" msgstr "Инсталирам надградби..." +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -928,13 +949,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy +#, fuzzy, python-format msgid "Download size: %s" msgstr "Преземам промени" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Инсталирам надградби..." @@ -960,10 +982,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Верзија %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -981,14 +1004,15 @@ msgid "" "information on upgrading." msgstr "" "Повеќе нема да добивате безбедносни поправки или критични надградби. " -"Надградете го системот на понова верзија на Ubuntu Linux. Видете на " -"http://www.ubuntu.com за повеќе информации за надградувањето." +"Надградете го системот на понова верзија на Ubuntu Linux. Видете на http://" +"www.ubuntu.com за повеќе информации за надградувањето." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Новото издание на дистрибуцијата, '%s', е достапно" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексот на софтвер е расипан" @@ -1003,19 +1027,23 @@ msgstr "" "менаџерот за пакети Синаптик или прво извршете „sudo apt-ge install -f“ во " "терминал за да го надминете овој проблем." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1283,8 +1311,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Внесете ја комплетната линија за APT складиштето за да го " -"додадете\n" +"Внесете ја комплетната линија за APT складиштето за да го додадете\n" "\n" "APT линијата го содржи типот, локацијата и содржината на складиштето за на " "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " @@ -1374,209 +1402,253 @@ msgstr "Големината на прозорецот" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Надградби за Убунту 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Додатен софтвер" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Неслободно (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Неслободно (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Безбедносни надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официјално поддржано" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Безбедносни надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Неслободно (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официјално поддржано" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Безбедносни надградби за Убунту 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Надградби за Убунту 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Надградби за Убунту 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Безбедносни надградби за Debian Stable" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian Testing" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian Non-US (Unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-компатибилен софтвер со неслободни зависности" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-компатибилен софтвер" @@ -1604,8 +1676,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " -#~ "како бубачка." +#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го " +#~ "ова како бубачка." #, fuzzy #~ msgid "Hide details" @@ -1711,13 +1783,13 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ "Внесете ја комплетната линија за APT складиштето за да го " #~ "додадете\n" #~ "\n" -#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за на " -#~ "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " -#~ "можете да најдете детален опис на синтаксата." +#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за " +#~ "на пример \"deb http://ftp.debian.org sarge main\". Во " +#~ "документацијата можете да најдете детален опис на синтаксата." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Додајте нова датотека со клуч во доверливиот привезок. Осигурајте се дека " #~ "сте го добиле клучот преку безбеден канал и дека му верувате на неговиот " @@ -1751,8 +1823,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Отстрани го избраниот клуч од доверливиот привезок." #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Врати ги стандардните клучеви на дистрибуцијата. Ова нема да ги смени " #~ "клучевите инсталирани од корисникот." @@ -1787,8 +1859,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Достапни надградби\n" #~ "\n" @@ -1880,7 +1952,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr[2] "Избравте %s пакети за надградба, со големина од %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избравте %s од %s пакет за надградба, со големина од %s" #~ msgstr[1] "Избравте %s од %s пакети за надградба, со големина од %s" #~ msgstr[2] "Избравте %s од %s пакети за надградба, со големина од %s" @@ -1895,11 +1968,11 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Веќе работи друг менаџер за пакети" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Можете да работите само со една апликација за менаџмент на пакети одеднаш. " -#~ "Ве молам прво исклучете ја оваа апликацијата." +#~ "Можете да работите само со една апликација за менаџмент на пакети " +#~ "одеднаш. Ве молам прво исклучете ја оваа апликацијата." #~ msgid "Updating package list..." #~ msgstr "Ја ажурирам листата на пакети..." @@ -1915,17 +1988,17 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Ве молам надградете до понова верзија на Убунту Линукс. Верзијата на која " -#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни поправки " -#~ "и други технички надградби. Ве молам побарајте информации за надградба на " -#~ "http://www.ubuntulinux.org." +#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни " +#~ "поправки и други технички надградби. Ве молам побарајте информации за " +#~ "надградба на http://www.ubuntulinux.org." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Постои ново издание објавено под кодното име '%s'. Ве молам побарајте ги " #~ "инструкциите за надградба на http://www.ubuntulinux.org." @@ -1934,4 +2007,4 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Никогаш пак не ја покажувај поракава" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." \ No newline at end of file +#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." diff --git a/po/ms.po b/po/ms.po index 45a0d648..804258b0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -55,6 +55,7 @@ msgstr "Selepas satu bulan" msgid "After %s days" msgstr "Selepas %s hari" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,14 +124,13 @@ msgid "Error removing the key" msgstr "Ralat semasa mengeluarkan kekunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Kekunci yang anda pilih tidak dapat di keluarkan. Sila laporkan ini sebagai " "ralat pepijat." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -167,6 +169,7 @@ msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" @@ -182,6 +185,7 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ralat mengesahkan sesetengah pakej" @@ -209,6 +213,7 @@ msgstr "" "Pakej yang diperlukan tidak dapat dipasang. Sila laporkan ini sebagai ralat " "pepijat. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." @@ -228,11 +233,11 @@ msgstr "" "Sila pasangkan salah satu pakej diatas dahulu menggunakan synaptic ataupun " "apt-get sebelum meneruskan pemasangan." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -242,15 +247,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Membaca cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -258,12 +263,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, fuzzy msgid "No valid mirror found" msgstr "Tiada mirror yang sah dijumpai" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -279,33 +284,34 @@ msgstr "" "mirror telah lapuk.\n" "\n" "Adakah anda tetap mahu menulis semula fail 'Sources.list' anda? Jika anda " -"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada " -"'%s'.\n" +"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada '%" +"s'.\n" "Jika anda memilih 'tidak' kemaskinian akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:268 +#, fuzzy, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas " -"'sources.list' anda.\n" +"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas 'sources." +"list' anda.\n" "\n" "Adakah kemasukan default untuk '%s' perlu ditambah? Jika anda memilih " "'Tidak' kemaskinian akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Maklumat repositori tidak sah" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -313,11 +319,11 @@ msgstr "" "Kemaskinian maklumat repositori menyebabkan fail yang tidak sah. Sila " "laporkan ini sebagai masalah." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sumber ketiga tidak diaktifkan." -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -329,11 +335,11 @@ msgstr "" "selepas penaikkan taraf menggunakan alatan 'software-properties' ataupun " "'synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Ralat semasa pengemaskinian." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +348,11 @@ msgstr "" "yang berkaitan dengan masaalah rangkaian, sila periksa dan cuba lagi " "sambungan rangkaian anda." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Muatak cakera keras tidak mencukupi." -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +363,16 @@ msgstr "" "cakera keras %s anda. Kosong dan padamkan pakej-pakej sementara dari " "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Tidak dapat memasang pakej-pakej penaikkan taraf." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +384,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sistem anda mungkin tidak stabil. " "Sistem 'recovery' telah dijalankan (dpkg --configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +396,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sila semak sambungan 'internet' atau " "media pemasangan anda dan cuba lagi. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -407,48 +414,50 @@ msgstr "" "Jika anda tidak megaktifkan 'universe', pakej-pakej ini akan dicadangkan " "untuk dikeluarkan di peringkat selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Keluarkan pakej-pakej yang sudah luput?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Abaikan langkah ini" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -458,15 +467,15 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -476,22 +485,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Mengemaskini" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Mencari perisian yang lapuk" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Naiktaraf sistem sempurna." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,6 +529,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -534,6 +545,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -557,15 +569,16 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" @@ -601,9 +614,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." +msgstr "Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -651,6 +664,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -670,6 +684,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -777,6 +792,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -866,14 +882,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -886,6 +905,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -907,6 +927,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -941,6 +962,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -962,6 +984,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -973,19 +996,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1320,188 +1347,233 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Some software no longer officially supported" -#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." \ No newline at end of file +#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." diff --git a/po/nb.po b/po/nb.po index 578df94b..54cffe84 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -55,13 +55,15 @@ msgstr "Etter en måned" msgid "After %s days" msgstr "Etter %s dager" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Installerer oppdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,9 +74,10 @@ msgstr "" msgid "Main server" msgstr "Hovedtjener" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 -#, fuzzy +#, fuzzy, python-format msgid "Server for %s" msgstr "Tjener for %s" @@ -128,13 +131,11 @@ msgid "Error removing the key" msgstr "Kunne ikke fjerne nøkkelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -173,6 +174,7 @@ msgstr "Kan ikke oppgradere nødvendige meta-pakker" msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" @@ -188,6 +190,7 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" @@ -214,6 +217,7 @@ msgid "" msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" @@ -233,12 +237,12 @@ msgstr "" " Vennligst installer én av de nevnte pakkene først ved å bruke synaptic " "eller apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Kunne ikke hente" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +252,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Leser mellomlager" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +268,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Fant ikke noe gyldig speil" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +291,12 @@ msgstr "" "alle forekomster av '%s' endres til '%s'.\n" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -305,11 +310,11 @@ msgstr "" "Skal standard linjer for '%s' legges til? Hvis du velger 'Nei' vil " "oppdateringen avbrytes." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Ugyldig informasjon om arkiv" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,11 +322,11 @@ msgstr "" "Oppgradering av kanalinformasjon resulterte i en ugyldig fil. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Tredjepartskilder er deaktivert" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -332,11 +337,11 @@ msgstr "" "aktivere dem etter oppgraderingen ved hjelp av verktøyet 'Egenskaper for " "programvare' eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +350,11 @@ msgstr "" "problem med nettverkstilkoblingen. Vennligst sjekk nettverkstilkoblingen din " "og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Ikke nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +365,16 @@ msgstr "" "papirkurven og fjern midlertidige pakker fra tidligere installasjoner ved å " "bruke 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Kunne ikke installere oppgraderingene" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -380,11 +386,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon " "ble forsøkt kjørt (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Kunne ikke laste ned alle oppgraderingene." -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -392,11 +398,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Vennligst sjekk internet-tilkoblingen eller " "installasjonsmediet og prøv på nytt. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -411,23 +417,23 @@ msgstr "" "Hvis du ikke har 'universe' aktivert vil disse pakkene bli foreslått fjernet " "i neste steg." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Ønsker du å fjerne utdaterte pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Hopp over dette punktet" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Feil ved commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,27 +441,29 @@ msgstr "" "Et problem oppstod under opprydningen. Vennligst se meldingen under for mer " "informasjon. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Forbereder oppgraderingen" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -465,16 +473,16 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -486,22 +494,23 @@ msgstr "" "pakken '%s'.\n" "Dette indikerer en alvorlig feil, vennligst rapportér denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Spør om bekreftelse" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Oppgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -513,23 +522,24 @@ msgid "Fetching is complete" msgstr "Oppdateringen er fullført" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Laster ned fil %li av %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Rundt %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Laster ned fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Lagrer endringer" @@ -545,8 +555,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -571,39 +582,40 @@ msgstr "En uopprettelig feil oppsto" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og " -"/var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" +"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og /" +"var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" "Din orginale sources.list ble lagret i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -627,6 +639,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -654,12 +667,12 @@ msgid "Upgrade %s" msgstr "Oppgradér %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Rundt %li dager, %li timer og %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Rundt %li timer og %li minutter gjenstår" @@ -674,6 +687,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -695,6 +709,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -809,6 +824,7 @@ msgstr "Kunne ikke laste ned utgivelsesnotatene" msgid "Please check your internet connection." msgstr "Vennligst kontrollér internettforbindelsen." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke kjøre oppgraderingsverktøyet" @@ -884,12 +900,12 @@ msgstr "" "nettverket eller med tjeneren. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laster ned filen %li av %li med %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Laster ned filen %li av %li med %s/s" @@ -914,16 +930,19 @@ msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 #, fuzzy msgid "Recommended updates" msgstr "Anbefalte oppdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -939,6 +958,7 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Gjenoppta oppgradering" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -963,6 +983,7 @@ msgstr "" msgid "_Check All" msgstr "Sjekk" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -989,15 +1010,16 @@ msgid "Checking for updates" msgstr "Sjekker for tilgjengelige oppdateringer" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny versjon: %s (Størrelse: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1014,14 +1036,15 @@ msgid "" "information on upgrading." msgstr "" "Du vil ikke lenger motta flere sikkerhetsmessige eller kritiske " -"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se " -"http://www.ubuntu.com for mer informasjon om oppgradering." +"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." +"ubuntu.com for mer informasjon om oppgradering." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." @@ -1036,19 +1059,23 @@ msgstr "" "pakkehåndteringsprogrammet \"Synaptic\" eller kjør kommandoen \"sudo apt-get " "install -f\" i en terminal for å løse denne situasjonen." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1424,206 +1451,250 @@ msgstr "Vindusstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Sett opp programvarekanaler og oppdateringer" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Oppdateringer" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidratt programvare" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Oppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offisielt støttet" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Oppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Noe programvare er ikke lenger offisielt støttet" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhetsoppdateringer" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" @@ -1632,7 +1703,6 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "US eksport begrenset programvare" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Laster ned fil %li av %li ved ukjent hastighet" @@ -1656,7 +1726,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Oppgraderer til Ubuntu 6.06 LTS" +#~ "Oppgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1677,26 +1748,25 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Analyserer systemet\n" #~ "\n" -#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer og " -#~ "gir deg ny funksjonalitet." +#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer " +#~ "og gir deg ny funksjonalitet." #~ msgid "Oficially supported" #~ msgstr "Offisielt støttet" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk funksjonen " -#~ "\"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller " -#~ "kjør kommandoen \"sudo apt-get dist-upgrade\" i en terminal for å oppgradere " -#~ "systemet fullstendig." +#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk " +#~ "funksjonen \"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet " +#~ "\"Synaptic\" eller kjør kommandoen \"sudo apt-get dist-upgrade\" i en " +#~ "terminal for å oppgradere systemet fullstendig." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende pakker vil ikke bli oppgradert:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Rundt %li sekunder gjenstår" @@ -1772,8 +1842,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Backports for Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Fant ikke noen gyldig oppføring for oppgradering ved lesing av " #~ "arkivinformasjon.\n" @@ -1785,8 +1855,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du gjøre " -#~ "dette nå?" +#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du " +#~ "gjøre dette nå?" #~ msgid "Sections" #~ msgstr "Seksjoner" @@ -1838,13 +1908,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Autentiseringsnøkler\n" #~ "\n" -#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. Nøkler " -#~ "gjør det mulig å kontrollere integriteten til programvare som blir lastet " -#~ "ned." +#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. " +#~ "Nøkler gjør det mulig å kontrollere integriteten til programvare som blir " +#~ "lastet ned." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Legg til en ny nøkkelfil til den sikre nøkkelringen. Vær sikker på at du " #~ "mottok nøkkelen over en sikker kanal og at du stoler på eieren. " @@ -1875,8 +1945,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Maksimum størrelse i MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "Gjenoppret nøklene som kom med distri" #~ msgid "Set _maximum size for the package cache" @@ -1906,13 +1976,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Tilgjengelige oppdateringer\n" #~ "\n" -#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke på " -#~ "«Installer»-knappen." +#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke " +#~ "på «Installer»-knappen." #~ msgid "Cancel downloading the changelog" #~ msgstr "Avbryt nedlasting av endringslogg" @@ -1988,7 +2058,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr[1] "Du har valgt alle de %s oppdaterte pakkene, total størrelse %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Du har valgt %s av %s oppdaterte pakker, størrelse %s" #~ msgstr[1] "Du har valgt %s av de %s oppdaterte pakkene, total størrelse %s" @@ -1996,8 +2067,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Oppdateringene blir tilført." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Du kan bare kjøre et pakkehåndteringsprogram samtidig. Lukk det andre " #~ "programmet først." @@ -2013,19 +2084,19 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får ikke " -#~ "sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. Se " -#~ "http://www.ubuntulinux.org for informasjon om oppgradering." +#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får " +#~ "ikke sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. " +#~ "Se http://www.ubuntulinux.org for informasjon om oppgradering." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "En ny versjon med kodenavnet «%s» er tilgjengelig. Se http://www. " #~ "ubuntulinux.org/ for instruksjoner om oppgradering." @@ -2058,8 +2129,9 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "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." \ No newline at end of file +#~ "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." diff --git a/po/ne.po b/po/ne.po index 286556bc..d47a5543 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -57,13 +57,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,11 +128,8 @@ msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -165,6 +165,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -176,10 +177,9 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,10 +201,9 @@ msgstr "" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस " +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -218,11 +217,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -232,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -248,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +263,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,43 +277,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +321,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -361,68 +362,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy 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/dist-" "upgrade/ in the bugreport." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -432,23 +433,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "स्तरवृद्धि समाप्त" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -476,6 +478,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -492,6 +495,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -515,13 +519,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -561,6 +566,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -609,6 +615,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,6 +635,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -736,6 +744,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -744,9 +753,7 @@ msgstr "" #, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #: ../UpdateManager/DistUpgradeFetcher.py:171 #, fuzzy @@ -831,18 +838,20 @@ msgstr "युबन्टुको एउटा नयाँ विमोचन msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "" -"परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -858,6 +867,7 @@ msgstr "युबन्टु ५.०४ अद्यावधिकहरु" msgid "Distribution updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -881,13 +891,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy +#, fuzzy, python-format msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" @@ -912,10 +923,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "संस्करण %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -938,6 +950,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -949,19 +962,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1227,12 +1244,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट " -"गर्नुहोस\n" +"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस\n" "\n" -"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि " -"\"deb http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य " -"संरचनाको एउटा विस्तृत विवरण पाउन सक्नुहुन्छ" +"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि \"deb " +"http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य संरचनाको एउटा " +"विस्तृत विवरण पाउन सक्नुहुन्छ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1316,211 +1332,256 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "योगदान गरिएको सफ्टवेयर" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "नन-फ्री (बहुभर्स)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "कार्यालय बाट समर्थित" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "कार्यालय बाट समर्थित" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "निषेधित प्रतिलिपि अधिकार" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1552,8 +1613,7 @@ msgstr "" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -#~ "दिनुहोस" +#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #, fuzzy #~ msgid "Hide details" @@ -1609,11 +1669,11 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप " -#~ "प्रति भण्डारण गरिएको छ. बचत गर्नुहोस. \n" +#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति " +#~ "भण्डारण गरिएको छ. बचत गर्नुहोस. \n" #~ "\n" -#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची " -#~ "फेरि लोड गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" +#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड " +#~ "गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" #, fuzzy #~ msgid "Sections" @@ -1667,18 +1727,16 @@ msgstr "" #~ msgstr "" #~ "प्रमाणीकरण कुञ्जिहरु\n" #~ "\n" -#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले " -#~ "डाउनलोड गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले " -#~ "संभव पार्दछ" +#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले डाउनलोड " +#~ "गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले संभव पार्दछ" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त " -#~ "हुनुहोस कि तपाईंले एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं " -#~ "मालिकलाइ विश्वास गर्नुहुन्छ. " +#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त हुनुहोस कि तपाईंले " +#~ "एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं मालिकलाइ विश्वास गर्नुहुन्छ. " #, fuzzy #~ msgid "Add repository..." @@ -1707,11 +1765,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले " -#~ "प्रयोगकर्ता स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" +#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले प्रयोगकर्ता " +#~ "स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" #~ msgid "Set _maximum size for the package cache" #~ msgstr "प्याकेज क्यासको लागि अधिकतम आकार सेट गर्नुहोस" @@ -1738,13 +1796,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "उपलब्ध अद्यावधिकहरु\n" #~ "\n" -#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना " -#~ "बटन प्रयोग गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" +#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना बटन प्रयोग " +#~ "गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" #~ msgid "Cancel downloading the changelog" #~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस" @@ -1791,11 +1849,11 @@ msgstr "" #~ msgstr "स्तरवृद्धिहरु लागु हुँदैछन" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन " -#~ "सक्नुहुन्छ.कृपया पहिला यो अन्य अनुप्रयोग बन्द गर्नुहोस" +#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन सक्नुहुन्छ.कृपया पहिला " +#~ "यो अन्य अनुप्रयोग बन्द गर्नुहोस" #~ msgid "Updating package list..." #~ msgstr "प्याकेज सुची स्तरवृद्धि गर्दै" @@ -1809,20 +1867,19 @@ msgstr "" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले " -#~ "चलाइरहेको संस्करण ले सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त " -#~ "गर्नेछैन. कृपया स्तरवृद्धि जानकारी को लागि http://www.ubuntulinux.org " -#~ "हेर्नुहोस" +#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले चलाइरहेको संस्करण ले " +#~ "सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त गर्नेछैन. कृपया स्तरवृद्धि जानकारी को " +#~ "लागि http://www.ubuntulinux.org हेर्नुहोस" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को " -#~ "लागि://www.ubuntulinux.org/ हेर्नुहोस." +#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को लागि://" +#~ "www.ubuntulinux.org/ हेर्नुहोस." #~ msgid "Never show this message again" #~ msgstr "यो संदेश फेरि कहिले पनि नदेखाउनुहोस" @@ -1843,8 +1900,8 @@ msgstr "" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया " -#~ "स्थिति ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" +#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया स्थिति " +#~ "ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "सबै प्याकेजहरु स्तरवृद्धि गर्न संभव छैन" @@ -1852,12 +1909,12 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै " -#~ "प्याकेजहरुको स्थापन र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि " -#~ "साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग " -#~ "गर्नुहोस" +#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै प्याकेजहरुको स्थापन " +#~ "र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" " +#~ "अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग गर्नुहोस" #~ msgid "Initializing and getting list of updates..." -#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" \ No newline at end of file +#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" diff --git a/po/nl.po b/po/nl.po index d43312ff..d7f74737 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -54,13 +54,15 @@ msgstr "Na één maand" msgid "After %s days" msgstr "Na %s dagen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hoofdserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Fout bij het verwijderen van de sleutel" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "De door u geselecteerde sleutel kon niet verwijderd worden. Gelieve dit als " "fout te melden." @@ -168,6 +170,7 @@ msgstr "Kan de vereiste meta-pakketten niet upgraden" msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" @@ -184,6 +187,7 @@ msgstr "" "Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " "voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" @@ -212,6 +216,7 @@ msgstr "" "Het was niet mogelijk om een vereist pakket te installeren. Gelieve dit als " "fout te rapporteren. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" @@ -230,11 +235,11 @@ msgstr "" " Installeer eerst één van de bovenstaande pakketten met Synaptic of apt-get " "voordat u verder gaat." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Toevoegen van de cd is mislukt" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -249,15 +254,15 @@ msgstr "" "De foutmelding was:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Tijdelijke opslag inlezen" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Bestanden van het netwerk ophalen voor de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +275,11 @@ msgstr "" "is goedkoop, kunt u hier het beste op ‘Ja’ klikken. Wanneer netwerken duur " "is voor u kunt u beter ‘Nee’ kiezen." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Geen geldige mirror-server gevonden" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +299,12 @@ msgstr "" "zal overal '%s' worden vervangen door '%s'.\n" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +318,11 @@ msgstr "" "Moeten de standaardregels voor '%s' worden toegevoegd? Wanneer u 'Nee' " "kiest, zal de update worden geannuleerd." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "De informatie over de pakketbronnen is ongeldig" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +330,11 @@ msgstr "" "Het upgraden van de informatie over de pakketbronnen heeft het bestand " "ongeldig gemaakt. Rapporteer dit als een fout." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Pakketbronnen van derden uitgeschakeld" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -338,11 +344,11 @@ msgstr "" "kunt ze na de upgrade weer inschakelen met het programma ‘software-" "eigenschappen’ of met ‘synaptic’." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fout tijdens het updaten" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +356,11 @@ msgstr "" "Tijdens het updaten is er iets misgegaan. Dit komt meestal door " "netwerkproblemen. Controleer uw netwerkverbinding en probeer opnieuw." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Niet genoeg vrije schijfruimte" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +371,16 @@ msgstr "" "vrijgemaakt. Leeg uw prullenbak en verwijder de tijdelijke pakketten van " "vorige installaties via 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,11 +395,11 @@ msgstr "" "Rapporteer deze fout voor het pakket 'update-manager' en voeg hierbij de " "bestanden die zich in /var/log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Kon de upgrades niet downloaden" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +407,11 @@ msgstr "" "De upgrade wordt nu afgebroken. Controleer uw internetverbinding of het " "installatiemedium en probeer opnieuw. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Ondersteuning voor bepaalde toepassingen is beëindigd." -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +426,23 @@ msgstr "" "geactiveerd heeft zal bij de volgende stap gevraagd worden om deze pakketten " "te verwijderen." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Overbodige pakketten verwijderen?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Deze stap overslaan" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Verwijderen" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fout bij het toepassen" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,45 +450,47 @@ msgstr "" "Tijdens het opruimen deed zich een probleem voor. Zie onderstaand bericht " "voor meer informatie. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Backport van ‘%s’ ophalen" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Voorbereiden van de upgrade is mislukt" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Het voorbereiden van het systeem voor de upgrade is mislukt. \n" -" \n" +"Het voorbereiden van het systeem voor de upgrade is mislukt.\r\n" +" \r\n" "Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " "voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,25 +502,26 @@ msgstr "" "Nu uw pakkettenlijst bijgewerkt is, kan het essentiële pakket ‘%s’ niet meer " "gevonden worden.\n" "Dit is een ernstige fout, die gemeld moet worden. Rapporteer deze fout voor " -"het pakket ‘update-manager’ en voeg daarbij de bestanden die zich in " -"/var/log/dist-upgrade/ bevinden." +"het pakket ‘update-manager’ en voeg daarbij de bestanden die zich in /var/" +"log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Vragen om bevestiging" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Bezig met upgraden" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Zoeken naar overbodige software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -522,7 +532,7 @@ msgid "Fetching is complete" msgstr "Het downloaden is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" @@ -533,12 +543,13 @@ msgid "About %s remaining" msgstr "Ongeveer %s resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Downloaden van bestand %li uit %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Wijzigingen worden doorgevoerd" @@ -557,6 +568,7 @@ msgstr "" "manager’ en voeg hierbij de bestanden die zich in /var/log/dist-upgrade/ " "bevinden." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -584,18 +596,19 @@ msgstr "Er is een ernstige fout ontstaan" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Meld dit als een fout en voeg de bestanden /var/log/dist-upgrade/main.log en " -"/var/log/dist-upgrade/apt.log bij uw foutrapport. De upgrade zal nu worden " -"afgebroken.\n" -"Uw oorspronkelijke sources.list is opgeslagen in " -"/etc/apt/sources.list.distUpgrade." +"Meld dit als een fout en voeg de bestanden /var/log/dist-upgrade/main.log " +"en /var/log/dist-upgrade/apt.log bij uw foutrapport. De upgrade zal nu " +"worden afgebroken.\n" +"Uw oorspronkelijke sources.list is opgeslagen in /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -618,7 +631,7 @@ msgstr[0] "%d pakket zal een upgrade krijgen" msgstr[1] "%d pakketten zullen een upgrade krijgen." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -643,6 +656,7 @@ msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -692,6 +706,7 @@ msgid "%li seconds" msgstr "%li seconden" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -714,6 +729,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -825,6 +841,7 @@ msgstr "Kon de versie-informatie niet downloaden" msgid "Please check your internet connection." msgstr "Controleer uw internetverbinding." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kon het upgrade-programma niet uitvoeren" @@ -928,14 +945,17 @@ msgstr "" "Kon de lijst met wijzigingen niet downloaden. \n" "Controleer uw internetverbinding." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Belangrijke veiligheidsupdates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aanbevolen updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Voorgestelde updates" @@ -948,6 +968,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Distributie-updates" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andere updates" @@ -970,6 +991,7 @@ msgstr "Alles _deselecteren" msgid "_Check All" msgstr "_Controleren" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1004,8 +1026,9 @@ msgstr "Van versie: %(old_version)s naar %(new_version)s" msgid "Version %s" msgstr "Versie %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 -#, fuzzy +#, fuzzy, python-format msgid "(Size: %s)" msgstr "(Grootte: %s)" @@ -1020,14 +1043,15 @@ msgid "" "information on upgrading." msgstr "" "U zult niet langer veiligheidsupdates of kritieke updates krijgen. Voer een " -"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie " -"http://www.ubuntu.com voor meer informatie over upgraden." +"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." +"com voor meer informatie over upgraden." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "De nieuwe distributie-versie ‘%s’ is beschikbaar" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software-index is beschadigd" @@ -1042,19 +1066,23 @@ msgstr "" "Gebruik het pakkettenbeheerprogramma \"Synaptic\" of gebruik \"sudo apt-get " "install -f\" in een terminalvenster om eerst dit probleem te verhelpen." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Geen" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1070,8 +1098,8 @@ msgstr "" "U moet zelf controleren of er updates zijn\n" "\n" "Uw systeem controleert niet automatisch of er updates zijn. U kunt dit " -"configureren in Softwarebronnen op het tabblad Internet-" -"updates." +"configureren in Softwarebronnen op het tabblad Internet-updates." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1080,8 +1108,8 @@ msgstr "Houd uw systeem up-to-date" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Niet alle updates kunnen geïnstalleerd worden \n" -"↵ \n" +"Niet alle updates kunnen geïnstalleerd worden\r\n" +"↵\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1426,191 +1454,234 @@ msgstr "De venstergrootte" msgid "Configure the sources for installable software and updates" msgstr "Softwarekanalen en internet-updates configureren" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 ‘Edgy Eft’" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Door de gemeenschap beheerd" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Niet-vrije stuurprogramma's voor apparaten" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Beperkte software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom met Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS ‘Dapper Drake’" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Door Canonical beheerde Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Door de gemeenschap beheerd (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Door de gemeenschap beheerde Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Niet-vrije stuurprogramma's" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Niet-vrije stuurprogramma's voor apparaten " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Beperkte software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" "Software die door auteursrechten of wettelijke regelingen beperkt wordt." +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom met Ubuntu 6.06 LTS ‘Dapper Drake’" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Updates die van een nieuwere distributie afkomstig zijn (backports)" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom met Ubuntu 5.10 ‘Breezy Badger’" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 ‘Hoary Hedgehog’" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom met Ubuntu 5.04 ‘Hoary Hedgehog’" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officieel ondersteund" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 ‘Warty Warthog’" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Door de gemeenschap beheerd (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Niet-vrij (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom met Ubuntu 4.10 ‘Warty Warthog’" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Niet meer officieel ondersteund" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Beperkte auteursrechten" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" veiligheidsupdates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (onstabiel)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibel met DFSG, maar met niet-vrije afhankelijkheden" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" @@ -1634,8 +1705,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Bezig met upgraden naar Ubuntu 6.06 " -#~ "LTS" +#~ "Bezig met upgraden naar Ubuntu " +#~ "6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1656,8 +1727,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "" #~ "Uw system wordt gecontroleerd\n" #~ "\n" -#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " -#~ "nieuwe mogelijkheden." +#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en " +#~ "leveren nieuwe mogelijkheden." #, fuzzy #~ msgid "Oficially supported" @@ -1665,18 +1736,18 @@ msgstr "Software niet compatibel met DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Enkele updates vereisen dat andere softwarepaketten verwijderd worden. " -#~ "Gebruik de functie \"Pakketten bijwerken\" van het pakkettenbeheerprogramma " -#~ "\"Synaptic\" of gebruik: \"sudo apt-get dist-upgrade\" in een " -#~ "terminalvenster om uw systeem compleet bij te werken met de laatste updates." +#~ "Gebruik de functie \"Pakketten bijwerken\" van het " +#~ "pakkettenbeheerprogramma \"Synaptic\" of gebruik: \"sudo apt-get dist-" +#~ "upgrade\" in een terminalvenster om uw systeem compleet bij te werken met " +#~ "de laatste updates." #~ msgid "The following updates will be skipped:" #~ msgstr "De volgende updates worden overgeslagen:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ongeveer %li seconden resterend" @@ -1740,7 +1811,7 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Ubuntu 6.06 LTS \n" +#~ "Ubuntu 6.06 LTS\r\n" #~ "Ubuntu 6.06 updates" #~ msgid "Ubuntu 6.06 LTS Security Updates" @@ -1750,4 +1821,4 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "Ubuntu 6.06 LTS updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS backports" diff --git a/po/nn.po b/po/nn.po index dc1d3472..5284803f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" @@ -55,6 +55,7 @@ msgstr "Etter ein månad" msgid "After %s days" msgstr "Etter %s dagar" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Kunne ikkje fjerne nykjelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Nykjelen du valde kan ikkje fjernast. Ver venleg å rapportere denne feilen." @@ -164,6 +166,7 @@ msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" msgid "A essential package would have to be removed" msgstr "Ein naudsynt pakke vil måtte fjernast" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikkje forberede oppgraderinga" @@ -176,6 +179,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikkje autentisere somme pakkar" @@ -203,6 +207,7 @@ msgstr "" "Ein naudsynt pakke kunne ikkje installerast. Ver venleg og rapporter denne " "feilen. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikkje gjette på meta-pakke" @@ -216,11 +221,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -230,15 +235,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Les mellomlager" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -246,11 +251,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Fann ikkje noko gyldig spegl" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -269,11 +274,12 @@ msgstr "" "vil det oppdatere alle forekomstar av '%s' til '%s'.\n" "Om du veljer \"Nei\" vil oppgraderinga verte avbroten." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Vil du opprette standardkjelder?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -281,17 +287,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av " -"\"sources.list\"-fila di.\n" +"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av \"sources." +"list\"-fila di.\n" "\n" "Vil du legge till standard oppføring for \"%s\"? Om du vel \"Nei\" vil " "oppdateringa verte avbroten." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Ugyldig arkivinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -299,22 +305,22 @@ msgstr "" "Oppgraderinga av arkivinformasjonen resulterte i ei ugyldig fil. Rapporter " "dette som ein feil." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Tredjepartskjelder er deaktivert" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -322,11 +328,11 @@ msgstr "" "Eit problem oppsto under oppdateringa. Dette er vanlegvis ei form for " "nettverksproblem. Sjekk nettverkskoblinga di og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Ikkje nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -334,15 +340,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -351,21 +358,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -374,63 +381,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -440,22 +449,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -483,6 +493,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -498,6 +509,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -521,13 +533,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -567,6 +580,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -614,6 +628,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -633,6 +648,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -739,6 +755,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -828,14 +845,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -848,6 +868,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -869,6 +890,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -903,6 +925,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -924,6 +947,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -935,19 +959,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1273,184 +1301,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/no.po b/po/no.po index 2bbaac2b..0459ea47 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -219,11 +219,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -233,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +266,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:266 +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Feil under fjerning av nøkkel" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,52 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:576 +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "En annen pakkehåndterer kjører" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Laster ned endringer" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -418,15 +418,15 @@ msgid "" msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -436,21 +436,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 #, fuzzy msgid "Asking for confirmation" msgstr "Undersøker systemkonfigurasjon" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Oppgradering fullført" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" @@ -470,7 +470,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -500,28 +500,28 @@ msgid "" msgstr "" #. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " @@ -531,28 +531,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -560,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, fuzzy, python-format msgid "Remove %s" msgstr "Detaljer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, fuzzy, python-format msgid "Install %s" msgstr "_Installer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Oppgradering fullført" @@ -711,6 +711,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Oppdater" @@ -1081,10 +1082,15 @@ msgstr "Installerer oppdateringer..." #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Oppgradering fullført" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" diff --git a/po/oc.po b/po/oc.po index eed871b2..564e980b 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" -"Last-Translator: Yannig MARCHEGAY (Kokoyaya) " -"\n" +"Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,6 +56,7 @@ msgstr "Un mes aprèp" msgid "After %s days" msgstr "%s jorns aprèp" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s mesas a jorn" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,13 +126,12 @@ msgid "Error removing the key" msgstr "Error al moment de suprimir la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +167,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" @@ -177,6 +180,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -199,6 +203,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -212,11 +217,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Impossible d'apondre lo CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -226,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -242,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +263,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +277,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Error al moment de metre a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Pas pro d'espaci liure" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +320,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Impossible installar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +338,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Impossible descargar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,63 +361,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Suprimir los paquetatges obsolets ?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Suprimir" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -420,22 +429,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Demanda de confirmacion" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Mesa a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Recèrca de logicials obsolets" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -463,6 +473,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicacion dels cambis" @@ -478,6 +489,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -501,13 +513,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -530,7 +543,7 @@ msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -550,6 +563,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -597,6 +611,7 @@ msgid "%li seconds" msgstr "%li segondas" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -616,6 +631,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -723,6 +739,7 @@ msgstr "Impossible de telecargar las informacions de version" msgid "Please check your internet connection." msgstr "Verificatz vòstra connexion internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible aviar l'esplech de mesa a jorn" @@ -812,14 +829,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -834,6 +854,7 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" msgid "Distribution updates" msgstr "Mesas a jorn per internet" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -857,6 +878,7 @@ msgstr "" msgid "_Check All" msgstr "_Verificar" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -888,10 +910,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Version %s :" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -913,6 +936,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -924,19 +948,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1276,200 +1304,244 @@ msgstr "La talha de la fenèstra" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Pas liure (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM que conten Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Pas liure (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pas liure (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM que conten Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM que conten Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pas liure (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mesas a jorn de securitat per Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (en tèst)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1495,4 +1567,4 @@ msgstr "" #~ msgstr "_Personalisar" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS" diff --git a/po/pa.po b/po/pa.po index 0e940c7d..cdedac54 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -56,13 +56,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,6 +162,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -172,6 +175,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -194,6 +198,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -207,11 +212,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -221,15 +226,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -237,11 +242,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -253,11 +258,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -266,42 +272,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -309,15 +315,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -326,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -349,63 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -415,23 +424,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,6 +469,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -474,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -497,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -543,6 +556,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -590,6 +604,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -609,6 +624,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -719,6 +735,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -810,15 +827,18 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -833,6 +853,7 @@ msgstr "" msgid "Distribution updates" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -855,13 +876,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." @@ -890,6 +912,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -911,6 +934,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -922,19 +946,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1277,184 +1305,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1507,4 +1580,4 @@ msgstr "" #, fuzzy #~ msgid "Sections:" -#~ msgstr "ਵੇਰਵਾ" \ No newline at end of file +#~ msgstr "ਵੇਰਵਾ" diff --git a/po/pl.po b/po/pl.po index 512fc57c..6e99e672 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-10 08:44+0000\n" "Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" @@ -54,6 +54,7 @@ msgstr "Po miesiącu" msgid "After %s days" msgstr "Po %s dniach" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s aktualizacji" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serwer główny" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -163,6 +165,7 @@ msgstr "Nie można zaktualizować wymaganych meta-pakietów" msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" @@ -179,6 +182,7 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" @@ -202,9 +206,9 @@ msgstr "Nie można zainstalować \"%s\"" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" @@ -222,11 +226,11 @@ msgstr "" " Zainstaluj najpierw jeden z wymienionych pakietów używając programu " "synaptic lub apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Nie można dodać płyty CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -242,15 +246,15 @@ msgstr "" "Treść błędu jest następująca:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Odczytywanie bufora podręcznego" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Pobrać dane z sieci dla aktualizacji?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +266,11 @@ msgstr "" "Jeśli posiadasz szybkie lub tanie łącze, powinieneś odpowiedzieć tutaj " "'Tak'. W innym przypadku wybierz 'Nie'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nie odnaleziono poprawnego serwera lustrzanego" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,15 +285,16 @@ msgstr "" "lustrzanego dla aktualizacji. To może się zdarzyć, jeśli używasz wewnętrzny " "serwer lustrzany lub informacje o serwerze są nieaktualne.\n" "\n" -"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz " -"\"Tak\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" +"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz \"Tak" +"\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -297,17 +302,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla " -"\"%s\".\n" +"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla \"%s" +"\".\n" "\n" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Błędne informacje o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,25 +320,25 @@ msgstr "" "W wyniku aktualizacji informacji o repozytoriach powstał błędny plik. Proszę " "zgłosić ten błąd." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Źródła stron niezależnych zostały wyłączone" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" "Niektóre kanały osób trzecich w pliku sources.list zostały wyłączone. Możesz " -"ponownie je włączyć po aktualizacji używając narzędzia \"software-" -"properties\" lub programu Synaptic." +"ponownie je włączyć po aktualizacji używając narzędzia \"software-properties" +"\" lub programu Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Błąd podczas aktualizacji" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,30 +346,31 @@ msgstr "" "Wystąpił problem podczas aktualizacji. Zazwyczaj wynika on z problemów z " "siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Zbyt mało miejsca na dysku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na " -"%s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji " -"używając \"sudo apt-get clean\"." +"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na %" +"s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji używając " +"\"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -378,11 +384,11 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +396,11 @@ msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz " "dysk instalacyjny i spróbować ponownie. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Wsparcie dla niektórych aplikacji zostało zakończone" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -408,23 +414,23 @@ msgstr "" "Jeśli nie włączyłeś repozytoriów utrzymywanych przez społeczność (universe), " "zostanie zasugerowane ich usunięcie w następnym kroku." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Usunąć niepotrzebne pakiety?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Pomiń ten krok" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Usuń" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,44 +438,46 @@ msgstr "" "Wystąpił problem podczas oczyszczania. Więcej informacji znajduje się w " "poniższych wiadomościach. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Pobieranie backportu \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Przygotowanie aktualizacji nie powiodło się" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" "Przygotowanie systemu do aktualizacji nie powiodło się. Proszę zgłosić to " -"jako błąd pakietu \"update-manager\" i dołączyć do raportu pliki z " -"/var/log/dist-upgrade ." +"jako błąd pakietu \"update-manager\" i dołączyć do raportu pliki z /var/log/" +"dist-upgrade ." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -480,25 +488,26 @@ msgid "" msgstr "" "Po aktualizacji informacji o pakietach niezbędny pakiet \"%s\" nie może " "zostać odnaleziony.\n" -"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-" -"manager\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." +"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-manager" +"\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pytanie o potwierdzenie" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Aktualizacja w toku" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -526,6 +535,7 @@ msgstr "Pobieranie pliku %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Zatwierdzanie zmian" @@ -543,6 +553,7 @@ msgstr "" "Aktualizacja zostaje przerwana. Prosimy o wysłanie raportu o błędzie pakietu " "'update-manager' dołączając pliki w /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -570,18 +581,19 @@ msgstr "Wystąpił błąd krytyczny" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosimy o wysłanie raportu o tym błędzie i dołączeniu plików /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log w swoim raporcie. " "Aktualizacja zostaje przerwana.\n" -"Pierwotny plik sources.list został zapisany w " -"/etc/apt/sources.list.distUpgrade." +"Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -631,6 +643,7 @@ msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -678,6 +691,7 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -701,6 +715,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -812,6 +827,7 @@ msgstr "Pobranie informacji o wydaniu było niemożliwe" msgid "Please check your internet connection." msgstr "Proszę sprawdzić swoje połączenie internetowe." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nie można było uruchomić narzędzia aktualizacji" @@ -845,8 +861,7 @@ msgstr "Pobranie nie powiodło się" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " +msgstr "Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -914,14 +929,17 @@ msgstr "" "Nie udało się pobrać listy zmian. \n" "Proszę sprawdzić swoje połączenie intenetowe." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Ważne aktualizacje bezpieczeństwa" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aktualizacje polecane" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aktualizacje proponowane" @@ -934,6 +952,7 @@ msgstr "Backporty" msgid "Distribution updates" msgstr "Aktualizacje dystrybucji" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Inne aktualizacje" @@ -955,6 +974,7 @@ msgstr "Odznacz wszystkie" msgid "_Check All" msgstr "Zaznacz wszystkie" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -990,6 +1010,7 @@ msgstr "Z wersji %(old_version)s do %(new_version)s" msgid "Version %s" msgstr "Wersja %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1014,6 +1035,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nowe wydanie dystrybucji \"%s\" jest dostępne" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" @@ -1028,19 +1050,23 @@ msgstr "" "Proszę użyć \"Synaptic Menedżer Pakietów\" lub wydać polecenie \"sudo apt-" "get install -f\" w terminalu, aby naprawić ten problem." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Brak" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1064,8 +1090,7 @@ msgstr "Utrzymuj system w pełni zaktualizowany" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"Nie wszystkie aktualizacje mogą zostać zainstalowane" +msgstr "Nie wszystkie aktualizacje mogą zostać zainstalowane" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1406,191 +1431,234 @@ msgstr "Rozmiar okna" msgid "Configure the sources for installable software and updates" msgstr "Konfiguruj źródła pakietów oprogramowania i aktualizacji" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Pod opieką społeczeństwa" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Własnościowe sterowniki dla urządzeń" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ograniczone oprogramowanie" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM z Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Oprogramowanie Open Source wspierane przez firmę Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Obsługiwane przez społeczność (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Oprogramowanie Open Source pod opieką społeczeństwa" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Sterowniki nie-wolnodostępne" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Własnościowe sterowniki dla urządzeń " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Oprogramowanie nie-wolnodostępne (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" "Oprogramowanie ograniczone prawami autorskimi lub problemami natury prawnej" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM z Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aktualizacje backportowane" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM z Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Wspierane oficjalnie" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aktualizacje dla Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Aktualizacje dla Ubuntu 5.04 (backporty)" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·4.10·\"Warty·Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Utrzymywane przez społeczność (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM z Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Już nieobsługiwane" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "O ograniczonych prawach kopiowania" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aktualizacje dla Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Aktualizacje dla Ubuntu 4.10 (backporty)" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Debiana 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (wersja testowa)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (wersja unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1601,21 +1669,22 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" -#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " -#~ "zgłosić to jako błąd. " +#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. " +#~ "Proszę zgłosić to jako błąd. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop lub " -#~ "edubuntu-desktop. Nie jest możliwe określenie używanej wersji Ubuntu.\n" +#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop " +#~ "lub edubuntu-desktop. Nie jest możliwe określenie używanej wersji " +#~ "Ubuntu.\n" #~ " Przed kontynuowaniem proszę zainstalować jeden z powyższych pakietów." #~ msgid "" @@ -1628,8 +1697,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "lub za pomocą Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" #~ "Aktualizacja została przerwana. System może znajdować się w stanie " #~ "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" @@ -1651,7 +1720,6 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " #~ "zasugerowane ich usunięcie. " -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1661,37 +1729,30 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "być odnaleziony.\n" #~ "To wskazuje na poważny problem, proszę zgłosić ten błąd." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Około %li dni %li godzin %li minut pozostało" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Około %li godzin %li minut pozostało" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Około %li minut pozostało" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Około %li sekund pozostało" #~ msgid "Download is complete" #~ msgstr "Pobieranie zostało zakończone." -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Pobieranie pliku %li z %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Aktualizacja została przerwana. Proszę zgłosić ten błąd." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1700,42 +1761,40 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log oraz " -#~ "~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" -#~ "Pierwotny plik sources.list został zapisany w " -#~ "/etc/apt/sources.list.distUpgrade." +#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log " +#~ "oraz ~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" +#~ "Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pakiet zostanie usunięty." #~ msgstr[1] "%s pakiety zostaną usunięte." #~ msgstr[2] "%s pakietów zostanie usuniętych." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nowy pakiet zostanie zainstalowany." #~ msgstr[1] "%s nowe pakiety zostaną zainstalowane." #~ msgstr[2] "%s nowy pakietów zostanie zainstalowane." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pakiet zostanie zaktualizowany." #~ msgstr[1] "%s pakiety zostaną zaktualizowane." #~ msgstr[2] "%s pakietów zostanie zaktualizowanych." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Konieczne pobranie ogółem %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" #~ "Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." @@ -1757,17 +1816,15 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacja Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy lub " -#~ "z serwerem. " +#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy " +#~ "lub z serwerem. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" @@ -1801,13 +1858,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Niektóre aktualizacje wymagają dalszego usuwania oprogramowania. Aby " -#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji\" " -#~ "w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade\" w " -#~ "terminalu." +#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji" +#~ "\" w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade" +#~ "\" w terminalu." #~ msgid "The following updates will be skipped:" #~ msgstr "Następujące pakiety zostaną pominięte:" @@ -1821,17 +1878,18 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Select _All" #~ msgstr "Zaznacz w_szystkie" -#, python-format #~ msgid "From version %s to %s" #~ msgstr "Z wersji %s do %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" +#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" #~ "\n" #~ "System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie " #~ "można to zmienić w \"System\" -> \"Administracja\" -> \"Software " @@ -1845,8 +1903,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Sprawdzanie systemu\n" #~ "\n" -#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " -#~ "bezpieczeństwa i dostarczyć nowe funkcje." +#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe " +#~ "punkty bezpieczeństwa i dostarczyć nowe funkcje." #~ msgid "Cancel _Download" #~ msgstr "_Przerwij pobieranie" @@ -1854,8 +1912,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1867,31 +1925,33 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Aby kontynuować potrzebne jest działające połączenie internetowe." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the source that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" +#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" #~ "\n" -#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo \"deb " -#~ "http://ftp.debian.org sarge main\"." +#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo " +#~ "\"deb http://ftp.debian.org sarge main\"." #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" -#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone to " -#~ "koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na ukrycie " -#~ "pokazywanego w tym przypadku.powiadamiania." +#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone " +#~ "to koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na " +#~ "ukrycie pokazywanego w tym przypadku.powiadamiania." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych aktualizacji" +#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych " +#~ "aktualizacji" #~ msgid "" #~ "OpenSource software that is officially supported by Canonical Ltd. (main)" @@ -1904,7 +1964,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Proprietary drivers for devices (restricted) " #~ msgstr "Własnościowe sterowniki dla urządzeń (restricted) " -#~ msgid "Software that is restricted by copyright or legal issues (multiverse)" +#~ msgid "" +#~ "Software that is restricted by copyright or legal issues (multiverse)" #~ msgstr "" #~ "Oprogramowanie ograniczone prawami kopiowania lub wątpliowściami prawnymi " #~ "(multiverse)" @@ -1981,8 +2042,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje dla Ubuntu 6.06 LTS (Backporty)" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Podczas skanowania informacji o repozytoriach nie odnaleziono poprawnych " #~ "wpisów potrzebnych do aktualizacji.\n" @@ -2049,13 +2110,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " -#~ "przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " +#~ "klikając przycisk Instaluj." #~ msgid "Repository" #~ msgstr "Repozytorium" @@ -2075,20 +2136,21 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Klucze autentykacyjne\n" #~ "\n" -#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. Klucz " -#~ "pozwala na sprawdzenie integralności oprogramowania które jest pobierane z " -#~ "sieci." +#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. " +#~ "Klucz pozwala na sprawdzenie integralności oprogramowania które jest " +#~ "pobierane z sieci." #~ msgid "A_uthentication" #~ msgstr "A_utentykacja" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Dodaje plik z kluczem do listy zaufanych kluczy. Należy upewnić sie, że " -#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego źródła. " +#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego " +#~ "źródła. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Usuwaj _tymczasowe pliki z pakietami" @@ -2110,11 +2172,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to na " -#~ "klucze zainstalowane przez użytkownika." +#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to " +#~ "na klucze zainstalowane przez użytkownika." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Maksymalny rozmiar pamięci podręcznej" @@ -2138,8 +2200,9 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione.Aby " -#~ "rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-get\"." +#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione." +#~ "Aby rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-" +#~ "get\"." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Nie można uaktualnić wszystkich pakietów" @@ -2147,12 +2210,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "Oznacza to, że do aktualizacji wymagane sa dodatkowe działania (takie jak " -#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać z " -#~ "funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać polecenie " -#~ "\"apt-get dist-upgrade\"." +#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać " +#~ "z funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać " +#~ "polecenie \"apt-get dist-upgrade\"." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2163,11 +2227,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje są teraz instalowane." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " -#~ "najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " +#~ "Należy najpierw zamknąć aplikację która teraz działa." #~ msgid "Updating package list..." #~ msgstr "Aktualizacja listy pakietów..." @@ -2177,13 +2241,14 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna wersja " -#~ "nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych krytycznych " -#~ "uaktualnień. Informacje o tym jak uaktualnić dystrybucję można znaleźć na " -#~ "stronie http://www.ubuntulinux.org (Witryna w języku angielskim)" +#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna " +#~ "wersja nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych " +#~ "krytycznych uaktualnień. Informacje o tym jak uaktualnić dystrybucję " +#~ "można znaleźć na stronie http://www.ubuntulinux.org (Witryna w języku " +#~ "angielskim)" #, fuzzy #~ msgid "There is a new release of Ubuntu available!" @@ -2194,11 +2259,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " -#~ "najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " +#~ "Należy najpierw zamknąć aplikację która teraz działa." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicjowanie i pobieranie listy aktualizacji..." @@ -2236,13 +2301,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " -#~ "przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " +#~ "klikając przycisk Instaluj." #~ msgid "CD disk" -#~ msgstr "Płyta CD" \ No newline at end of file +#~ msgstr "Płyta CD" diff --git a/po/pt.po b/po/pt.po index 815988d6..55ff5562 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 11:04+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -53,6 +53,7 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Depois de %s dias" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -60,6 +61,7 @@ msgstr "actualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -69,6 +71,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Erro ao remover a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." @@ -165,6 +167,7 @@ msgstr "Não foi possível actualizar os meta-pacotes necessários" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" @@ -181,6 +184,7 @@ msgstr "" "Por favor reporte este erro no pacote 'update-manager' e inclua os ficheiros " "contidos em /var/log/dist-upgrade/ no seu relatório de erro." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" @@ -207,6 +211,7 @@ msgid "" msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" @@ -225,11 +230,11 @@ msgstr "" " Por favor instale um dos pacotes acima mencionados usando o synaptic ou apt-" "get antes de continuar." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Falha ao adicionar o CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +249,15 @@ msgstr "" "A mensagem de erro foi:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "A ler a cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Obter dados para a actualização a partir da rede?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +269,11 @@ msgstr "" "Se o seu acesso à internet for rápido ou barato deve responder 'Sim'. Se a " "sua ligação é cara escolha 'Não'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrada" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +293,12 @@ msgstr "" "Se escolher 'Sim' ele vai actualizar todos os '%s' para '%s' pacotes.↵\n" "Se escolher \"não\" a actualização irá ser cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +312,11 @@ msgstr "" "Deverão ser adicionadas entradas para '%s'? Se seleccionar 'Não' a " "actualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,11 +324,11 @@ msgstr "" "A actualização da informação de repositório resultou num ficheiro inválido. " "Por favor reporte este erro." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Fontes de terceiros desactivadas" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -332,11 +338,11 @@ msgstr "" "reactivá-las depois da actualização com a ferramenta 'propriedades-software' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Erro durante a actualização" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,30 +351,31 @@ msgstr "" "tipo de problema na rede, por favor verifique a sua ligação à rede e volte a " "tentar." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Não existe espaço livre em disco suficiente" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"A actualização abortará agora. Por favor liberte %s de espaço em disco em " -"%s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " +"A actualização abortará agora. Por favor liberte %s de espaço em disco em %" +"s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " "usando 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Impossível de instalar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,11 +389,11 @@ msgstr "" "Por favor relate este erro sobre o pacote 'update-manager' e inclua os " "ficheiros contidos em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Impossível de descarregar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +401,11 @@ msgstr "" "A actualização abortará agora. Por favor verifique a sua ligação à internet " "ou media de instalação e volte a tentar. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações já terminou." -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,23 +419,23 @@ msgstr "" "Caso não tenha activado o software mantido pela comunidade (universe), irá " "ser sugerida a remoção destes pacotes no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Saltar Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Erro ao submeter" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -436,26 +443,28 @@ msgstr "" "Ocorreu algum problema durante a limpeza. Por favor verifique a mensagem " "abaixo para mais informação. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "A obter backport de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "A preparação da actualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -465,15 +474,15 @@ msgstr "" "reporte este erro no pacote 'update-manager' e inclua os ficheiros contidos " "em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "A Actualizar informação de repositórios" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informação de pacotes inválida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,22 +497,23 @@ msgstr "" "'update-manager' e inclua os ficheiros contidos em /var/log/dist-upgrade/ no " "relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "A pedir confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "A actualizar" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -531,6 +541,7 @@ msgstr "A obter o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando alterações" @@ -546,9 +557,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "A actualização será agora abortada. Por favor relate a ocorrência deste erro " -"no pacote 'update-manager' e inclua os ficheiros que se encontram em " -"/var/log/dist-upgrade/ no relatório de erro." +"no pacote 'update-manager' e inclua os ficheiros que se encontram em /var/" +"log/dist-upgrade/ no relatório de erro." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -576,18 +588,19 @@ msgstr "Ocorreu um erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate este erro e inclua os ficheiros /var/log/dist-" -"upgrade/main.log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A " -"actualização abortará agora.\n" -"O ficheiro original sources.list foi guardado em " -"/etc/apt/sources.list.distUpgrade." +"Por favor relate este erro e inclua os ficheiros /var/log/dist-upgrade/main." +"log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A actualização " +"abortará agora.\n" +"O ficheiro original sources.list foi guardado em /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -634,6 +647,7 @@ msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -683,6 +697,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -705,6 +720,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -815,6 +831,7 @@ msgstr "Impossível de descarregar as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor verifique a sua ligação à internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossível de executar a ferramenta de actualização" @@ -832,8 +849,7 @@ msgstr "A descarregar a ferramenta de actualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" -"A ferramenta de actualização guiá-lo-á pelo processo de actualização." +msgstr "A ferramenta de actualização guiá-lo-á pelo processo de actualização." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -916,14 +932,17 @@ msgstr "" "Falha ao descarregar a lista de alterações. \n" "Por favor verifique a sua ligação à Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizações de segurança importantes" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizações recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizações propostas" @@ -936,6 +955,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "_Actualizações de Distribuição" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizações" @@ -957,6 +977,7 @@ msgstr "_Desmarcar Todos" msgid "_Check All" msgstr "_Verificar Todos" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -991,6 +1012,7 @@ msgstr "Da versão: %(old_version)s para %(new_version)s" msgid "Version %s" msgstr "Versão %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1015,6 +1037,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Está disponível a nova versão '%s' da distribuição" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está quebrado" @@ -1029,19 +1052,23 @@ msgstr "" "gestor de pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" numa " "consola para corrigir este problema em primeiro lugar." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1067,8 +1094,8 @@ msgstr "Mantenha o seu sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Não é possível instalar todas as actualizações \n" -" \n" +"Não é possível instalar todas as actualizações\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1286,8 +1313,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação acerca de software disponível está " -"desactualizada\n" +"A informação acerca de software disponível está desactualizada\n" "\n" "Tem de recarregar a informação sobre software disponível para instalar " "software e actualizações a partir de repositórios recentemente adicionados " @@ -1414,190 +1441,233 @@ msgstr "Tamanho da Janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os repositórios de software e actualizações instaláveis" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Drivers proprietários para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software Restrito" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com o Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software de Código Aberto suportado pela Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela comunidade (universal)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Fonte Aberto mantido pela comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores não-livres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Drivers proprietários para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software não-livre (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright ou questões legais" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizações dos repositórios \"backport\"" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Actualizações" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado Oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizações do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sem mais suporte oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Direitos de autor restritos" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizações do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Actualizações de Segurança" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatível-DFSG com Dependências Não-Livres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" @@ -1620,7 +1690,8 @@ msgstr "Software compatível-DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "A actualizar para Ubuntu 6.10" +#~ "A actualizar para Ubuntu 6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Actualizações de segurança importantes do Ubuntu" @@ -1647,17 +1718,16 @@ msgstr "Software compatível-DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas actualizações requerem a remoção de software. Utilize a função " -#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade\" " -#~ "numa consola para actualizar completamente o seu sistema." +#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade" +#~ "\" numa consola para actualizar completamente o seu sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes actualizações serão ignoradas:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Cerca de %li segundos restantes" @@ -1678,12 +1748,14 @@ msgstr "Software compatível-DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo tempo" +#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo " +#~ "tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou 'Synaptic'." +#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Repositórios" @@ -1733,8 +1805,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Ubuntu 6.06 LTS Backports" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Ao pesquisar o seu repositório de informação não foi encontrada nenhuma " #~ "entrada válida de actualização.\n" @@ -1753,15 +1825,15 @@ msgstr "Software compatível-DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "A efectuar download de " -#~ "alterações\n" +#~ "A efectuar download de alterações\n" #~ "\n" #~ "É necessário obter as alterações de um servidor central" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" #~ "Não existe espaço suficiente no seu sistema para descarregar os pacotes " #~ "necessários. Por favor liberte algum espaço antes de tentar novamente por " @@ -1774,8 +1846,8 @@ msgstr "Software compatível-DFSG" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" -#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de um " -#~ "problema de rede. Por favor verifique a rede e tente novamente. " +#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de " +#~ "um problema de rede. Por favor verifique a rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1800,8 +1872,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Tem a certeza que pretende cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " #~ msgstr "" #~ "Cancelar durante uma actualização pode deixar o seu sistema num estado " #~ "instável. É fortemente aconselhado a prosseguir a operação. " @@ -1816,4 +1888,4 @@ msgstr "Software compatível-DFSG" #~ msgstr "Nunca exibir esta mensagem novamente" #~ msgid "CD" -#~ msgstr "CD" \ No newline at end of file +#~ msgstr "CD" diff --git a/po/pt_BR.po b/po/pt_BR.po index a71e37c0..c56c5abc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Andre Noel \n" "Language-Team: Ubuntu-BR \n" @@ -54,6 +54,7 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Após %s dias" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "Atualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Erro removendo a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave selecionada não pode ser removida. Por favor reporte isto como um " "bug." @@ -167,6 +169,7 @@ msgstr "Não foi possível atualizar os meta-pacotes requeridos" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Não foi possível processar a atualização" @@ -184,6 +187,7 @@ msgstr "" "Por favor reporte esse erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" @@ -211,6 +215,7 @@ msgstr "" "Não foi possível instalar um pacote requerido. Por favor relate isto como um " "erro. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Não foi possível determinar o meta-pacote" @@ -229,11 +234,11 @@ msgstr "" " Por favor, instale um dos pacotes acima usando o synaptic ou apt-get antes " "de seguir adiante." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Falha ao adicionar o CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +253,15 @@ msgstr "" "Mensagem de erro:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Lendo cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Buscar dados da rede para a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +273,11 @@ msgstr "" "Se você possui acesso rápido ou barato à rede você deve responder 'Sim'. Se " "o acesso à rede é caro para você, escolha 'Não'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrado" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +296,12 @@ msgstr "" "'Sim' atualizará todas '%s' para '%s' entradas.\n" "Se você selecionar 'não' a atualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Gerar fontes padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,11 +315,11 @@ msgstr "" "Entradas padrão para '%s' devem ser adicionadas? Se você escolher 'Não' a " "atualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -321,11 +327,11 @@ msgstr "" "A atualização das informações de repositórios resultou em um arquivo " "inválido. Por favor relate isso como um erro." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Fontes de terceiros desabilitadas" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -336,11 +342,11 @@ msgstr "" "pode reabilitá-las após a atualização com a ferramenta 'software-properties' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Erro durante a atualização" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +355,11 @@ msgstr "" "problemas de rede, por favor verifique a sua conexão de rede e tente " "novamente." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Não há espaço suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +370,16 @@ msgstr "" "de disco no %s. Esvazie sua lixeira e remova pacotes temporários de " "instalações anteriores usando 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -386,11 +393,11 @@ msgstr "" "Por favor, informe este erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Não foi possível obter as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +405,11 @@ msgstr "" "A atualização será abortada agora. Por favor verifique sua conexão à " "Internet ou mídia de instalação e tente de novo. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações foi descontinuado" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -416,23 +423,23 @@ msgstr "" "Se você não tiver habilitado os softwares mantidos pela comunidade " "(universe), esses pacotes serão sugeridos para remoção no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Remover pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Pular Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -440,26 +447,28 @@ msgstr "" "Alguns problemas ocorreram durante a limpeza. Por favor veja a mensagem " "abaixo para maiores informações. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restaurando o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Verificando o gerenciador de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Preparação para a atualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" @@ -469,15 +478,15 @@ msgstr "" "um bug do pacote 'update-manager' e inclua os arquivos no /var/log/dist-" "upgrade/ no relatório do bug." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Atualizando informação do repositório" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informação do pacote inválida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -486,28 +495,29 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Depois que a sua informação do pacote foi atualizada, o pacote essencial " -"'%s' não pôde mais ser encontrado.\n" +"Depois que a sua informação do pacote foi atualizada, o pacote essencial '%" +"s' não pôde mais ser encontrado.\n" "Isso indica uma falha grave, por favor reporte isso como um erro no pacote " "do 'update-manager' e inclua os arquivos contidos em /var/log/dist-upgrade/ " "no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pedindo confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Atualizando" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "A atualização do sistema está completa." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -536,6 +546,7 @@ msgstr "Obtendo arquivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando mudanças" @@ -554,6 +565,7 @@ msgstr "" "'update-manager' e inclua os arquivos em /var/log/dist-upgrade/ no relatório " "de erros." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -581,17 +593,18 @@ msgstr "Ocorreu um erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-" -"upgrade.log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização " -"será abortada agora.\n" +"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-upgrade." +"log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização será " +"abortada agora.\n" "Seu sources.list original foi salvo em /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -636,6 +649,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -685,6 +699,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -708,6 +723,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -727,8 +743,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicie o seu sistema para finalizar a atualização" +msgstr "Reinicie o seu sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -819,6 +834,7 @@ msgstr "Não foi possível obter as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor, verifique sua conexão de internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Não foi possível executar a ferramenta de atualização" @@ -921,14 +937,17 @@ msgstr "" "Falha ao baixar a lista de mudanças. \n" "Por favor verifique sua conexão internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Principais Atualizações de Segurança" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Atualizações recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Atualizações sugeridas" @@ -941,6 +960,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Atualizações da distribuição" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras atualizações" @@ -962,6 +982,7 @@ msgstr "_Desmarcar Todos" msgid "_Check All" msgstr "_Marcar Todos" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -996,6 +1017,7 @@ msgstr "Da versão %(old_version)s para %(new_version)s" msgid "Version %s" msgstr "Versão %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1020,6 +1042,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uma nova versão da distribuição '%s' está disponível" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O index do software está quebrado" @@ -1034,19 +1057,23 @@ msgstr "" "Gerenciador de Pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" " "em um terminal para resolver esse problema primeiro." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1288,8 +1315,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação sobre programas disponíveis está " -"desatualizada\n" +"A informação sobre programas disponíveis está desatualizada\n" "\n" "Para instalar programas e atualizações de fontes recentemente adicionadas ou " "alteradas, você tem que recarregar as informações sobre programas " @@ -1399,8 +1426,7 @@ msgstr "Exibir detalhes de uma atualização" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" -"Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" +msgstr "Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1417,190 +1443,233 @@ msgstr "O tamanho da janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os canais de software e atualizações via internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores proprietários para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restrito" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Programa de Código Aberto mantido pela Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela Comunidade (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Programa de Código Aberto mantido pela Comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Drivers Não-livres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores proprietários para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Programas restritos (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restrito por copyright ou problemas legais" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Atualizações \"Backport\"" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Atualizações do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Atualizações do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela Comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livres (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Não é mais suportado oficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrito" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Atualizações do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testando)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instável)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programa compatível com a DFSG mas com Dependências Não-Livres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1614,22 +1683,22 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "A unresolvable problem occured while calculating the upgrade.\n" #~ "\n" -#~ "Please report this bug against the 'update-manager' package and include the " -#~ "files in /var/log/dist-upgrade/ in the bugreport." +#~ "Please report this bug against the 'update-manager' package and include " +#~ "the files in /var/log/dist-upgrade/ in the bugreport." #~ msgstr "" -#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por favor " -#~ "relate isto como um erro." +#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por " +#~ "favor relate isto como um erro." #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "O seu sistema não possui um pacote ubuntu-desktop, kubuntu-desktop ou " -#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você está " -#~ "executando.\n" +#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você " +#~ "está executando.\n" #~ "Por favor instale um desses pacotes primeiro usando o Synaptic ou apt-get " #~ "antes de continuar." @@ -1638,9 +1707,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. Você " -#~ "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " -#~ "programa' ou com o synaptic." +#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. " +#~ "Você poderá reabilitá-las depois de atualizar com a ferramenta " +#~ "'propriedades do programa' ou com o synaptic." #~ msgid "Some software no longer officially supported" #~ msgstr "Alguns softwares não são mais oficialmente suportado." @@ -1658,7 +1727,6 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " #~ "sugeridos à remoção no próximo passo. " -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1666,19 +1734,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Substituir arquivo de configuração\n" #~ "'%s' ?" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pacote será removido." #~ msgstr[1] "%s pacotes serão removidos." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s novo pacote será instalado." #~ msgstr[1] "%s novos pacotes serão instalados." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pacote será atualizado." @@ -1690,10 +1755,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "Seu sistema já foi atualizado." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" #~ "Este download demorará cerca de %s com um modem 56k e cerca de %s com uma " #~ "conexão 1Mbit DSL." @@ -1701,27 +1765,26 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atualizando para o Ubuntu 6.10" +#~ "Atualizando para o Ubuntu 6.10" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" #~ "Falha na verificação da atualização. Pode haver um problema com a rede ou " #~ "com o servidor. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Obtendo arquivo %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de alterações não está disponível ainda. Por favor, tente novamente " -#~ "mais tarde." +#~ "A lista de alterações não está disponível ainda. Por favor, tente " +#~ "novamente mais tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1757,21 +1820,21 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Select _All" #~ msgstr "Selecion_ar Todos" -#, python-format #~ msgid "From version %s to %s" #~ msgstr "Da versão %s para %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Você deve verificar por atualizações manualmente\n" #~ "\n" #~ "O seu sistema não procura por atualizações automaticamente. Você pode " -#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> \"Propriedades " -#~ "de Programas\"." +#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> " +#~ "\"Propriedades de Programas\"." #~ msgid "" #~ "Examining your system\n" @@ -1781,8 +1844,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Verificando as Atualizações Disponíveis\n" #~ "\n" -#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " -#~ "segurança, e prover novas funcionalidades para você." +#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades " +#~ "de segurança, e prover novas funcionalidades para você." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _Download" @@ -1790,8 +1853,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1803,8 +1866,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Você necessita uma conexão de internet para continuar." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the source that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1817,8 +1880,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "Se a verificação automática de atualizações for desativada, você terá que " #~ "recarregar manualmente a lista de canais. Esta opção perminte que você " @@ -1845,18 +1908,17 @@ msgstr "Programas não compatíveis com a DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas atualizações requerem a remoção de outros pacotes.Use a função " -#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou rode " -#~ "\"sudo apt-get dist-upgrade\" em um terminal para atualizar seu sistema " -#~ "completamente." +#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou " +#~ "rode \"sudo apt-get dist-upgrade\" em um terminal para atualizar seu " +#~ "sistema completamente." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes atualizações serão puladas:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Aproximadamente %li segundos restando" @@ -1877,7 +1939,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo tempo" +#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo " +#~ "tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1936,8 +1999,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Backports do Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Enquanto analisava as informações de repositórios não foi encontrada uma " #~ "entrada válida para a atualização.\n" @@ -1988,12 +2051,12 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" #~ "Não há espaço suficiente no seu sistema para obter os pacotes requeridos. " -#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-get " -#~ "clean'" +#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-" +#~ "get clean'" #~ msgid "Error fetching the packages" #~ msgstr "Erro ao obter os pacotes" @@ -2003,8 +2066,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" #~ "Alguns problemas ocorreram durante a obtenção dos pacotes. Isso é bem " -#~ "provável que seja por problemas de rede. Por favor verifique a sua conexão " -#~ "de rede e tente novamente. " +#~ "provável que seja por problemas de rede. Por favor verifique a sua " +#~ "conexão de rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -2029,11 +2092,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Tem certeza que deseja cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " #~ msgstr "" -#~ "Cancelar durante a atualização pode deixar o sistema em um estado instável. " -#~ "É fortemente recomendável que a operação continue. " +#~ "Cancelar durante a atualização pode deixar o sistema em um estado " +#~ "instável. É fortemente recomendável que a operação continue. " #, fuzzy #~ msgid "Sources" @@ -2056,13 +2119,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -2082,16 +2145,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -2116,11 +2179,11 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -2153,11 +2216,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -2166,11 +2231,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -2180,33 +2245,33 @@ msgstr "Programas não compatíveis com a DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "There is a new release of Ubuntu available!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -2238,10 +2303,10 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." \ No newline at end of file +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." diff --git a/po/qu.po b/po/qu.po index ca3261c1..a3b18c03 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Quechua \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -205,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -219,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -235,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -251,11 +256,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -264,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -307,15 +313,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -324,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -347,63 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,22 +422,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -540,6 +553,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +728,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -821,6 +841,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -842,6 +863,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -876,6 +898,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -897,6 +920,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -908,19 +932,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1246,184 +1274,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/ro.po b/po/ro.po index 169a83c3..f679abc5 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: " -"nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?1:2)\n" +"Plural-Forms: nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?" +"1:2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "După o lună" msgid "After %s days" msgstr "După %s zile" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s actualizări" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "Server principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,12 +125,11 @@ msgid "Error removing the key" msgstr "Eroare la ştergerea cheii." #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -167,6 +169,7 @@ msgstr "Este imposibilă actualizarea meta-pachetelor cerute" msgid "A essential package would have to be removed" msgstr "Un pachet esenţial ar trebui şters" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Imposibil de calculat actualizarea" @@ -179,6 +182,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -207,6 +211,7 @@ msgstr "" "Nu am reuşit să instalez pachetul cerut. Vă rugăm raportaţi acest lucru ca " "bug (eroare). " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Imposibl de ghicit meta-pachet" @@ -224,11 +229,11 @@ msgstr "" "program. Înainte de a continua vă rugăm să le remediaţi utilizând synaptic " "sau apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Adăugarea CD-ului a eşuat" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +248,15 @@ msgstr "" "Mesajul de eroare a fost:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Citire cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Descarc date de la reţea pentru actualizare?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +268,11 @@ msgstr "" "Dacă aveţi o conexiune rapidă sau ieftină ar trebui să răspundeti cu 'Da'. " "Dacă accesul la reţea este scump pentru dumneavoastră alegeţi 'Nu'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nicio oglindă validă găsită" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -285,11 +290,12 @@ msgstr "" "Doriţi să rescrieţi fişierul 'sources.list' oricum? Dacă selectaţi 'Da' se " "vor modifica toate intrările din '%s' în '%s'." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generez surse implicite?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +309,11 @@ msgstr "" "Ar trebui ca intrările implicite pentru '%s' să fie adăugate? Daca selectaţi " "'Nu' actualizarea va înceta." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informaţii despre depozit nevalide" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,22 +321,22 @@ msgstr "" "Actualizând informaţiile despre deposit a rezultat într-un fişier nevalid. " "Vă rugăm să reportaţi acest lucru ca eroare." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sursele terţe ar trebui dezactivate" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Eroare în timpul actualizării" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -338,11 +344,11 @@ msgstr "" "A apărut o problemă în timpul actualizării. De obicei este legată de reţea, " "vă rugăm să verificaţi conexiunea dumneavoastra şi să încercaţi din nou." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Spaţiu liber insuficient" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +359,16 @@ msgstr "" "pe disc pe %s. Goliţi coşul de gunoi şi ştergeţi pachetele temporare de la " "instalările vechi folosind 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nu s-au putut instalat upgrade-urile" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -375,11 +382,11 @@ msgstr "" "Vă rugăm raportaţi această eroare la pachetul 'update-manager' şi includeţi " "fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nu pot descărca actualizările" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -387,11 +394,11 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm să verificaţi conexiunea la Internet " "sau sursa de instalare şi să încercaţi din nou. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -400,23 +407,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Şterg pachetele vechi?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Sari peste acest pas" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "Şter_ge" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Eroare în timpul salvării" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -424,43 +431,45 @@ msgstr "" "O problemă a apărut în timpul acţiunii de curăţenie. Vă rugăm vedeţi mesajul " "de mai jos pentru informaţii suplimentare. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 #, fuzzy msgid "Restoring original system state" msgstr "Se reface starea iniţială a sistemului" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Se pregăteşte actualizarea" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Actualizez informaţii depozit" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informaţii pachet nevalide" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -469,27 +478,28 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"După ce informaţiile despre pachete au fost actualizate pachetul esenţial " -"'%s' nu mai poate fi găsit.\n" +"După ce informaţiile despre pachete au fost actualizate pachetul esenţial '%" +"s' nu mai poate fi găsit.\n" "Aceasta indică o eroare serioasă, vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Se aşteaptă confirmarea" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Se actualizează" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Caut software învechit" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -517,6 +527,7 @@ msgstr "Se descarcă fişierul %li din %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Se aplică modificările" @@ -534,6 +545,7 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -557,18 +569,19 @@ msgstr "S-a produs o eroare fatală" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Vă rugăm raportaţi aceasta ca eroare şi includeţi fişierele /var/log/dist-" "upgrade/main.log şi /var/log/dist-upgrade/apt.log în raportul dumneavoastră. " "Actualizarea se orpeşte acum.\n" -"Fişierul iniţial sources.list a fost salvat în " -"/etc/apt/sources.list.distUpgrade." +"Fişierul iniţial sources.list a fost salvat în /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -618,6 +631,7 @@ msgstr "" "Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi " "documentele." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -665,6 +679,7 @@ msgid "%li seconds" msgstr "%li secunde" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -686,6 +701,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -798,6 +814,7 @@ msgstr "Nu pot descărca notiţele de lansare" msgid "Please check your internet connection." msgstr "Verificaţi conexiunea internet" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nu pot rula utilitarul de actualizare" @@ -897,14 +914,17 @@ msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizări importante de securitate" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizări recomandate" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Pachete propuse" @@ -919,6 +939,7 @@ msgstr "Actualizări de securitate Ubuntu 5.04" msgid "Distribution updates" msgstr "_Continuă Actualizarea" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Alte actualizări" @@ -941,6 +962,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -968,7 +990,7 @@ msgid "Checking for updates" msgstr "_Instalează actualizarile" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versiunea nouă: %s (Mărime: %s)" @@ -977,6 +999,7 @@ msgstr "Versiunea nouă: %s (Mărime: %s)" msgid "Version %s" msgstr "Versiunea %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1001,6 +1024,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Noua versiune '%s' este disponibilă" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indexul software este deteriorat" @@ -1015,19 +1039,23 @@ msgstr "" "managerul de pachete \"Synaptic\" sau rulaţi \"sudo apt-get install -f\" " "într-un terminal pentru a remedia această problemă." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nimic" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1300,9 +1328,9 @@ msgstr "" "Introduceţi linia APT completă a locaţiei pe care doriţi să o " "adăugaţi\n" "\n" -"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de " -"exemplu\"deb http://ftp.debian.org sarge main\". Puteţi găsi o " -"descriere detaliată a sintaxei în documentaţie." +"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de exemplu" +"\"deb http://ftp.debian.org sarge main\". Puteţi găsi o descriere " +"detaliată a sintaxei în documentaţie." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1385,191 +1413,235 @@ msgstr "Dimensiunea ferestrei" msgid "Configure the sources for installable software and updates" msgstr "Configurează sursele pentru software instalabil şi actualizări" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Software în contribuţie" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom cu Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pachete non-libere" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restricţionat (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom cu Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizări portate înapoi" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizări Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom cu Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Pachete suportate oficial" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizări Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pachete non-libere (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom cu Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Pachete suportate oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrictiv" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizări de securitate Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizări Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizări de securitate Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibil DFSG cu dependenţe negratuite" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software incompatibil DFSG" @@ -1687,13 +1759,13 @@ msgstr "Software incompatibil DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " -#~ "pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " +#~ "apăsând pe butonul Instalează." #~ msgid "Repository" #~ msgstr "Locaţie" @@ -1713,8 +1785,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "" #~ "Chei autentificare\n" #~ "\n" -#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul unei " -#~ "chei estede a permite verificarea integrităţii unui pachet software " +#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul " +#~ "unei chei estede a permite verificarea integrităţii unui pachet software " #~ "descărcat." #~ msgid "A_uthentication" @@ -1722,8 +1794,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Adăugaţi o nouă cheie în keyring-ul de încredere. Asiguraţi-vă că aţi " #~ "obţinut cheia printr-un canal sigur şi că aveţi încredere în proprietarul " @@ -1740,8 +1812,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Restaurează cheile implicite furnizate împreună cu distribuţia. Această " #~ "acţiune nu va influenţa cheile instalate ca utilizator." @@ -1766,8 +1838,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "Actualizările sunt în curs de aplicare." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1777,8 +1849,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1801,13 +1873,13 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " -#~ "pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " +#~ "apăsând pe butonul Instalează." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/ru.po b/po/ru.po index da731af8..b419d671 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Через месяц" msgid "After %s days" msgstr "Через %s дней" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s обновлений" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Основной сервер" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Ошибка при удалении ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." @@ -166,6 +168,7 @@ msgstr "Невозможно обновить требуемые мета-пак msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" @@ -182,6 +185,7 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" @@ -209,6 +213,7 @@ msgstr "" "Невозможно установить необходимый пакет. Пожалуйста, отправьте отчет об " "ошибке. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" @@ -226,11 +231,11 @@ msgstr "" " Пожалуйста установите один из приведенных выше пакетов с помощью synaptic " "или apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Не удалось добавить CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +250,15 @@ msgstr "" "Сообщение об ошибке:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Чтение кэша" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Получить из сети данные для обновления?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -265,11 +270,11 @@ msgstr "" "Если у вас быстрое и недорогое подключение к сети, то ответь 'Да'. Если " "подключение дорогое для вас, ответьте 'Нет'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Не найдено действующее зеркало" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +293,12 @@ msgstr "" "обновлены все записи '%s' на '%s'.\n" "Ответ 'Нет' отменит обновление." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -300,16 +306,16 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"В результате просмотра 'sources.list' не найдена действующая запись для " -"'%s'.\n" +"В результате просмотра 'sources.list' не найдена действующая запись для '%" +"s'.\n" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Информация о репозитории неверна" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,11 +323,11 @@ msgstr "" "В результате обновления информации о репозиториях образовался неверный файл. " "Пожалуйста отправьте отчет об ошибке." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Источники третьих сторон отключены" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -331,11 +337,11 @@ msgstr "" "обновления вы можете снова включить их с помощью утилиты 'software-" "properties' или synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Ошибка при обновлении" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +349,11 @@ msgstr "" "При обновлении возникла проблема. Обычно это бывает вызвано проблемами в " "сети, проверьте сетевые подключения и повторите попытку." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Недостаточно свободного места на диске" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -358,15 +364,16 @@ msgstr "" "%s. Очистите вашу корзину и удалите временные пакеты, оставшиеся от " "предыдущих установок с помощью команды 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Невозможно установить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -380,11 +387,11 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Невозможно загрузить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -392,11 +399,11 @@ msgstr "" "Обновление прервано. Проверьте соединение с Интернет или установочный диск и " "попробуйте снова. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Некоторые программы больше не поддерживаются" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -410,23 +417,23 @@ msgstr "" "Если у вас не подключен репозиторий сообщества (universe), на следующем шаге " "вам предложат удалить эти пакеты." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Пропустить этот шаг" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "Удалить" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Ошибка при фиксировании" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,44 +441,46 @@ msgstr "" "При очистке возникла проблема. Более полная информация приведена в сообщении " "ниже. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Загрузка '%s' из репозитария backports" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Подготовка к обновлению завершилась неудачей" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" "Подготовка системы к обновлению завершилась неудачей. Пожалуйста, отправьте " -"отчет об ошибке приложения 'update-manager' и приложите к отчету файлы в " -"/var/log/dist-upgrade/." +"отчет об ошибке приложения 'update-manager' и приложите к отчету файлы в /" +"var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Обновление информации о репозитории" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Неверная информация о пакете" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -484,22 +493,23 @@ msgstr "" "Это серьёзная проблема, пожалуйста, сообщите об ошибке пакета 'update-" "manager', включив в отчёт об ошибке файлы, лежащие в /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Запрос подтверждения" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Обновление" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Обновление системы завершено." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -527,6 +537,7 @@ msgstr "Загрузка файла %li из %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Применение изменений" @@ -544,6 +555,7 @@ msgstr "" "Обновление прервано. Пожалуйста сообщите об ошибке в пакете 'update-manager' " "и включите файлы, находящиеся в /var/log/dist-upgrade/ в сообщение об ошибке" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -571,17 +583,18 @@ msgstr "Произошла неисправимая ошибка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Пожалуйста, отправьте отчет об ошибке и включите в него файлы /var/log/dist-" "upgrade.log и /var/log/dist-upgrade-apt.log. Обновление прервано.\n" -"Оригинальный файл sources.list был сохранен как " -"/etc/apt/sources.list.distUpgrade." +"Оригинальный файл sources.list был сохранен как /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -630,6 +643,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -678,6 +692,7 @@ msgid "%li seconds" msgstr "%li секунд" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -694,12 +709,12 @@ msgstr "Требуется перезагрузка" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" +msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -810,6 +825,7 @@ msgstr "Не могу загрузить сведения о релизе" msgid "Please check your internet connection." msgstr "Пожалуйста, проверьте соединение с интернет." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Невозможно запустить утилиту обновления" @@ -911,14 +927,17 @@ msgstr "" "Ошибка при загрузке списка изменений. \n" "Пожалуйста, проверьте ваше соединение с Интернет." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Важные обновления безопасности" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Рекомендованые обновления" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Предлагаемые обновления" @@ -931,6 +950,7 @@ msgstr "Бэкпорты" msgid "Distribution updates" msgstr "Обновления дистрибутива" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Прочие обновления" @@ -952,6 +972,7 @@ msgstr "Сбросить все" msgid "_Check All" msgstr "Проверить все" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -987,6 +1008,7 @@ msgstr "С версии %(old_version)s на %(new_version)s" msgid "Version %s" msgstr "Версия %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1011,6 +1033,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индекс программ поврежден" @@ -1025,19 +1048,23 @@ msgstr "" "используйте менеджер пакетов \"Synaptic\" или запустите в терминале \"sudo " "apt-get install -f\"." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Нет" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Кб" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Кб" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1403,207 +1430,251 @@ msgstr "Размер окна" msgid "Configure the sources for installable software and updates" msgstr "Настроить источники установки программ и обновлений" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Поддерживается сообществом" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Проприетарные драйвера устройств" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Несвободное ПО" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM с Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Open Source приложения, поддерживаемые Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Поддерживается сообществом (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Поддерживаемое сообществом свободное ПО" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Несвободные драйвера" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Проприетарные драйвера устройств " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Несвободное обеспечение (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Программы, ограниченные патентами или законами" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD с Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Обновления в бэкпортах" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD с Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Обновления Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 бэкпорты" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официально поддерживается" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Обновления безопасности Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Обновления Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 бэкпорты" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддерживается сообществом (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободное (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Официально больше не поддерживается" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограниченные авторские права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Обновления безопасности Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Обновления Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 бэкпорты" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Обновления безопасности Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-совместимое ПО с зависимостями от несвободного ПО" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." #~ msgstr "" #~ "Если вы замените файл его поздней версией, вы потеряете все изменения " #~ "сделанные вами или скриптами." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" #~ "Скачивание займёт примерно %s при 56к модеме и примерно %s при 1Мбит DSL-" #~ "подключении" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." +#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте " +#~ "позднее." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1620,7 +1691,6 @@ msgstr "Не-DFSG-совместимое ПО" #~ "Программное обеспечение, ограниченное копирайтом или другими правовыми " #~ "проблемами" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Загрузка файла %li из %li с неизвестной скоростью" @@ -1671,17 +1741,17 @@ msgstr "Не-DFSG-совместимое ПО" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Некоторые обновления требуют удаления других приложений. Для полного " -#~ "обновления системы используйте функцию \"Пометить все обновления\" менеджера " -#~ "пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get dist-upgrade\"." +#~ "обновления системы используйте функцию \"Пометить все обновления\" " +#~ "менеджера пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get " +#~ "dist-upgrade\"." #~ msgid "The following updates will be skipped:" #~ msgstr "Следующие обновления будут пропущены:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Осталось приблизительно %li секунд" @@ -1757,4 +1827,4 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgstr "Обновления Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/rw.po b/po/rw.po index 6455a0e8..0f184568 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -63,13 +63,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Kwinjiza porogaramu" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -79,6 +81,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -133,8 +136,7 @@ msgstr "i Urufunguzo" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -171,6 +173,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -184,6 +187,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -207,6 +211,7 @@ msgid "" "bug. " msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -220,11 +225,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -234,15 +239,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -250,11 +255,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +271,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +285,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "i Urufunguzo" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +329,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -363,49 +370,51 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "Muyobozi ni" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -413,15 +422,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -431,23 +440,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Byarangiye" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -475,6 +485,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -491,6 +502,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -514,13 +526,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -557,6 +570,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -605,6 +619,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -624,6 +639,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -735,6 +751,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -830,15 +847,18 @@ msgid "" msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "5" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -854,13 +874,14 @@ msgstr "5" msgid "Distribution updates" msgstr "Byarangiye" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Kwinjiza porogaramu" #: ../UpdateManager/UpdateManager.py:478 -#, fuzzy +#, fuzzy, python-format msgid "Version %s: \n" msgstr "Verisiyo \n" @@ -877,13 +898,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" @@ -907,10 +929,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Verisiyo" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -933,6 +956,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -944,19 +968,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1306,207 +1334,252 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Kohereza Nta gukoresha bisesuye" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Kigenga" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Kigenga" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 #, fuzzy msgid "Non-free (Multiverse)" msgstr "Kigenga" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "Uburenganzira bw'umuhimbyi" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "5" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "4. 10" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1637,8 +1710,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "> Ukoresha: Utubuto" @@ -1725,7 +1798,8 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "i Bya i Igikorwa Nka gukora iyinjizaporogaramu:%s Cyangwa ni Bya ngombwa " #~ "Gukoresha Cyangwa Kubona Kuri i" @@ -1740,8 +1814,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1756,16 +1830,16 @@ msgstr "" #, fuzzy #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi Ibyangombwa " -#~ "HTTP www org kugirango Ibisobanuro" +#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi " +#~ "Ibyangombwa HTTP www org kugirango Ibisobanuro" #, fuzzy #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "A Gishya Na: i ni Bihari HTTP www org kugirango Amabwiriza" #, fuzzy @@ -1774,8 +1848,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1804,4 +1878,4 @@ msgstr "" #, fuzzy #~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "com" \ No newline at end of file +#~ msgstr "com" diff --git a/po/sk.po b/po/sk.po index e8f9c5da..653c6f01 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -55,15 +55,17 @@ msgstr "Po mesiaci" msgid "After %s days" msgstr "Po %s dňoch" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Nainštalovať _aktualizácie" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy +#, fuzzy, python-format msgid "%s (%s)" msgstr "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,12 +126,11 @@ msgid "Error removing the key" msgstr "Chyba pri odstraňovaní kľúča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Nemôžem aktualizovať požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" @@ -181,6 +184,7 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" @@ -206,6 +210,7 @@ msgid "" "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." @@ -224,12 +229,12 @@ msgstr "" "Pred pokračovaním nainštalujte jeden z vyššie uvedených balíkov pomocou " "Synapticu alebo apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Zlyhalo získavanie aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -239,15 +244,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Čítam vyrovnávaciu pamäť cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -255,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nebol nájdený vhodný server" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -278,11 +283,12 @@ msgstr "" "nahradené všetky '%s' záznamy '%s' záznamami.\n" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -290,17 +296,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre " -"'%s'.\n" +"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre '%" +"s'.\n" "\n" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Neplatná informácia o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -308,11 +314,11 @@ msgstr "" "Aktualizácia informácií o zdrojoch softvéru skončila neplatným súborom. " "Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Zdroje tretích strán sú zakázané" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -323,11 +329,11 @@ msgstr "" "Môžete ich povoliť po upgrade pomocou nástroja 'vlastnosti-softwaru' alebo " "pomocou synapticu." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Chyba počas aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -335,11 +341,11 @@ msgstr "" "Počas aktualizácie sa objavil problém, ktorý je zvyčajne spôsobený chybou " "sieťového pripojenia, preto skontrolujte vaše pripojenie a skúste znova." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Nedostatok voľného miesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -350,15 +356,16 @@ msgstr "" "vyprázdnením svojho kôša, prípadne odstránením dočasných inštalačných " "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -370,11 +377,11 @@ msgstr "" "Aktualizácia teraz skončí. Váš systém môže byť v nepoužiteľnom stave, preto " "bol spustený príkaz na zotavenie sa z tohto stavu (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť požadované balíky" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -382,11 +389,11 @@ msgstr "" "Aktualizácia bola neočakávane prerušená. Skontrolujte svoje internetové " "pripojenie alebo inštalačné médiá a skúste znova. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -401,23 +408,23 @@ msgstr "" "Pokiaľ nemáte zapnutý komunitou spravovaný zdroj softvéru 'universe', budú " "tieto balíky v ďalšom kroku navrhnuté na odstránenie." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Preskočiť tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Odstrániť" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -425,27 +432,29 @@ msgstr "" "Počas čistenia sa vyskytli problémy. Pre viac informácií si pozrite nižšie " "uvedené správy. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Kontrola správcu balíkov" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Prebieha príprava aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -455,16 +464,16 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aktualizácia informácií o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -472,26 +481,27 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík " -"'%s'.\n" +"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík '%" +"s'.\n" "To znamená závažný problém. Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Požaduje sa potvrdenie" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Prebieha aktualizácia" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -503,23 +513,24 @@ msgid "Fetching is complete" msgstr "Aktualizácia je dokončená" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Zostáva %li minút" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Sťahujem %li súbor z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikujem zmeny" @@ -535,8 +546,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -561,20 +573,21 @@ msgstr "Nastala závažná chyba" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nahláste to ako chybu a k svojmu hláseniu priložte súbory /var/log/dist-" "upgrade.log a /var/log/dist-upgrade-apt.log. Aktualizácia bude teraz " "prerušená.\n" -"Váš pôvodný súbor 'sources.list' bol uložený ako " -"/etc/apt/sources.list.distUpgrade." +"Váš pôvodný súbor 'sources.list' bol uložený ako /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bude odstránený %s balík." @@ -582,7 +595,7 @@ msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bude nainštalovaný %s nový balík." @@ -590,7 +603,7 @@ msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bude aktualizovaný %s balík." @@ -598,7 +611,7 @@ msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -613,14 +626,14 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." +msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -648,12 +661,12 @@ msgid "Upgrade %s" msgstr "Aktualizovať %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Zostáva %li dní %li hodín %li minút" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Zostáva %li hodín %li minút" @@ -668,6 +681,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -689,6 +703,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -802,6 +817,7 @@ msgstr "Nebolo možné stiahnuť poznámky k vydaniu" msgid "Please check your internet connection." msgstr "Skontrolujte si internetové pripojenie." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nebolo možné spustiť aktualizačný program" @@ -875,12 +891,12 @@ msgstr "" "problémom alebo nedostupňosťou servera. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Sťahovanie súboru %li z %li pri %s/s" @@ -905,15 +921,18 @@ msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -929,6 +948,7 @@ msgstr "Ubuntu 5.10 - backporty" msgid "Distribution updates" msgstr "_Pokračovať v aktualizácii" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -953,6 +973,7 @@ msgstr "" msgid "_Check All" msgstr "_Skontrolovať" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -980,15 +1001,16 @@ msgid "Checking for updates" msgstr "Kontrolujem aktualizácie..." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verzia: %s (veľkosť: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Verzia %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1006,14 +1028,15 @@ msgid "" msgstr "" "Nebudete mať k dispozícii žiadne nové bezpečnostné ani kritické " "aktualizácie. Prejdite preto na najnovšiu verziu distribúcie Ubuntu Linux. " -"Pre viac informácií o prechode na novšiu verziu si pozrite " -"http://www.ubuntu.com.\"" +"Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." +"com.\"" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "K dispozícii je nové vydanie distribúcie '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Index softvéru je poškodený" @@ -1028,20 +1051,24 @@ msgstr "" "Na odstránenie tohto problému použite správcu balíkov 'Synaptic' alebo " "spustite 'sudo apt-get install -f' v termáli." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "Žiadna" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1323,11 +1350,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " -"pridať\n" +"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete pridať\n" "\n" -"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " -"\"deb·http://ftp.debian.org·sarge·main\"." +"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " +"\"deb·http://ftp.debian.org·sarge·main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1419,206 +1446,250 @@ msgstr "Veľkosť okna" msgid "Configure the sources for installable software and updates" msgstr "Nastaviť zdroje softvéru a internetové aktualizácie" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 - aktualizácie" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Udržiavané komunitou (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Softvér závislý na neslobornom softvéri" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Udržiavané komunitou (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neslobodné (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neslobodné (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 - aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 - backporty" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálne podporované" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 - aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 - backporty" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodné (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Niektoré programy už nie sú viac oficiálne podporované" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "S obmedzujúcou licenciou" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 - backporty" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Softvér kompatibilný s DFSG bez závislostí na neslobodnom softvére" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" @@ -1627,7 +1698,6 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Softvér s obmedzených exportom pre USA" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" @@ -1651,8 +1721,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Prebieha aktualizácia na Ubuntu 6.06 " -#~ "LTS" +#~ "Prebieha aktualizácia na Ubuntu " +#~ "6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1681,18 +1751,17 @@ msgstr "Softvér nekompatibilný s DFSG" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste vykonali " -#~ "úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie\" správcu " -#~ "balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade\" v " -#~ "termináli." +#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste " +#~ "vykonali úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie" +#~ "\" správcu balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade" +#~ "\" v termináli." #~ msgid "The following updates will be skipped:" #~ msgstr "Nasledujúce balíky nebudú aktualizované:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zostáva %li sekúnd" @@ -1775,15 +1844,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Nebol nájdený žiadny platný záznam" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na použitie " -#~ "pre upgrade.\n" +#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na " +#~ "použitie pre upgrade.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Upgrade neočakávane skončil. Váš systém môže byt v nestabilnom stave. Pre " #~ "opravu skúste teraz spustiť (dpkg --configure -a)." @@ -1792,8 +1861,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log a " -#~ "~/dist-upgrade-apt.log. Upgrade teraz skončí. " +#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log " +#~ "a ~/dist-upgrade-apt.log. Upgrade teraz skončí. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1808,14 +1877,14 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených vo " -#~ "vašich zdrojoch softvéru. Chcete to urobiť teraz?" +#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených " +#~ "vo vašich zdrojoch softvéru. Chcete to urobiť teraz?" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analyzuje sa váš systém\n" #~ "\n" @@ -1823,8 +1892,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Softvérové aktualizácie môžu opravovať chyby, odstraňovať bezpečnostné " #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." @@ -1835,15 +1904,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "installed therefor" #~ msgstr "" #~ "Automaticky budú inštalované len bezpečnostné aktualizácie z oficiálnych " -#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček 'unattended-" -#~ "upgrades'." +#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček " +#~ "'unattended-upgrades'." #~ msgid "Sections" #~ msgstr "Sekcie:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1851,8 +1920,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " #~ "pridať\n" #~ "\n" -#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " -#~ "\"deb·http://ftp.debian.org·sarge·main\"." +#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " +#~ "\"deb·http://ftp.debian.org·sarge·main\"." #~ msgid "Sections:" #~ msgstr "Sekcie:" @@ -1884,8 +1953,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "umožňuje overiť integritu stiahnutého softvéru." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Pridať nový kľúč do zväzku dôveryhodných kľúčov. Uistite sa, že ste kľúč " #~ "dostali bezpečnou cestou, a že môžete veriť jeho vydavateľovi. " @@ -1915,8 +1984,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Maximálna veľkosť archívu na disku (v MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Obnoví pôvodné kľúče dodávané s vašou distribúciou. Toto neovplyvní " #~ "používateľom nainštalovnané kľúče." @@ -1948,8 +2017,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostupné aktualizácie\n" #~ "\n" @@ -2030,7 +2099,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr[2] "Vybrali ste %s balíkov na aktualizáciu, veľkosť %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[1] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[2] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" @@ -2039,8 +2109,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Práve prebieha aktualizácia." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Môžete mať spustenú najviac jednu aplikáciu na správu balíkov. Prosím, " #~ "najprv zavrite druhú aplikáciu." @@ -2053,8 +2123,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Prejdite prosím, na novšiu verziu distribúcie Ubuntu Linux. Verzia, ktorú " #~ "používate nie je viac podporovaná. To znamená, že už nie sú k dispozícii " @@ -2065,12 +2135,12 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Bola nájdená novšia verzia Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". Pre " -#~ "viac informácií o prechode na vyššiu verziu si pozrite " -#~ "http://www.ubuntulinux.org." +#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". " +#~ "Pre viac informácií o prechode na vyššiu verziu si pozrite http://www." +#~ "ubuntulinux.org." #~ msgid "Never show this message again" #~ msgstr "Už viac nezobrazovať toto upozornenie" @@ -2083,4 +2153,4 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "A_utentifikácia" #~ msgid "Packages to install:" -#~ msgstr "Balíky na inštaláciu:" \ No newline at end of file +#~ msgstr "Balíky na inštaláciu:" diff --git a/po/sl.po b/po/sl.po index e02fc98a..baba6c98 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%" +"100==4 ? 2 : 3\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Po enem mesecu" msgid "After %s days" msgstr "Po %s dnevih" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Napaka pri odstranitvi kluča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Kluč, katerega ste izbrali, se ne more odstraniti. Prosim, javite to kot " "napako." @@ -153,7 +155,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Vaš sistem vsebuje pokvarjene pakete, ki se ne morejo obnoviti s to " -"programsko opremo. \n" +"programsko opremo.\r\n" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." @@ -165,6 +167,7 @@ msgstr "Ne morem nadgraditi zahtevanih meta-paketov" msgid "A essential package would have to be removed" msgstr "Bistven paket se bo moral odstraniti" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ne morem izračunati nadgradnje" @@ -177,6 +180,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Napaka pristnosti nekaterih paketov" @@ -192,7 +196,7 @@ msgstr "" "paketov." #: ../DistUpgrade/DistUpgradeCache.py:312 -#, fuzzy +#, fuzzy, python-format msgid "Can't install '%s'" msgstr "Ne morem namestiti '%s'" @@ -203,6 +207,7 @@ msgid "" msgstr "" "Nemogoče je bilo namestiti zahtevani paket. Prosim, javite to kot napaka. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ne morem ugibati meta-paketa" @@ -216,11 +221,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -230,15 +235,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Berem zalogo" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -246,11 +251,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Najdena neveljavna zrcalnost" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -270,11 +275,12 @@ msgstr "" "izberete 'Yes', vam bo posodobilo vse vhode iz '%s' v '%s'.\n" "Če izberete 'no', se bo posodobitev prekinila." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Proizvedem pomanjkljive izvore?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -287,11 +293,11 @@ msgstr "" "Se naj dodajo pomanjkljivi vnosi za '%s'? Če izberete 'No', se bo " "posodabljanje prekinilo." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Neveljavna shranjena informacija" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -299,22 +305,22 @@ msgstr "" "Nadgradnja shranjene informacije je zaključena kot neveljavna datoteka. " "Prosim, javite to kot napaka." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Izvor tretje skupine izključen" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Napaka med posodobitvijo" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -322,11 +328,11 @@ msgstr "" "Med posodobitvijo je prišlo do napake. Ponavadi je to lahko omrežna napaka, " "prosim, da preverite vaše omrežje in poskusite znova." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Premalo prostora na disku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -337,15 +343,16 @@ msgstr "" "prostora na %s. Izpraznite koš in odstranite začasne pakete prejšnjih " "namesitev z uporabo 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Želite pričeti z nadgradnjo?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Ne morem namestiti nadgradenj." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -354,11 +361,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Ne morem sneti nadgradenj" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -366,11 +373,11 @@ msgstr "" "Nadgradnja sedaj končuje. Prosim, preverite internetno povezavo ali " "namestitveni medij in poizkusite znova. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -379,23 +386,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Odstranim neuporabne pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Preskoči ta korak" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Odstrani" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Napaka med izvedbo" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -403,41 +410,43 @@ msgstr "" "Med čiščenjem je prišlo do problema. Prosim, poglejte sporočilo spodaj za " "več informacij. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Preverjam paketni upravitelj" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Posodabljam shranjeno informacijo" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Neveljavna paketna informacija" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -447,22 +456,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Sprašujem za potrditev" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Nadgrajevanje" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Nadgrajevanje sistema je dokončano" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -490,6 +500,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -505,6 +516,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -528,13 +540,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -580,6 +593,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -627,6 +641,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -646,6 +661,7 @@ msgstr "Nadgrajevanje je končano in potreben je ponoven zagon" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -752,6 +768,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -841,14 +858,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -861,6 +881,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -882,6 +903,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -918,6 +940,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -939,6 +962,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -950,19 +974,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1289,184 +1317,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sq.po b/po/sq.po index f5a258aa..731d45af 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" @@ -55,6 +55,7 @@ msgstr "Pas një muaji" msgid "After %s days" msgstr "Pas %s ditësh" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s përmirësimet" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Gabim gjatë largimit të çelësit" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Çelësi i zgjedhur nuk mund të largohet.Ju lutemi krijoni këtu një raport për " "gabimin." @@ -168,6 +170,7 @@ msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." msgid "A essential package would have to be removed" msgstr "Një paketë themelore u deshtë të largohej" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Aktualizimi nuk mund të llogaritej" @@ -182,6 +185,7 @@ msgstr "" "Një problem i pazgjidhshëm ndodhi gjatë aktualizimit.Ju lutemi krijoni një " "raport për këtë gabim." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." @@ -209,6 +213,7 @@ msgstr "" "Një paketë i nevojshëm nuk mundi të instalohet.Ju lutemi raportoni këtë " "problem. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -227,11 +232,11 @@ msgstr "" "Ju lutemi instaloni njërën nga paketat e theksuara nëpërmjet Synaptic ose " "apt-get, para se të vazhdoni." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Futja e CD dështoi" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -241,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -257,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -273,11 +278,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -286,42 +292,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +335,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,21 +353,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -369,63 +376,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,22 +444,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -478,6 +488,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -493,6 +504,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -516,13 +528,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -562,6 +575,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -609,6 +623,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,6 +643,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -734,6 +750,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -823,14 +840,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -843,6 +863,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -864,6 +885,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -898,6 +920,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,6 +942,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -930,19 +954,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1268,184 +1296,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sr.po b/po/sr.po index 260a66e0..b5f6a382 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Posle jednog meseca" msgid "After %s days" msgstr "Posle %s dana" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgstr "Грешка у уклањању кључа" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Кључ који сте изабрали није могуће уклонити. Молим вас пријавите ово као " "грешку." @@ -171,6 +173,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -183,6 +186,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -205,6 +209,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -218,11 +223,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -232,15 +237,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -248,11 +253,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +269,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,62 +283,63 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 #, fuzzy msgid "Not enough free disk space" msgstr "Нема довољно места на диску" -#: ../DistUpgrade/DistUpgradeControler.py:369 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:374 +#, fuzzy, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску " -"%s. Испразните канту за отпаtке и уклоните привремене пакете предходних " +"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску %" +"s. Испразните канту за отпаtке и уклоните привремене пакете предходних " "инсталација користећи команду 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +348,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,63 +371,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Прескочи овај корак" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Уклони" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,23 +439,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 #, fuzzy msgid "System upgrade is complete." msgstr "Унапређење система је завршено" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -474,6 +484,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -489,6 +500,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -513,13 +525,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -564,6 +577,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Да би спречили губитак података затворите све активне програме и документа." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -611,6 +625,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -631,6 +646,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -738,6 +754,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -827,14 +844,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -847,6 +867,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -868,6 +889,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -903,6 +925,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -924,6 +947,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -935,19 +959,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1274,184 +1302,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sv.po b/po/sv.po index e3ede40a..a690f9f9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 05:06+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -56,6 +56,7 @@ msgstr "Efter en månad" msgid "After %s days" msgstr "Efter %s dagar" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "Uppdateringar för %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Huvudserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Fel vid borttagning av nyckeln" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nyckeln du valde kan inte tas bort. Rapportera detta som ett fel." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -166,6 +168,7 @@ msgstr "Kan inte uppdatera de obligatoriska meta-paketen" msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppgraderingen" @@ -182,6 +185,7 @@ msgstr "" "Rapportera det här felet mot paketet \"update-manager\" och inkludera " "filerna i /var/log/dist-upgrade/ i felrapporten." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" @@ -209,6 +213,7 @@ msgstr "" "Det var inte möjligt att installera ett nödvändigt paket. Rapportera detta " "som ett fel. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" @@ -227,11 +232,11 @@ msgstr "" " Installera först ett av paketen ovan med Synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Misslyckades med att lägga till cd-skivan" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +251,15 @@ msgstr "" "Felmeddelandet var:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Läser cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Hämta uppgraderingsdata från nätverket?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +273,11 @@ msgstr "" "Om du har en snabb nätverksanslutning bör du svara \"Ja\" här. Om nätverket " "är långsamt kan du svara \"Nej\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Hittade ingen giltig serverspegel" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +296,12 @@ msgstr "" "här kommer det att uppdatera alla \"%s\" till \"%s\".\n" "Om du väljer \"Nej\" kommer uppdateringen avbrytas." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generera standardkällor?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +314,11 @@ msgstr "" "Ska standardposter för \"%s\" läggas till? Om du väljer \"Nej\" kommer " "uppdateringen avbrytas." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Förrådsinformationen är ogiltig" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,11 +326,11 @@ msgstr "" "Uppdatering av förrådsinformationen orsakade en ogiltig fil. Rapportera " "detta som ett fel." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Tredjepartskällor inaktiverade" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -334,11 +340,11 @@ msgstr "" "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " "eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fel vid uppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -347,11 +353,11 @@ msgstr "" "av nätverksproblem, var god kontrollera din nätverksanslutning och försök " "igen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Inte tillräckligt med ledigt diskutrymme" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +368,16 @@ msgstr "" "papperskorg och ta bort temporära paket från tidigare installationer genom " "att använda \"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -381,14 +388,14 @@ msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " "En återhämtning kördes (dpkg --configure -a).\n" "\n" -"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i " -"/var/log/dist-upgrade/ i felrapporten." +"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i /" +"var/log/dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Det gick inte att hämta uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +403,11 @@ msgstr "" "Uppgraderingen avbryts nu. Var god kontrollera din Internetanslutning eller " "ditt installationsmedia, och försök igen. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Stöd för vissa program har upphört" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -414,23 +421,23 @@ msgstr "" "Om du inte har aktiverat gemenskapsunderhållen programvara (universe), " "kommer dessa paket att föreslås för borttagning i nästa steg." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Hoppa över det här steget" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Ta bort" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fel inträffade vid verkställandet" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,44 +445,46 @@ msgstr "" "Något fel inträffade vid upprensningen. Se meddelandet nedan för mer " "information. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Återställer ursprungligt systemtillstånd" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Hämtar bakåtportering av \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Förberedelse av uppgradering misslyckades" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" "Förberedelse av systemet för uppgraderingen misslyckades. Rapportera det här " -"som ett fel mot paketet \"update-manager\" och inkludera filerna i " -"/var/log/dist-upgrade/ i felrapporten." +"som ett fel mot paketet \"update-manager\" och inkludera filerna i /var/log/" +"dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ogiltig paketinformation" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -490,22 +499,23 @@ msgstr "" "fel mot paketet \"update-manager\" och bifoga filerna i /var/log/dist-" "upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Ber om bekräftelse" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Uppgraderar" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Söker efter föråldrad programvara" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -533,6 +543,7 @@ msgstr "Hämtar fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Verkställer ändringar" @@ -547,9 +558,10 @@ 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 bugreport." msgstr "" -"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-" -"manager\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." +"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-manager" +"\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -577,17 +589,18 @@ msgstr "Ett ödesdigert fel uppstod" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapportera detta som ett fel och bifoga filerna /var/log/dist-" -"upgrade/main.log och /var/log/dist-upgrade/apt.log i din rapport. " -"Uppgraderingen avbryts nu.\n" +"Rapportera detta som ett fel och bifoga filerna /var/log/dist-upgrade/main." +"log och /var/log/dist-upgrade/apt.log i din rapport. Uppgraderingen avbryts " +"nu.\n" "Din ursprungliga sources.list sparades som /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -632,6 +645,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -681,6 +695,7 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -703,6 +718,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -814,6 +830,7 @@ msgstr "Det gick inte att hämta versionsfaktan" msgid "Please check your internet connection." msgstr "Kontrollera din Internetanslutning." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Det gick inte att köra uppgraderingsverktyget" @@ -917,14 +934,17 @@ msgstr "" "Misslyckades med att hämta listan över ändringar. \n" "Kontrollera din Internetanslutning." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Viktiga säkerhetsuppdateringar" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rekommenderade uppdateringar" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Föreslagna uppdateringar" @@ -937,6 +957,7 @@ msgstr "Bakåtporteringar" msgid "Distribution updates" msgstr "Uppdateringar för utgåva" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Övriga uppdateringar" @@ -958,6 +979,7 @@ msgstr "_Avmarkera allt" msgid "_Check All" msgstr "_Kontrollera alla" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -992,6 +1014,7 @@ msgstr "Från version %(old_version)s till %(new_version)s" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1016,6 +1039,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Ny distributionsutgåva \"%s\" finns tillgänglig" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programindexet är trasigt" @@ -1030,19 +1054,23 @@ msgstr "" "pakethanteraren \"Synaptic\" eller kör \"sudo apt-get install -f\" i en " "terminal för att rätta till det här problemet först." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1407,193 +1435,235 @@ msgstr "Fönsterstorleken" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" -"Konfigurera källorna för installerbara programvaror och uppdateringar" +msgstr "Konfigurera källorna för installerbara programvaror och uppdateringar" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Gemenskapsunderhållen" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Properitära drivrutiner för enheter" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Inskränkt programvara" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Öppen källkodsprogramvara som stöds av Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Gemenskapsunderhållen (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Öppen källkodsprogramvara underhållen av gemenskapen" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ickefria drivrutiner" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Properitära drivrutiner för enheter " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Inskränkt programvara (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Programvara begränsad av upphovsrätt eller juridiska avtal" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Bakåtporterade uppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Stöds officiellt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Uppdateringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Bakåtporteringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Gemenskapsunderhållen (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ickefri (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Stöds inte längre officiellt" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begränsad upphovsrätt" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Uppdateringar för Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Bakåtporteringar för Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Säkerhetsuppdateringar" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://ftp.se.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel programvara med icke-fria beroenden" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Icke-DFSG-kompatibel programvara" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1604,22 +1674,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Ett problem uppstod som inte gick att lösa när uppgraderingen beräknades. " #~ "Rapportera detta som ett fel. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller edubuntu-" -#~ "desktop och det gick inte att identifiera vilken version av Ubuntu du " -#~ "använder.\n" +#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller " +#~ "edubuntu-desktop och det gick inte att identifiera vilken version av " +#~ "Ubuntu du använder.\n" #~ " Installera ett av dessa paket först med synaptic eller apt-get innan du " #~ "fortsätter." @@ -1629,15 +1699,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "synaptic." #~ msgstr "" #~ "Vissa tredjepartskällor i din sources.list blev inaktiverade. Du kan " -#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " -#~ "eller med synaptic." +#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties" +#~ "\" eller med synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " -#~ "En återhämtning kördes (dpkg --configure -a)." +#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart " +#~ "tillstånd. En återhämtning kördes (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Viss programvara stöds inte officiellt längre" @@ -1649,14 +1719,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "If you don't have 'universe' enabled these packages will be suggested for " #~ "removal in the next step. " #~ msgstr "" -#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " -#~ "gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" aktiverat " -#~ "kommer dessa paket föreslås för borttagning i nästa steg. " +#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu " +#~ "enbart gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" " +#~ "aktiverat kommer dessa paket föreslås för borttagning i nästa steg. " #~ msgid "Restoring originale system state" #~ msgstr "Återställer ursprunglig systemstatus" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1666,37 +1735,30 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "nödvändiga paketet \"%s\" längre.\n" #~ "Det här tyder på ett allvarligt fel, rapportera detta som ett fel." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Ungefär %li dagar, %li timmar och %li minuter återstår" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Ungefär %li timmar och %li minuter återstår" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Ungefär %li minuter återstår" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefär %li sekunder återstår" #~ msgid "Download is complete" #~ msgstr "Hämtningen är färdig" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Hämtar fil %li av %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Uppdateringen avbryts nu. Rapportera detta som ett fel." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1705,38 +1767,38 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade.log " -#~ "och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen avbryts nu.\n" -#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." +#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade." +#~ "log och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen " +#~ "avbryts nu.\n" +#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s paket kommer att tas bort." #~ msgstr[1] "%s paket kommer att tas bort." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nytt paket kommer att installeras." #~ msgstr[1] "%s nya paket kommer att installeras." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s paket kommer att uppgraderas." #~ msgstr[1] "%s paket kommer att uppgraderas." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Du behöver hämta totalt %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" #~ "Uppgraderingen kan ta flera timmar och kan inte avbrytas under tiden." @@ -1749,8 +1811,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Uppgraderar till Ubuntu 6.06 " -#~ "LTS" +#~ "Uppgraderar till Ubuntu 6.06 LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Hämtar och installerar uppgraderingarna" @@ -1759,17 +1821,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgraderar Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem med " -#~ "nätverket eller med servern. " +#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem " +#~ "med nätverket eller med servern. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Hämtar fil %li av %li med okänd hastighet" @@ -1788,13 +1848,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Vissa uppdateringar kräver att andra program avinstalleras. Använd " -#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic eller " -#~ "kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera ditt " -#~ "system helt och hållet." +#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic " +#~ "eller kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera " +#~ "ditt system helt och hållet." #~ msgid "The following updates will be skipped:" #~ msgstr "Följande uppdateringar kommer att hoppas över:" @@ -1808,7 +1868,6 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Show details" #~ msgstr "Visa detaljer" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Ny version: %s (storlek: %s)" @@ -1823,13 +1882,14 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Du måste leta efter uppdateringar manuellt\n" #~ "\n" -#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan konfigurera " -#~ "detta beteende i \"System\" -> \"Administration\" -> " +#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan " +#~ "konfigurera detta beteende i \"System\" -> \"Administration\" -> " #~ "\"Programvaruinställningar\"." #~ msgid "" @@ -1870,8 +1930,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1889,16 +1949,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Komponenter" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" +#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" #~ "\n" -#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till exempel " -#~ "\"deb http://ftp.debian.org sarge main\"." +#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till " +#~ "exempel \"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Lägg till kanal" @@ -1916,12 +1977,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "Om automatisk kontroll av uppdateringar är inaktiverad behöver du läsa om " -#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja påminnelser " -#~ "som visas i det här läget." +#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja " +#~ "påminnelser som visas i det här läget." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1953,12 +2014,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" #~ "Uppdateringen avbryter nu. Vänligen frigör minst %s diskutrymme. Töm din " -#~ "papperskorg och ta bort temporära paket från tidigare installationer genom " -#~ "att köra \"sudo apt-get clean\"." +#~ "papperskorg och ta bort temporära paket från tidigare installationer " +#~ "genom att köra \"sudo apt-get clean\"." #~ msgid "%s remaining" #~ msgstr "%s återstår" @@ -1967,15 +2028,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Ingen giltig källa funnen" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Ingen giltig källa för uppdatering hittades när din förrådsinformation " #~ "söktes igenom.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Uppdateringen avbryts nu. Ditt system kan vara i ett oanvändbart läge. En " #~ "återställning körs nu (dpkg --configure -a)." @@ -1985,8 +2046,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" #~ "Var vänlig rapportera detta som en bugg och inkludera filerna ~/dist-" -#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts " -#~ "nu. " +#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen " +#~ "avbryts nu. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -2006,17 +2067,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analyserar ditt system\n" #~ "\n" -#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dig " -#~ "nya funktioner." +#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge " +#~ "dig nya funktioner." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Programuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dina " #~ "program nya funktioner." @@ -2026,22 +2087,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "automatically. The software package \"unattended-upgrades\" needs to be " #~ "installed therefor" #~ msgstr "" -#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer att " -#~ "installeras automatiskt. Programpaketet \"unattended-upgrades\" behöver " -#~ "därför installeras" +#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer " +#~ "att installeras automatiskt. Programpaketet \"unattended-upgrades\" " +#~ "behöver därför installeras" #~ msgid "Sections" #~ msgstr "Avdelningar:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga " -#~ "till\n" +#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga till\n" #~ "\n" #~ "APT-raden innehåller typ, plats och avdelningar för kanalen, till exempel " #~ "\"deb http://ftp.debian.org sarge main\"." @@ -2077,8 +2138,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Need to get the changes from the central server" #~ msgstr "" #~ "Nätverksinställningar\n" -#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer åt " -#~ "andra datorer" +#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer " +#~ "åt andra datorer" #~ msgid "Show available updates and choose which to install" #~ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras" @@ -2159,7 +2220,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Det går inte att uppgradera alla paket." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." +#~ msgstr "" +#~ "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." #~ msgid "The updates are being applied." #~ msgstr "Uppdateringarna verkställs." @@ -2168,11 +2230,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgradering slutförd" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " -#~ "programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " +#~ "andra programmet först." #, fuzzy #~ msgid "Updating package list..." @@ -2194,11 +2256,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " -#~ "programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " +#~ "andra programmet först." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initierar och hämtar lista med uppdateringar..." @@ -2354,16 +2416,18 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Försäkra dig om att du angav e-postadressen och aktiveringskoden korrekt" #~ msgid "" -#~ "Unable to show help because the help files were missing. Please report this " -#~ "to your vendor." +#~ "Unable to show help because the help files were missing. Please report " +#~ "this to your vendor." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till din " -#~ "leverantör." +#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till " +#~ "din leverantör." #~ msgid "" -#~ "Unable to show help because there are no applications available to view help." +#~ "Unable to show help because there are no applications available to view " +#~ "help." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är tillgängliga." +#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är " +#~ "tillgängliga." #~ msgid "Are you sure you want to open %d package information windows?" #~ msgstr "Är du säker på att du vill öppna %d fönster med paketinformation?" @@ -2604,10 +2668,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Löser beroenden" #~ msgid "" -#~ "You must agree to the licenses covering this software before installing it." +#~ "You must agree to the licenses covering this software before installing " +#~ "it." #~ msgstr "" -#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan du " -#~ "kan installera den." +#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan " +#~ "du kan installera den." #~ msgid "I Agree" #~ msgstr "Jag accepterar" @@ -3108,8 +3173,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Kanalprenumerationer på kanal %s" #~ msgid "" -#~ "You do not have permission to subscribe or unsubscribe from channels. You " -#~ "will be unable to make any changes to the subscriptions." +#~ "You do not have permission to subscribe or unsubscribe from channels. " +#~ "You will be unable to make any changes to the subscriptions." #~ msgstr "" #~ "Du har inte rättighet att prenumerera eller säga upp prenumerationer på " #~ "kanaler. Du kommer inte att kunna göra ändringar i prenumerationer." @@ -3130,8 +3195,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Privilegium" #~ msgid "" -#~ "If you remove superuser privileges from yourself, you will be unable to re-" -#~ "add them.\n" +#~ "If you remove superuser privileges from yourself, you will be unable to " +#~ "re-add them.\n" #~ "\n" #~ "Are you sure you want to do this?" #~ msgstr "" @@ -3253,8 +3318,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Information" #~ msgid "" -#~ "Unable to show help because it was not found or because you don't have any " -#~ "help viewers available." +#~ "Unable to show help because it was not found or because you don't have " +#~ "any help viewers available." #~ msgstr "" #~ "Kan inte visa hjälp eftersom den inte hittades eller eftersom du inte har " #~ "några hjälpvisare tillgängliga." @@ -3364,8 +3429,10 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Executive Summary" #~ msgstr "Sammanfattning" -#~ msgid "Update packages individually (NOTE: This is an unsupported operation)" -#~ msgstr "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" +#~ msgid "" +#~ "Update packages individually (NOTE: This is an unsupported operation)" +#~ msgstr "" +#~ "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" #~ msgid "Actual widget tag" #~ msgstr "Riktig widgettagg" @@ -3509,7 +3576,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Städar upp..." #~ msgid "" -#~ "The packages you requested are being downloaded and installed on your system." +#~ "The packages you requested are being downloaded and installed on your " +#~ "system." #~ msgstr "" #~ "Paketen du begärde håller på att hämtas och installeras på ditt system." @@ -3615,9 +3683,9 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "packages. You must free up some disk space before you can continue. Some " #~ "options include:" #~ msgstr "" -#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta de " -#~ "begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. Det " -#~ "finns en del alternativ:" +#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta " +#~ "de begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. " +#~ "Det finns en del alternativ:" #~ msgid "Removing some packages from your system" #~ msgstr "Tar bort en del paket från ditt system" @@ -3629,13 +3697,14 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Töm din cache." #~ msgid "" -#~ "Warning! There may not be sufficient disk space " -#~ "to install this package, and installation of this package may fail. You " -#~ "should free up some disk space before continuing." +#~ "Warning! There may not be sufficient disk " +#~ "space to install this package, and installation of this package may fail. " +#~ "You should free up some disk space before continuing." #~ msgstr "" #~ "Varning! Det kan finnas otillräckligt med " -#~ "diskutrymme för att installera detta paket, och installation av detta paket " -#~ "kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du fortsätter." +#~ "diskutrymme för att installera detta paket, och installation av detta " +#~ "paket kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du " +#~ "fortsätter." #~ msgid "1 Package" #~ msgstr "1 paket" @@ -3653,24 +3722,25 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "nödvändiga installationer" #~ msgid "Please wait, loading page..." -#~ msgstr "Var vänlig vänta, läser in sidan..." +#~ msgstr "" +#~ "Var vänlig vänta, läser in sidan..." #~ msgid "" #~ "You have no packages from this channel currently installed on your system." #~ msgstr "" -#~ "Du har för närvarande inte några paket från denna kanal installerade på ditt " -#~ "system." +#~ "Du har för närvarande inte några paket från denna kanal installerade på " +#~ "ditt system." #~ msgid "" -#~ "You can visit the channel's about page to " -#~ "get more information about what software is available, or you can go " +#~ "You can visit the channel's about page " +#~ "to get more information about what software is available, or you can go " #~ "directly to the install page to " #~ "install software." #~ msgstr "" -#~ "Du kan besöka kanalens om-sida för att få " -#~ "mer information om vilken programvara som är tillgänglig, eller gå direkt " -#~ "till installationssidan för att " -#~ "installera program." +#~ "Du kan besöka kanalens om-sida för att " +#~ "få mer information om vilken programvara som är tillgänglig, eller gå " +#~ "direkt till installationssidan för " +#~ "att installera program." #~ msgid "View the about page." #~ msgstr "Visa om-sidan." @@ -3682,8 +3752,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Gå tillbaka till sammanfattningen." #~ msgid "" -#~ "You don't have any packages installed from this channel. The following pre-" -#~ "defined sets of packages are available, or you may select individual " +#~ "You don't have any packages installed from this channel. The following " +#~ "pre-defined sets of packages are available, or you may select individual " #~ "packages from the Install page." #~ msgstr "" #~ "Du har inga paket installerade från denna kanal. Följande fördefinierade " @@ -3691,37 +3761,37 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "href=updater:available_page>installationssidan." #~ msgid "" -#~ "To install new software from this channel, visit the install page." +#~ "To install new software from this channel, visit the install page." #~ msgstr "" -#~ "För att installera ny programvara går du till installationssidan." +#~ "För att installera ny programvara går du till installationssidan." #~ msgid "" -#~ "To remove already installed software from this channel, visit the remove page." +#~ "To remove already installed software from this channel, visit the remove page." #~ msgstr "" -#~ "För att ta bort redan installerad programvara från denna kanal går du till " -#~ "borttagningssidan." +#~ "För att ta bort redan installerad programvara från denna kanal går du " +#~ "till borttagningssidan." #~ msgid "Unsubscribe from this channel." #~ msgstr "" -#~ "Säg upp prenumerationen på denna " -#~ "kanal." +#~ "Säg upp prenumerationen på " +#~ "denna kanal." #~ msgid "" -#~ "There is 1 update available in this channel, totalling %s of " -#~ "data to be downloaded." +#~ "There is 1 update available in this channel, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" #~ "Det finns 1 uppdatering tillgänglig i denna kanal, som kräver att " #~ "%s data hämtas." #~ msgid "" -#~ "There are %s updates available in this channel, totalling %s " -#~ "of data to be downloaded." +#~ "There are %s updates available in this channel, totalling %s of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver att " -#~ "%s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver " +#~ "att %s data hämtas." #~ msgid "Essential Updates" #~ msgstr "Nödvändiga uppdateringar" @@ -3753,34 +3823,36 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "ditt system.

" #~ msgid "" -#~ "

You can go to the Update page to view " -#~ "available updates for your software in this channel, or return to the Summary to view all available updates.

" +#~ "

You can go to the Update page to " +#~ "view available updates for your software in this channel, or return to " +#~ "the Summary to view all available updates." +#~ "

" #~ msgstr "" -#~ "

Du kan gå till uppdateringssidan för " -#~ "att se de uppdateringar till din programvara som finns i denna kanal, eller " -#~ "gå tillbaka till sammanfattningen för att se " -#~ "alla tillgängliga uppdateringar.

" +#~ "

Du kan gå till uppdateringssidan " +#~ "för att se de uppdateringar till din programvara som finns i denna kanal, " +#~ "eller gå tillbaka till sammanfattningen " +#~ "för att se alla tillgängliga uppdateringar.

" #~ msgid "" #~ "

You can go to the Summary to view all " #~ "available updates for your system.

" #~ msgstr "" -#~ "

Du kan gå till sammanfattningen för att " -#~ "se alla uppdateringar som är tillgängliga för ditt system.

" +#~ "

Du kan gå till sammanfattningen för " +#~ "att se alla uppdateringar som är tillgängliga för ditt system.

" #~ msgid "" #~ "The following packages from this channel are available for " #~ "installation." #~ msgstr "" -#~ "Följande paket från denna kanal är tillgängliga för installation." +#~ "Följande paket från denna kanal är tillgängliga för " +#~ "installation." #~ msgid "" -#~ " Package names that are in gray indicate that " -#~ "a newer version of this package is already installed." +#~ " Package names that are in gray indicate " +#~ "that a newer version of this package is already installed." #~ msgstr "" -#~ " Paketnamn som är grå indikerar att en nyare " -#~ "version av detta paket redan är installerat." +#~ " Paketnamn som är grå indikerar att en " +#~ "nyare version av detta paket redan är installerat." #~ msgid "Name:" #~ msgstr "Namn:" @@ -3822,18 +3894,18 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Du prenumererar för närvarande på alla tillgängliga kanaler!" #~ msgid "" -#~ "There is one update available for your system, totalling %s of " -#~ "data to be downloaded." +#~ "There is one update available for your system, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver att " -#~ "%s data hämtas." +#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver " +#~ "att %s data hämtas." #~ msgid "" -#~ "There are %s updates available for your system, totalling %s " -#~ "of data to be downloaded." +#~ "There are %s updates available for your system, totalling %s of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga för ditt system, som kräver " -#~ "att %s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga för ditt system, som " +#~ "kräver att %s data hämtas." #~ msgid " Of these updates, one is urgent." #~ msgstr " Utav dessa uppdateringar är en brådskande." @@ -3851,7 +3923,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Synlig felsökningsnivå, går från 0 (ingenting) till 6 (allting)" #~ msgid "Log file debugging level, ranges from 0 (nothing) to 6 (everything)" -#~ msgstr "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" +#~ msgstr "" +#~ "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" #~ msgid "The XAuthority file (usually from GDM)" #~ msgstr "XAuthority-filen (vanligtvis från GDM)" @@ -3870,11 +3943,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Hämtar kanalgrafik..." #~ msgid "" -#~ "An error occurred trying to parse the channel list. You should ensure that " -#~ "you are running a supported distribution and try again later." +#~ "An error occurred trying to parse the channel list. You should ensure " +#~ "that you are running a supported distribution and try again later." #~ msgstr "" -#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig om " -#~ "att du använder en distribution som stöds och försöka igen senare." +#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig " +#~ "om att du använder en distribution som stöds och försöka igen senare." #~ msgid "Navigation" #~ msgstr "Navigering" @@ -4080,4 +4153,4 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "translator-credits" #~ msgstr "" #~ "Christian Rose\n" -#~ "Skicka synpunkter på översättningen till sv@li.org" \ No newline at end of file +#~ "Skicka synpunkter på översättningen till sv@li.org" diff --git a/po/ta.po b/po/ta.po index 9e86e706..ae266cae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -55,6 +55,7 @@ msgstr "ஒரு மாதத்திற்க்கு பின்" msgid "After %s days" msgstr "%s நாட்களுக்கு பிறகு" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -205,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -219,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -235,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -251,11 +256,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -264,44 +270,44 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "புதுப்பிக்கும் பொழுது பிழை ஏற்பட்டுள்ளது" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 #, fuzzy msgid "Not enough free disk space" msgstr "வட்டுவில்் போதுமான காலி இடம் இல்லை" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -309,15 +315,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -326,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -349,63 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -415,24 +424,25 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 #, fuzzy msgid "Asking for confirmation" msgstr "உறுதிப்படுத்த கேட்கிறது" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "மேம்படுத்துகிறது" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 #, fuzzy msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -499,13 +511,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -545,6 +558,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -592,6 +606,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +627,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,6 +734,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -807,14 +824,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -827,6 +847,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -848,6 +869,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -882,6 +904,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -903,6 +926,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -914,19 +938,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1253,184 +1281,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/th.po b/po/th.po index 3707d111..c1891198 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -54,6 +54,7 @@ msgstr "หลังจาก 1 เดือน" msgid "After %s days" msgstr "หลังจาก %s วัน" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s ปรับปรุง" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "เซิร์ฟเวอร์หลัก" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "มีปัญหาขณะลบกุจแจ" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -151,8 +153,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ " -"กรุณาซ่อมโดยใช้โปรแกรม synaptic หรือ apt-get ก่อนดำเนินการต่อไป" +"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " +"หรือ apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -162,6 +164,7 @@ msgstr "ไม่สามารถปรับปรุง meta แพกเก msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" @@ -178,6 +181,7 @@ msgstr "" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" @@ -188,9 +192,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ " -"นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย คุณอาจจะลองอีกครั้งภายหลังก็ได้ " -"กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" +"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " +"คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -203,6 +206,7 @@ msgid "" "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" @@ -217,14 +221,14 @@ msgid "" msgstr "" "ระบบของคุณไม่มีอูบันตูเดสก์ท็อป คูบันตูเดสก์ท็อป หรือ เอ็ดดูบันตูเดกส์ท็อป " "แพกเกจและไม่สามารถที่จะตรวจสอบได้ว่าคุณใช้อูบันตูรุ่นไหนอยู่\n" -" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic " -"หรือโปรแกรม apt-get ก่อนดำเนินการต่อไป" +" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic หรือโปรแกรม apt-get " +"ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "ไม่สามารถเพิ่มซีดีได้" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -233,37 +237,35 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก " -"กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" +"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" "\n" "ปัญหาคือ : \n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "กำลังอ่านจากที่เก็บชั่วคราว" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "ดึงข้อมูลจากเครือข่ายสำหรับปรับปรุงรุ่นหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ " -"่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" -"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ " -"'ตกลง' ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" +"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ ่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" +"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ 'ตกลง' " +"ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "ไม่เจอเซิรฟ์เวอร์เสริม(mirror)" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -275,19 +277,18 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "ไม่เจอรายการของเซิรฟ์เวอร์เสริมสำหรับปรับปรุงขณะที่ตรวจสอบแหล่งข้อมูลของคุณ " -"นี" -"่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริม" -"ล้าสมัย\n" +"นี่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริมล้าสมัย\n" "\n" -"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก " -"'Yes' ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" +"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก 'Yes' " +"ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "สร้าง default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -299,22 +300,21 @@ msgstr "" "\n" "ควรเพิ่มรายการสำหรับ '%s' หรือไม่?ถ้าคุณเลือก 'No' การปรับปรุงจะถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บข้อมูลใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" +msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "แหล่งอื่นๆใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -324,11 +324,11 @@ msgstr "" "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรม synaptic" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "เกิดข้อผิดพลาดขณะปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -336,11 +336,11 @@ msgstr "" "มีปัญหาเกิดขึ้นขณะทำการปรับปรุง โดยปกติแล้วจะเป็นปัญหาด้านเครือข่าย " "กรุณาตรวจสอบการสื่อสารในเครือข่ายของคุณแล้วลองใหม่อีกที" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "ไม่มีพื้นที่ว่างในดิสก์เพียงพอ" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -348,18 +348,18 @@ msgid "" "apt-get clean'." msgstr "" "การปรับปรุงถูกยกเลิกแล้ว กรุณาฟรีอย่างน้อย %s ของดิสก์พื้นที่บน %s " -"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-" -"get clean'" +"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -367,29 +367,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง " -"โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --configure -a)\n" +"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" +"configure -a)\n" "\n" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ " -"installation mediaและลองอีกครั้ง " +"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " +"mediaและลองอีกครั้ง " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "สนับสนุนสำหรับบางแอพพลิเคชันสิ้นสุดลง" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -397,73 +397,72 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"" -"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจาก" -"ชุมชน แต่เพียงอย่างเดียว\n" +"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจากชุมชน " +"แต่เพียงอย่างเดียว\n" "\n" "ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_ข้ามขั้นตอนนี้" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "เ_อาออก" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"เกิดปัญหาขึ้นขณะทำการเก็บกวาด " -"กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " +msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "คืนระบบสู่สถานะแรกเริ่ม" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "ดึงพอร์ตย้อนหลังของ '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "การเตรียมการปรับปรุงรุ่นมีปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -"การเตรียมระบบสำหรับการปรับปรุงรุ่นมีปัญหา กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ " -"'update-manager' และแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +"การเตรียมระบบสำหรับการปรับปรุงรุ่นมีปัญหา กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" +"manager' และแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -476,22 +475,23 @@ msgstr "" "นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' " "และแนบไฟล์ใน /var/log/dist-upgrade/ กับรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "_ถามการยืนยันจากคุณก่อน" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "กำลังปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,6 +519,7 @@ msgstr "กำลังดึงไฟล์ %li จาก %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "กำลังเปลี่ยนแปลง" @@ -533,9 +534,10 @@ 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 bugreport." msgstr "" -"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" -"manager' และ กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และ " +"กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -549,10 +551,7 @@ msgstr "" msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." -msgstr "" -"" -"คุณจะสูญเสียข้อมูลปรับแต่งที่ได้ทำไว้ในไฟล์ปรับแต่งถ้าคุณเลือกที่จะเปลี่ยนไปใช" -"้ไฟล์รุ่นใหม่กว่านี้" +msgstr "คุณจะสูญเสียข้อมูลปรับแต่งที่ได้ทำไว้ในไฟล์ปรับแต่งถ้าคุณเลือกที่จะเปลี่ยนไปใช้ไฟล์รุ่นใหม่กว่านี้" #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" @@ -564,17 +563,17 @@ msgstr "เกิดข้อผิดพลาดอย่างร้ายแ #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and " -"/var/log/dist-upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" -"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ " -"/etc/apt/sources.list.distUpgrade" +"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and /var/log/dist-" +"upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" +"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ /etc/apt/sources.list.distUpgrade" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -594,7 +593,7 @@ msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -608,14 +607,13 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง " -"และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" +msgstr "ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -663,14 +661,15 @@ msgid "%li seconds" msgstr "%li วินาที" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" -"ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ด้วยการสื่อสารแบบ 1Mbit DSL และประมาณ %s " -"ถ้าใช้ 56K โมเดม" +"ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ด้วยการสื่อสารแบบ 1Mbit DSL และประมาณ %s ถ้าใช้ 56K " +"โมเดม" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -679,13 +678,12 @@ msgstr "ต้องเริ่มระบบใหม่" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ " -"คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" +msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -700,8 +698,7 @@ msgid "" msgstr "" "ต้องการยกเลิกการปรับปรุงที่กำลังทำอยู่หรือไม่?\n" "\n" -"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง " -"ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" +"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -796,6 +793,7 @@ msgstr "ไม่สามารถดาวน์โหลดบันทึก msgid "Please check your internet connection." msgstr "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ไม่สามารถเรียกใช้เครื่องมือปรับปรุง" @@ -837,9 +835,7 @@ msgstr "ไม่สามารถเอาออกมาได้" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ " -"อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -849,8 +845,7 @@ msgstr "ไม่สามารถตรวจเช็คความถูก msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " +msgstr "ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -860,15 +855,13 @@ msgstr "ไม่สามารถยืนยันว่าเป็นขอ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว " -"%(speed)s/s" +"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -895,14 +888,17 @@ msgstr "" "ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง \n" "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "ปรับปรุงด้านความปลอดภัยที่สำคัญ" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "การปรับปรุงที่แนะนำให้ทำ" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "การปรับปรุงที่เสนอให้ทำ" @@ -915,6 +911,7 @@ msgstr "พอร์ตย้อนหลัง" msgid "Distribution updates" msgstr "ปรับปรุงชุดเผยแพร่" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "_ปรับปรุงอื่นๆ" @@ -937,6 +934,7 @@ msgstr "ไ_ม่เลือกทั้งหมด" msgid "_Check All" msgstr "เ_ลือกทั้งหมด" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -970,6 +968,7 @@ msgstr "จากรุ่นเก่า: %(old_version)s ไปสู่รุ msgid "Version %s" msgstr "รุ่น %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -994,6 +993,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "มีชุดแจกจ่ายใหม่ '%s' " +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" @@ -1004,23 +1004,26 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ " -"\"Synaptic\" หรือ คำสั่ง \"sudo apt-get install -f\" " -"ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ \"Synaptic\" หรือ " +"คำสั่ง \"sudo apt-get install -f\" ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "ไม่มี" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1035,8 +1038,8 @@ msgid "" msgstr "" "คุณต้องตรวจหารายการปรับปรุงด้วยตนเอง\n" "\n" -"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื " -"คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" +"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1083,8 +1086,8 @@ msgid "" msgstr "" "ดำเนินการปรับปรุงชุดเผยแพร่ ทำการติดตั้งปรับปรุงมากที่สุดเท่าที่จะทำได้ \n" "\n" -"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น " -"ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" +"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ " +"หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1098,8 +1101,7 @@ msgstr "ซอฟต์แวร์ปรับปรุง" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" +msgstr "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1165,8 +1167,7 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู " -"กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " +"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " "รายการของซอฟต์แวร์ที่ติดตั้งและความถี่ในการเรียกใช้งานจะถูกเก็บไว้ " "และส่งโดยไม่ระบุชื่อไปที่โครงการอูบันตูอาทิตย์ละครั้ง\n" "\n" @@ -1201,10 +1202,7 @@ msgstr "ปรัปรุงทางอินเทอร์เน็ต" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "" -"" -"การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเ" -"ท่านั้น" +msgstr "การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเท่านั้น" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1295,11 +1293,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"กรุณาเติมให้ครบบรรทัด APT " -"ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" +"กรุณาเติมให้ครบบรรทัด APT ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" "\n" -"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb " -"http://ftp.debian.org sarge main\"" +"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb http://ftp." +"debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1342,9 +1339,7 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"" -"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่น" -"ได้(ถ้าเป็นไปได้)" +"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่นได้(ถ้าเป็นไปได้)" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1356,8 +1351,7 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ " -"คุณจะต้องโหลดช่องรายการใหม่เอง " +"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ คุณจะต้องโหลดช่องรายการใหม่เอง " "ตัวเลือกนี้ทำให้ซ่อนคำเตือนที่จะแสดงในกรณีนี้ได้" #: ../data/update-manager.schemas.in.h:4 @@ -1386,191 +1380,234 @@ msgstr "ขนาดของหน้าต่าง" msgid "Configure the sources for installable software and updates" msgstr "ปรับแต่งแหล่งสำหรับซอฟต์แวร์และปรับปรุงที่ติดตั้งได้" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "อูบันตู 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "ชุมชนดูแล" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "ซอฟต์แวร์จำกัดการใช้งาน" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "ซีดีรอมที่มีอูบันตู 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "ซอฟต์แบบเปิดเผยสนับสนุนโดย Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "ชุมชนดูแล (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "ชุมชนดูแล ซอฟต์แวร์แบบเปิดเผย" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "ไดรเวอร์ที่ไม่ฟรี" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์ " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "ซอฟต์แวร์จำกัดการใช้งาน(Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "ซอฟต์แวร์นี้มีลิขสิทธ์หรือข้อกฏหมายจำกัดอยู่" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "ซีดีรอมที่มีอูบันตู 6.06 LST 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "การปรับปรุงแบบย้อนหลัง" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "อูบันตู 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "อูบันตู 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "อูบันตู 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "ซีดีรอมที่มีอูบันตู 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "สนับสนุนอย่างเป็นทางการ" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "อูบันตู 5.04 ปรับปรุง" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "อูบันตู 5.04 พอร์ตย้อนหลัง" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "อูบันตู 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "ชุมชนดูแล (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "ซีดีรอมที่มีอูบันตู 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "ไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "จำกัดลิขสิทธิ์" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "อูบันตู 4.10 ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "อูบันตู 4.10 ปรับปรุง" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "อูบันตู 4.10 พอร์ตย้อนหลัง" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "เดเบียน 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "เดเบียน 3.1 \"Sarge\" ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "เดเบียน \"Etch\" (กำลังทดสอบ)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "เดเบียน \"Sid\" (ผันผวน)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอยู่กับไม่ฟรี" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" @@ -1622,17 +1659,16 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All " -#~ "Upgrades\" ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get " -#~ "dist-upgrade\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" +#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All Upgrades\" " +#~ "ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get dist-upgrade" +#~ "\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" #~ msgid "The following updates will be skipped:" #~ msgstr "การปรับปรุงต่อไปนี้จะถูกข้ามไป:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "เหลือประมาณ %li วินาที" @@ -1706,12 +1742,12 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" #~ "การปรับปรุงถูกยกเลิก กรุณาทำให้มีพื้นที่ว่างในดิสก์อย่างน้อย %s " -#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo " -#~ "apt-get clean'." +#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get " +#~ "clean'." #~ msgid "%s remaining" -#~ msgstr "%s เหลืออีก" \ No newline at end of file +#~ msgstr "%s เหลืออีก" diff --git a/po/tr.po b/po/tr.po index 3c455939..abc76c88 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Kayra Akman \n" "Language-Team: Turkish \n" @@ -55,6 +55,7 @@ msgstr "Bir ay sonra" msgid "After %s days" msgstr "%s gün sonra" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s güncellemeleri" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Ana sunucu" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -113,21 +116,18 @@ msgstr "Seçili dosyayı aktarmada hata" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." +msgstr "Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Anahtar kaldırmada hata" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +165,7 @@ msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" msgid "A essential package would have to be removed" msgstr "Gerekli bir paketin kaldırılması gerekmekte" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Güncelleme hesaplanamadı" @@ -181,6 +182,7 @@ msgstr "" "Lütfen bu hatayı 'update-manager' için bildirin, hata raporuna /var/log/dist-" "upgrade/ konumundaki dosyaları da ekleyin." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulamasında hata" @@ -204,9 +206,9 @@ msgstr "'%s' yüklenemiyor" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Meta-paket kestirilemedi" @@ -225,11 +227,11 @@ msgstr "" " Lütfen devam etmeden önce, synaptic veya apt-get kullanarak yukarıdaki " "paketlerden birini kurun." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "CD eklemede hata" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +246,15 @@ msgstr "" "Hata mesajı:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Önbellek okunuyor" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Yükseltme için veriler ağdan indirilsin mi?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +266,11 @@ msgstr "" "Eğer ağa erişiminiz hızlıysa ya da pahalı değilse 'Evet'i seçmelisiniz. Aksi " "halde 'Hayır'ı seçin." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Geçerli yansı bulunamadı" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +289,12 @@ msgstr "" "'Evet'i seçersiniz '%s'den '%s'e kadar olan girdiler güncellenecek.\n" "'Hayır'ı seçerseniz güncelleme iptal edilecek." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Öntanımlı depolar kaydedilsin mi??" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +307,11 @@ msgstr "" "'%s' için varsayılan girişler eklensin mi? Eğer 'Hayır'ı seçerseniz, " "güncelleştirme iptal edilecektir." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Depo bilgisi geçersiz" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +319,11 @@ msgstr "" "Depo bilgisini güncelleme işlemi geçersiz bir dosya oluşturdu. Lütfen bu " "hatayı bildirin." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Üçüncü parti kaynaklar devredışı bırakıldı" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " @@ -330,11 +333,11 @@ msgstr "" "Yükseltmenin ardından bu girdileri 'software-properties' aracını ya da " "synaptic'i kullanarak tekrar etkinleştirebilirsiniz." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Güncelleştirme sırasında hata" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +345,11 @@ msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı kontrol edin ve yeniden deneyin." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +360,16 @@ msgstr "" "Çöpünüzü boşaltın ve 'sudo apt-get clean' kullanarak önceden kurulumların " "geçici paketlerini kaldırın." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -376,14 +380,14 @@ msgstr "" "Yükseltmeden şimdi iptal ediliyor. Sisteminiz kararsız bir durumda olabilir. " "Bir kurtarma işlemi gerçekleştirildi. (dpkg --configure -a).\n" "\n" -"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine " -"/var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." +"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine /" +"var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +395,11 @@ msgstr "" "Yükseltme şimdi iptal edilecek. Lütfen internet bağlantınızı veya kurulum " "ortamınızı kontrol edin ve yeniden deneyin. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Bazı uygulamalar için destek sona erdi" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -404,23 +408,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Kullanılmayan paketler kaldırılsın mı?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Bu Adımı _Atla" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Kaldır" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "İşlem sırasında hata oluştu" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -428,41 +432,43 @@ msgstr "" "Temizleme sırasında bazı sorunlar oluştu. Bilgi için lütfen aşağıdaki mesaja " "bakın. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Orijinal sistem durumuna geri dönülüyor" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Paket yöneticisi denetleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Depo bilgileri güncelleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -477,22 +483,23 @@ msgstr "" "hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki " "dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Onay isteniyor" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Yükseltiliyor" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Kullanılmayan yazılımlar aranıyor" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -521,6 +528,7 @@ msgstr "Dosyalar inidiriliyor. İnen: %li Toplam: %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Değişiklikler uygulanıyor" @@ -539,6 +547,7 @@ msgstr "" "bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki dosyaları da " "ekleyin." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -564,9 +573,9 @@ msgstr "Giderilemez bir hata oluştu" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bu hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ " @@ -575,6 +584,7 @@ msgstr "" "kaydedildi." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -617,6 +627,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -666,6 +677,7 @@ msgid "%li seconds" msgstr "%li saniye" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -687,6 +699,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -706,8 +719,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Yükseltmeyi tamamlamak için sistemi yeniden başlatın" +msgstr "Yükseltmeyi tamamlamak için sistemi yeniden başlatın" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -785,7 +797,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" -"Suggestions: \t\t \n" +"Suggestions: \t\t\r\n" "Yayın notları bulunamadı" #: ../UpdateManager/DistUpgradeFetcher.py:69 @@ -800,6 +812,7 @@ msgstr "Yayın notları indirilemedi" msgid "Please check your internet connection." msgstr "İnternet bağlantınızı kontrol ediniz." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Yükseltme aracı çalıştırılamadı." @@ -842,8 +855,7 @@ msgstr "Çıkarılamadı" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " +msgstr "Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -893,14 +905,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Önemli güvenlik güncelleştirmeleri" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Önerilen güncellemeler" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Teklif edilmiş güncellemeler" @@ -913,6 +928,7 @@ msgstr "Backport edilmiş yazılımlar" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Diğer güncellemeler" @@ -934,6 +950,7 @@ msgstr "Hiç_birini Seçme" msgid "_Check All" msgstr "_Hepsini Seç" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -967,6 +984,7 @@ msgstr "" msgid "Version %s" msgstr "Sürüm %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -992,6 +1010,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Yeni dağıtım yayını '%s' ulaşılabilir" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Yazılım dizini bozulmuş" @@ -1006,19 +1025,23 @@ msgstr "" "durumu düzeltmek için öncelikle \"Synaptic\" paket yöneticisini kullanın ya " "da uçbirim penceresine \"sudo apt-get install -f\" komutunu yazıp çalıştırın." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Hiçbiri" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1040,8 +1063,8 @@ msgstr "Sisteminizi güncel tutun" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"CD taramada hata \n" -" \n" +"CD taramada hata\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1374,185 +1397,229 @@ msgstr "Pencere boyutu" msgid "Configure the sources for installable software and updates" msgstr "Kurulabilir yazılım ve güncellemeler için kaynakları yapılandır" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Topluluk tarafından bakılan" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Aygıtlar için kapalı kaynak sürücüler" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Kısıtlı yazılımlar" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Topluluk tarafından bakılan (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Topluluk tarafından bakılan Açık Kaynak Kodlu yazılımlar" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Özgür olmayan sürücüler" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Aygıtlar için lisanslı sürücüler " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Kısıtlı yazılımlar (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Geritaşınmış (backported) güncellemeler" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Geritaşınmış Yazılımlar (Backports)" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog' Cdrom'u" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi olarak desteklenenler" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Geritaşınmış Yazılımlar (Backports)" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Topluluk tarafından bakılan (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Özgür olmayan (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' Cdrom'u" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Artık resmi olarak desteklenmiyor" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Sınırlı telif hakkı" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Geritaşınmış Yazılımlar (Backports)" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (test)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (kararsız)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Özgür Olmayan Bağımlılığı Bulunan DFSG Uyumlu Yazılım" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG Uyumlu Olmayan Yazılım" @@ -1590,4 +1657,4 @@ msgstr "DFSG Uyumlu Olmayan Yazılım" #~ msgstr "Ubuntu 6.06 Güvenlik Güncelleştirmeleri" #~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" diff --git a/po/uk.po b/po/uk.po index ff1f2a21..56d9a7fc 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: KBabel 1.11.2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 @@ -56,6 +56,7 @@ msgstr "Через місяць" msgid "After %s days" msgstr "Через %s днів" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Помилка видалення ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,6 +164,7 @@ msgstr "Не можливо поновити необхідні meta-пакун msgid "A essential package would have to be removed" msgstr "Це призведе до видалення !essential! пакунку системи" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" @@ -200,6 +204,7 @@ msgid "" msgstr "" "Неможливо встановити необхідний пакунок. Сповістіть про це як про помилку. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" @@ -213,11 +218,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -227,15 +232,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Зчитування кешу" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -243,11 +248,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Не знайдено правильного зеркала" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -259,11 +264,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Створити джерела за замовчуванням?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -272,11 +278,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Помилка в даних про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -284,33 +290,33 @@ msgstr "" "Поновлення файлу сховищ призвело до пошкодження. Будь ласка, сповістіть про " "це як про помилку." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Помилка підчас поновлення" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Недостатньо місця на диску" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +324,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати оновлення системи?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Неможливо провести оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,11 +342,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Неможливо завантажити пакунки для оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -347,11 +354,11 @@ msgstr "" "Оновлення системи щойно перервано. Будь ласка, перевірте з'єднання з " "Інтернетом або зовнішній носії та спробуйте знов. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -360,24 +367,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 #, fuzzy msgid "Remove obsolete packages?" msgstr "Видалити непотрібні пакунки?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Пропустити цей крок" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "Видалити" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -385,41 +392,43 @@ msgstr "" "При очищенні системи виникли проблеми. Прочитайте детальнішу інформацію " "нижче. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Отримання інформації про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Невірна інформація про пакунок" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -429,22 +438,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Запит підтвердження" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Процес оновлення" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Пошук програм, що не використовуються" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Оновлення системи завершено." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -472,6 +482,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -488,6 +499,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -511,13 +523,14 @@ msgstr "Виникла невиправна помилка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -558,9 +571,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Для запобігання втраті інформації закрийте усі програми та документи." +msgstr "Для запобігання втраті інформації закрийте усі програми та документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -574,12 +587,12 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:549 -#, fuzzy +#, fuzzy, python-format msgid "Remove %s" msgstr "Видалити %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:551 -#, fuzzy +#, fuzzy, python-format msgid "Install %s" msgstr "Встановити %s" @@ -609,6 +622,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -630,6 +644,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -741,6 +756,7 @@ msgstr "Не вдалося завантажити примітки випуск msgid "Please check your internet connection." msgstr "Будь ласка, перевірте ваше з'єднання з Інтернетом." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 #, fuzzy msgid "Could not run the upgrade tool" @@ -834,14 +850,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -854,6 +873,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -875,6 +895,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -910,6 +931,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -926,14 +948,15 @@ msgid "" "information on upgrading." msgstr "" "Ви більше не будете отримувати оновлень критичних оновлень та оновлень " -"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на " -"http://www.ubuntu.com для подальшої інформації про оновлення." +"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на http://www." +"ubuntu.com для подальшої інформації про оновлення." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -945,19 +968,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1295,190 +1322,233 @@ msgstr "Розмір вікна" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Офіційно підтримуються" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Підтримується спільнотою (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Не-вільний (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Обмежені авторські права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Оновлення безпеки Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестовий)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабільний)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1489,32 +1559,32 @@ msgstr "" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Під час розрахунку оновлення виникла невиправна помилка. Будь ласка, " #~ "повідомте про це як про помилку програми. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "Ваша система не містить пакунків ubuntu-desktop, kubuntu-desktop або " #~ "edubuntu-desktop, через що не вдалося встановити, яку версію ubuntu Ви " #~ "використовуєте.\n" -#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи synaptic " -#~ "або apt-get." +#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи " +#~ "synaptic або apt-get." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" #~ "Оновлення системи щойно зупинено. Внаслідок цього система може працювати " -#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або скористайтесь " -#~ "програмою Synaptic для налаштування системи." +#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або " +#~ "скористайтесь програмою Synaptic для налаштування системи." #~ msgid "Some software no longer officially supported" #~ msgstr "Деяке програмне забезпечення більше офіційно не підтримується" @@ -1523,14 +1593,12 @@ msgstr "" #~ msgid "Restoring originale system state" #~ msgstr "Перезавантаження системи" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Залишилось близько %li хвилин" #~ msgid "Download is complete" #~ msgstr "Завантадення пакунків завершено" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Завантажується файл %li of %li at %s/s" @@ -1538,7 +1606,6 @@ msgstr "" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1548,43 +1615,41 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Будь ласка, повідмте це я помилку, включивши в повідомлення файли ~/dist-" #~ "upgrade.log and ~/dist-upgrade-apt.log . Апргрейд щойно перервано." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s пакунків буде видалено." #~ msgstr[1] "" #~ msgstr[2] "" -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s пакунків буде встановлено." #~ msgstr[1] "" #~ msgstr[2] "" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "буде проведено оновлення %s пакунка." #~ msgstr[1] "буде проведено оновлення %s пакунків." #~ msgstr[2] "буде проведено оновлення %s пакунків." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Потрібно завантажити всього %s пакунків." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може бути " -#~ "перервано протягом усього часу." +#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може " +#~ "бути перервано протягом усього часу." #~ msgid "Could not find any upgrades" #~ msgstr "Не знайдено пакунків для оновлення" @@ -1632,7 +1697,6 @@ msgstr "" #~ msgid "Show details" #~ msgstr "Показати деталі" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Нова версія: %s (Розмір: %s)" @@ -1667,16 +1731,17 @@ msgstr "" #~ msgstr "Компоненти" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" +#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" #~ "\n" -#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb " -#~ "http://ftp.debian.org sarge main\". Докладні приклади можна знайти у " +#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb http://" +#~ "ftp.debian.org sarge main\". Докладні приклади можна знайти у " #~ "документації." #~ msgid "Add Channel" @@ -1707,4 +1772,4 @@ msgstr "" #~ msgstr "Оновлення Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" diff --git a/po/update-manager.pot b/po/update-manager.pot index 67658f1b..60c4647e 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -210,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -224,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:266 +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:576 +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" @@ -454,7 +454,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -483,28 +483,28 @@ msgid "" msgstr "" #. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -692,6 +692,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -1044,10 +1045,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" diff --git a/po/ur.po b/po/ur.po index f9a2a9ad..3ed34bd9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -55,6 +55,7 @@ msgstr "ایک ماھ باد" msgid "After %s days" msgstr "بعد %s دن" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -206,11 +211,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -220,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -236,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -252,11 +257,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -265,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -308,15 +314,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -325,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -348,63 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -414,22 +423,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -541,6 +554,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -588,6 +602,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -607,6 +622,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -713,6 +729,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -802,14 +819,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -822,6 +842,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -843,6 +864,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -877,6 +899,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -898,6 +921,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -909,19 +933,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1248,187 +1276,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/urd.po b/po/urd.po index b0bbdbf0..bbddfb97 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -211,11 +211,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:266 +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:576 +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" @@ -455,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -484,28 +484,28 @@ msgid "" msgstr "" #. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -693,6 +693,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -1045,10 +1046,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" diff --git a/po/vi.po b/po/vi.po index 3e3715ab..7111675a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -54,6 +54,7 @@ msgstr "Sau một tháng" msgid "After %s days" msgstr "Sau %s ngày" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -115,16 +118,14 @@ msgstr "Gặp lỗi khi nhập tâp tin đã chọn" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." +msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -163,6 +164,7 @@ msgstr "Không thể nâng cấp các gói gốc được yêu cầu" msgid "A essential package would have to be removed" msgstr "Một gói quan trọng cần phải bị gỡ bỏ" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Không thể tính được dung lượng cần nâng cấp" @@ -176,6 +178,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gặp lỗi khi đang xác thực một số gói" @@ -202,6 +205,7 @@ msgid "" "bug. " msgstr "Không thể cài đặt được gói yêu cầu. Vui lòng thông báo lỗi này. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Không thể đoán được gói gốc" @@ -215,11 +219,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -229,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Đang đọc bộ nhớ đệm" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -245,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +265,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +323,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,50 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "Một bộ quản lý gói khác đang chạy" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Đang tải các thay đổi" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -409,15 +417,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -427,23 +435,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Nâng cấp xong" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -471,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -487,6 +497,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -510,13 +521,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -553,6 +565,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -601,6 +614,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -620,6 +634,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -728,6 +743,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -825,15 +841,18 @@ msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -849,6 +868,7 @@ msgstr "Bản cập nhật Ubuntu 5.10" msgid "Distribution updates" msgstr "Đang cài đặt bản cập nhật..." +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -872,6 +892,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -902,10 +923,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Phiên bản %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -928,6 +950,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -939,19 +962,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1302,211 +1329,256 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Bản cập nhật Ubuntu 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Phần mềm đã đóng góp" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Không tự do (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Không tự do (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Được hỗ trợ một cách chính thức" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Không tự do (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Được hỗ trợ một cách chính thức" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Bản quyền bị giới hạn" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Bản cập nhật Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 « Sarge »" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Bản cập nhật bảo mặt ổn định Debian" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Thử ra Debian" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Không Mỹ Debian (Bất định)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1635,12 +1707,12 @@ msgstr "" #~ msgstr "" #~ "Khóa xác thực\n" #~ "\n" -#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép bạn " -#~ "thẩm tra toàn vẹn của phần mềm đã tải về." +#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép " +#~ "bạn thẩm tra toàn vẹn của phần mềm đã tải về." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Thêm tập tin khóa mới vào vòng khóa tin cây. Hãy đảm bảo bạn đã nhận khóa " #~ "này qua kênh bảo mật, và bạn tin cây người sở hữu khóa này. " @@ -1670,11 +1742,11 @@ msgstr "" #~ msgstr "Cỡ tối đa, theo MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành động " -#~ "này sẽ không sửa đổi khóa nào tự cài đặt." +#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành " +#~ "động này sẽ không sửa đổi khóa nào tự cài đặt." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Đặt cỡ tối _đa cho bộ nhớ tạm gói" @@ -1703,13 +1775,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Bản nâng cấp công bố\n" #~ "\n" -#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn giản " -#~ "hãy sử dụng nút « Cài đặt »." +#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn " +#~ "giản hãy sử dụng nút « Cài đặt »." #~ msgid "Cancel downloading the changelog" #~ msgstr "Thôi tải về Bản ghi đổi..." @@ -1765,18 +1837,19 @@ msgstr "" #~ msgstr[0] "Bạn đã chọn tất cả %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Bạn đã chọn %s trong %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "The updates are being applied." #~ msgstr "Đang áp dụng những bản cập nhật." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. Vui " -#~ "lòng đóng ứng dụng khác trước khi tiếp tục." +#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. " +#~ "Vui lòng đóng ứng dụng khác trước khi tiếp tục." #~ msgid "Updating package list..." #~ msgstr "Đạng cập nhật danh sách gói..." @@ -1789,22 +1862,22 @@ msgstr "" #~ 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. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản hiện " -#~ "thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " +#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản " +#~ "hiện thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " #~ " để tìm thông tin nâng cấp." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "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 " -#~ " để 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 để 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." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." \ No newline at end of file +#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." diff --git a/po/xh.po b/po/xh.po index e5270ec4..7e59725b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -206,11 +211,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -220,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -236,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -252,11 +257,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -265,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -308,15 +314,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -325,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -348,63 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -414,22 +423,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -541,6 +554,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -588,6 +602,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -607,6 +622,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -713,6 +729,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -804,15 +821,18 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bonisa izihlaziyo" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -827,6 +847,7 @@ msgstr "" msgid "Distribution updates" msgstr "Bonisa izihlaziyo" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -849,6 +870,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -884,6 +906,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -905,6 +928,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -916,19 +940,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1262,184 +1290,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1507,8 +1580,8 @@ msgstr "" #~ msgstr "" #~ "Ulwazi oluhlaziyiweyo\n" #~ "\n" -#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda funda " -#~ "olu lwazi lulandelayo ngocoselelo." +#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda " +#~ "funda olu lwazi lulandelayo ngocoselelo." #~ msgid "Run now" -#~ msgstr "Phumeza inkqubo ngoku" \ No newline at end of file +#~ msgstr "Phumeza inkqubo ngoku" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8510173c..0ff4ebda 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:00+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -54,6 +54,7 @@ msgstr "一月后" msgid "After %s days" msgstr "%s天后" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主服务器" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "删除密钥时候出错" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -150,7 +152,9 @@ msgstr "破损的软件包" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者apt-get修复它们。" +msgstr "" +"你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" +"apt-get修复它们。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -160,6 +164,7 @@ msgstr "不能升级要求的元包" msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "无法计算升级" @@ -173,8 +178,10 @@ msgid "" msgstr "" "在计算升级时遇到一个无法解决的问题。\n" "\n" -"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文件包含在错误报告中。" +"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文" +"件包含在错误报告中。" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" @@ -184,7 +191,9 @@ 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 a list of " "unauthenticated packages." -msgstr "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软件包的列表。" +msgstr "" +"无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" +"件包的列表。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -197,6 +206,7 @@ msgid "" "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "无法猜出元包" @@ -209,15 +219,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-" -"desktop软件包所以无法确定你运行的ubuntu的版本。\n" +"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-desktop软件包所以无法" +"确定你运行的ubuntu的版本。\n" " 请先用新立得或apt-get安装以上所举软件包中的一个。" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "添加CD失败" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -231,15 +241,15 @@ msgstr "" "错误消息是:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "正在读取缓存" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "要从网络获取升级数据吗?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +259,11 @@ msgstr "" "可以从网络检查最新升级,并获取当前CD中没有的软件包。\n" "如果网络带宽足够,请选择'是'。否则选'否'。" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "未找到可用的镜像" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,15 +274,17 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像或镜像信息过时了.\n" +"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像" +"或镜像信息过时了.\n" "一定要重写您的'sources.list'吗?如果选'Yes'将会更新所有'%s'到'%s'条目.\n" "如果选'no'更新将被取消." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "生成默认的源?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,59 +296,63 @@ msgstr "" "\n" "添加用于'%s'的缺省条目?如果选择'No',升级将被取消." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "源的信息无效" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升级源的信息时产生一个无效文件。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "第三方源被禁用" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." -msgstr "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得包管理器来重新启用它们." +msgstr "" +"sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得" +"包管理器来重新启用它们." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "升级时出错" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "升级时候出错。这通常是一些网络问题,请检查你的网络连接后再试。" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "磁盘空间不足" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-get clean'命令来删除之前安装的临时软件包。" +"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-" +"get clean'命令来删除之前安装的临时软件包。" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "无法安装升级" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -344,25 +360,27 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -a)。\n" +"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" +"a)。\n" "\n" -"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文件。" +"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文" +"件。" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "无法下载升级包" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "一些应用程序支持终止" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -375,49 +393,51 @@ msgstr "" "\n" "如果你没有启用'社区维护'源,下一步这些包将被建议移除." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "跳过这个步骤(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "删除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "确认时出错" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "正在检查软件包管理器" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "正在准备升级" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -425,15 +445,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "更新源的信息" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "无效的包信息" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -444,24 +464,26 @@ msgid "" msgstr "" "包信息被更新后核心包'%s'没有找到。\n" "\n" -"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/dist-upgrade/中的文件。" +"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/" +"dist-upgrade/中的文件。" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "请求确认" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "正在更新" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "寻找陈旧的软件包" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "系统更新完毕" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -489,6 +511,7 @@ msgstr "下载第 %li 个文件(共 %li 个文件)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在应用更新" @@ -502,8 +525,11 @@ msgstr "无法安装'%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 bugreport." -msgstr "升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-upgrade/中的文件。" +msgstr "" +"升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-" +"upgrade/中的文件。" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -530,15 +556,17 @@ msgstr "出现致命错误" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt.log。升级现在取消。\n" +"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt." +"log。升级现在取消。\n" "你原始的sources.list已保存在/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -578,6 +606,7 @@ msgstr "下载及升级会持续几个小时,且不可取消。" msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -625,6 +654,7 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -644,6 +674,7 @@ msgstr "升级已经完成并需要重启。你要现在重启么?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -755,6 +786,7 @@ msgstr "无法下载发行说明" msgid "Please check your internet connection." msgstr "请检查你的互联网连接。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "不能运行升级工具" @@ -820,12 +852,12 @@ msgid "" msgstr "认证升级信息失败。可能是网络或服务器的问题。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下载文件 %li/%li 速度是 %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "正在下载文件 %li/%li 速度是 %s/s" @@ -847,14 +879,17 @@ msgid "" "Please check your Internet connection." msgstr "无法下载更新列表。请检查您的网络连接。" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建议更新" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "建议更新" @@ -868,6 +903,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "继续升级(_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其它更新" @@ -890,6 +926,7 @@ msgstr "取消全部(_U)" msgid "_Check All" msgstr "选中全部(_C)" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -914,7 +951,7 @@ msgid "Checking for updates" msgstr "检查更新" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "新版本:%s(大小:%s)" @@ -923,6 +960,7 @@ msgstr "新版本:%s(大小:%s)" msgid "Version %s" msgstr "版本 %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -938,7 +976,8 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见 \n" +"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见" +"\r\n" "http://www.ubuntu.com 来获取更多有关升级的信息。" #: ../UpdateManager/UpdateManager.py:863 @@ -946,6 +985,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "软件索引已被破坏" @@ -956,21 +996,26 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-get install -f\"来修正这个问题。" +"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-" +"get install -f\"来修正这个问题。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "无" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -986,7 +1031,8 @@ msgid "" msgstr "" "你必须手动检测升级\n" "\n" -"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改变." +"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改" +"变." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1112,7 +1158,8 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度每周会被匿名发送给Unbuntu。\n" +"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度" +"每周会被匿名发送给Unbuntu。\n" "\n" "其结果用于流行软件支持及应用软件搜索排名。" @@ -1237,7 +1284,8 @@ msgid "" "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "输入你想增加的完整的频道 APT 命令行\n" -"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org sarge main\"。" +"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org " +"sarge main\"。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1291,7 +1339,9 @@ 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 this " "case." -msgstr "如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下要出现的提醒语。" +msgstr "" +"如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下" +"要出现的提醒语。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1320,188 +1370,232 @@ msgstr "窗口大小" msgid "Configure the sources for installable software and updates" msgstr "设定可安装和升级的源" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "社区维护(Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "设备的专有驱动" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "受限软件" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "社区维护(Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "社区维护(universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "社区维护开源软件" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "非自由驱动" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "设备的属性驱动 " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "受限软件(Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported 更新" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 移植" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'光盘" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支持" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "社区维护" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'光盘" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "官方不再支持" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版权限制" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" 安全更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (测试)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (非稳定)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "带有非自由依赖关系的DFSG兼容软件" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" @@ -1509,7 +1603,6 @@ msgstr "非DFSG兼容软件" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "受到版权或法律问题限制的软件" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下载文件 %li/%li 速度未知" @@ -1531,7 +1624,8 @@ msgstr "非DFSG兼容软件" #, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" -#~ msgstr "正在升级到 Ubuntu 6.06 LTS" +#~ msgstr "" +#~ "正在升级到 Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1559,16 +1653,15 @@ msgstr "非DFSG兼容软件" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并运行 “sudo apt-get dist-" -#~ "upgrade”来彻底更你新的系统。" +#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并" +#~ "运行 “sudo apt-get dist-upgrade”来彻底更你新的系统。" #~ msgid "The following updates will be skipped:" #~ msgstr "将跳过以下的升级包" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大约还要%li秒" @@ -1641,8 +1734,8 @@ msgstr "非DFSG兼容软件" #~ msgstr "Ubuntu 6.06 LTS 后备支持" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "在检查你的源的信息时未能找到有效的升级记录\n" #~ msgid "Repositories changed" @@ -1754,4 +1847,4 @@ msgstr "非DFSG兼容软件" #~ msgstr "CD" #~ msgid "Non-free software" -#~ msgstr "非自由软件" \ No newline at end of file +#~ msgstr "非自由软件" diff --git a/po/zh_HK.po b/po/zh_HK.po index 65d2dc88..983ec483 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -53,6 +53,7 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 日後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -60,6 +61,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -69,6 +71,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -118,8 +121,7 @@ msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -146,7 +148,9 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復套件。" +msgstr "" +"系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" +"套件。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -156,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級過程" @@ -168,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -177,7 +183,9 @@ 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 a list of " "unauthenticated packages." -msgstr "有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套件。" +msgstr "" +"有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套" +"件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -190,6 +198,7 @@ msgid "" "bug. " msgstr "有必須的套件無法安裝,請匯報問題。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -203,11 +212,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -217,15 +226,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "正在讀取快取資料" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -233,11 +242,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "找不到有效的 mirror 網站" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -249,11 +258,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -262,42 +272,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "套件庫資料無效" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "停用外來的軟件來源" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -305,15 +315,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -322,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "無法下載升級所需的套件" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常,然後再試一次。 " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -345,63 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "是否移除過時的套件?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "套件資料無效" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,22 +424,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "正在搜尋過時的軟件" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "已完成系統升級。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,6 +468,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -470,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -493,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -536,6 +553,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -583,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -602,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -708,6 +728,7 @@ msgstr "無法下載發行通告" msgid "Please check your internet connection." msgstr "請檢查網絡連線是否正常。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -797,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -817,6 +841,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -838,6 +863,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -871,6 +897,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -893,6 +920,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -904,19 +932,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1248,190 +1280,233 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "正式支援" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟件 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟件 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1「Sarge」" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1「Sarge」安全性更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian 「Etch」(測試版)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "ftp://ftp.hk.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian 「Sid」(不穩定版)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟件,但依賴於非自由軟件" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "和 DFSG 不相容的軟件" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1442,19 +1517,19 @@ msgstr "和 DFSG 不相容的軟件" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因此無法偵測正在執行哪一個版本的 " -#~ "ubuntu。\n" +#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因" +#~ "此無法偵測正在執行哪一個版本的 ubuntu。\n" #~ "請先使用 synaptic 或 apt-get 安裝上述其中一個套件。" #~ msgid "" @@ -1462,13 +1537,15 @@ msgstr "和 DFSG 不相容的軟件" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用「software-properties」工具或 synaptic " -#~ "重新啟用這些來源。" +#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用" +#~ "「software-properties」工具或 synaptic 重新啟用這些來源。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." -#~ msgstr "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." +#~ msgstr "" +#~ "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --" +#~ "configure -a)。" #~ msgid "Some software no longer officially supported" #~ msgstr "某些軟件不會再有正式支援" @@ -1476,33 +1553,27 @@ msgstr "和 DFSG 不相容的軟件" #~ msgid "Restoring originale system state" #~ msgstr "恢復原來的系統狀態" -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" #~ msgid "Download is complete" #~ msgstr "下載完成" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "升級現正中止,請匯報問題。" -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1510,17 +1581,14 @@ msgstr "和 DFSG 不相容的軟件" #~ "取代設定檔\n" #~ "「%s」?" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "準備移除 %s 個套件。" -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "準備安裝 %s 個新套件。" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "準備升級 %s 個套件。" @@ -1532,15 +1600,13 @@ msgstr "和 DFSG 不相容的軟件" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "檢驗升級套件失敗。可能是因為網路或伺服器出現問題。 " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1557,11 +1623,12 @@ msgstr "和 DFSG 不相容的軟件" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」的「標記所有升級」功能或在終端機中執行「sudo apt-get " -#~ "dist-upgrade」來更新整個系統。" +#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」" +#~ "的「標記所有升級」功能或在終端機中執行「sudo apt-get dist-upgrade」來更新" +#~ "整個系統。" #~ msgid "The following updates will be skipped:" #~ msgstr "會略過更新以下套件:" @@ -1604,16 +1671,16 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" #~ "請輸入整行你想加入的 APT 軟件庫位置\n" #~ "\n" -#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp.debian.org sarge " -#~ "main\"。你可以在文件中尋找有關該行的格式的詳細描述。" +#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp." +#~ "debian.org sarge main\"。你可以在文件中尋找有關該行的格式的詳細描述。" #~ msgid "Edit Channel" #~ msgstr "修改套件來源" @@ -1642,4 +1709,4 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 5.10 更新" \ No newline at end of file +#~ msgstr "Ubuntu 5.10 更新" diff --git a/po/zh_TW.po b/po/zh_TW.po index 821fbf00..68e961d4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" @@ -49,6 +49,7 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 天過後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -56,8 +57,9 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy +#, fuzzy, python-format msgid "%s (%s)" msgstr "%s (%s)" @@ -65,6 +67,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主要伺服器" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -114,8 +117,7 @@ msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -142,7 +144,9 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 synaptic 或 apt-get 來修恢它們。" +msgstr "" +"您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " +"synaptic 或 apt-get 來修恢它們。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -152,6 +156,7 @@ msgstr "無法升級須要的元套件 (meta-package)" msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級" @@ -164,6 +169,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" @@ -173,7 +179,9 @@ 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 a list of " "unauthenticated packages." -msgstr "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證的套件。" +msgstr "" +"一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" +"的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -186,6 +194,7 @@ msgid "" "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" @@ -199,11 +208,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "無法加入光碟" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -212,20 +221,21 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉報為臭蟲。\n" +"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉" +"報為臭蟲。\n" "\n" "錯誤訊息為:\n" "「%s」" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "正在讀取快取" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -233,11 +243,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "找不到有效的 mirror" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -248,16 +258,19 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror 資訊已經過時的時候發生。\n" +"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror " +"資訊已經過時的時候發生。\n" "\n" -"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' 到 '%s'。\n" +"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' " +"到 '%s'。\n" "如果選擇「否」,則更新會被取消。" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "產生預設的來源?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -269,59 +282,61 @@ msgstr "" "\n" "需要加入預設的 '%s' 項目嗎?如果你選擇「否」,更新將會被取消。" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "無效的套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升級套件庫時導致無效的檔案。請匯報問題。" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "停用第三方來源" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 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 " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網路問題,試檢查網路連線及再試。" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get clean'來移除先前安裝套件時的暫存檔。" +"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get " +"clean'來移除先前安裝套件時的暫存檔。" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -330,21 +345,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "無法下載升級套件" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常及再試 " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -353,63 +368,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "移除不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "提交時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "回覆原有系統狀態" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "無效的套件資訊" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -419,22 +436,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "詢問以確認" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "尋搜不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "系統升級完成。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -462,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在套用變更" @@ -477,6 +496,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -500,13 +520,14 @@ msgstr "發生嚴重錯誤" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 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 aborts now.\n" +"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 aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -546,6 +567,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -593,6 +615,7 @@ msgid "%li seconds" msgstr "%li秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +635,7 @@ msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -721,6 +745,7 @@ msgstr "無法下載發行說明" msgid "Please check your internet connection." msgstr "請檢查您的網路連線。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -810,14 +835,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要的安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建議的安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -830,6 +858,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其他更新" @@ -851,6 +880,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -884,6 +914,7 @@ msgstr "" msgid "Version %s" msgstr "版本%s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -899,13 +930,15 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 http://www.ubuntu.com以取得更多升級資訊。" +"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " +"http://www.ubuntu.com以取得更多升級資訊。" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "軟體索引損壞" @@ -916,22 +949,27 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo apt-get install -f”來修正問題。" +"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo " +"apt-get install -f”來修正問題。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "無下載" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1260,185 +1298,229 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "設置可安裝的軟體及更新部份之來源。" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'的光碟" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "含Ubuntu 6.06 LTS 'Dapper Drake'之光碟" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'的光碟" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10更新" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'的光碟" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支援" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04更新" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟體 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟體 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "含Ubuntu 4.10 'Warty Warthog'之光碟" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限制" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10更新" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 “Sarge”" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 “Sarge” 安全性更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian “Etch”(測試版)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian “Sid”(不穩定版)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" @@ -1446,17 +1528,14 @@ msgstr "不符合 DFSG 的軟體" #~ msgid " " #~ msgstr " " -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s 個新套件將會安裝。" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s 個套件將會移除。" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s 個套件將會升級。" @@ -1464,26 +1543,29 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "套件來源的資料已經過期\n" #~ "\n" -#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套件。\n" +#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套" +#~ "件。\n" #~ "\n" #~ "您須要連線到網際網路繼續。" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "您必須自行檢查更新\n" #~ "\n" -#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。" +#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設" +#~ "定。" #~ msgid "Channel" #~ msgstr "套件來源" @@ -1498,8 +1580,8 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "金鑰" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1507,10 +1589,9 @@ msgstr "不符合 DFSG 的軟體" #~ "請輸入您想加入的完整的 APT 來源列\n" #~ "\n" #~ "\n" -#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp.debian.org sarge " -#~ "main\"。" +#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp." +#~ "debian.org sarge main\"。" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1532,26 +1613,23 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" -#~ msgstr "升級至 Ubuntu 6.06 LTS" +#~ msgstr "" +#~ "升級至 Ubuntu 6.06 LTS" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" @@ -1561,7 +1639,6 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Add _Cdrom" #~ msgstr "加入光碟(_C)" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1588,19 +1665,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Downloading and installing the upgrades" #~ msgstr "正在下載及安裝升級" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "正在下載檔案 %li/%li,速度在 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1620,14 +1693,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." -#~ msgstr "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許關閉更新提示" +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." +#~ msgstr "" +#~ "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許" +#~ "關閉更新提示" #~ msgid "Installation Media" #~ msgstr "安裝媒體" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "新版本:%s (大小:%s)" @@ -1639,15 +1713,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "請先關閉其它程式,如‘aptitude’ 或‘Synaptic’。" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/log/dist-upgrade-" -#~ "apt.log 這兩個檔案。 現在取消更新。\n" +#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/" +#~ "log/dist-upgrade-apt.log 這兩個檔案。 現在取消更新。\n" #~ "您的原始 sources.list 已被存到 /etc/apt/sources.list.distUpgrade。" -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1675,16 +1749,16 @@ msgstr "不符合 DFSG 的軟體" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-properties' 工具或 " -#~ "synaptic升級後,你可以重新啟用它。" +#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" +#~ "properties' 工具或 synaptic升級後,你可以重新啟用它。" #~ 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." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」功能或在終端機中執行“sudo apt-get dist-" -#~ "upgrade”來完整地更新您的系統。" +#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」" +#~ "功能或在終端機中執行“sudo apt-get dist-upgrade”來完整地更新您的系統。" #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1701,12 +1775,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "升級現正中止,請匯報問題。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." -#~ msgstr "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." +#~ msgstr "" +#~ "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" +#~ "configure -a)。" #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "升級可能需要數小時及無法在稍後任何時間取消。" #~ msgid "" @@ -1736,23 +1813,22 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "檢驗升級套件失敗。可能是因為跟伺服器的網路連接出現問題。 " -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "您總共需要下載 %s。" #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop " -#~ "套件,因此無法偵測正在執行那個版本的 ubuntu。\n" +#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop 套" +#~ "件,因此無法偵測正在執行那個版本的 ubuntu。\n" #~ " 請進行操作前使用 synaptic 或 apt-get安裝上述其中一個套件" #~ msgid "Your system has already been upgraded." @@ -1762,4 +1838,4 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "自訂(_C)" #~ msgid "_Download updates in the background, but do not install them" -#~ msgstr "在背景下載更新套件,但無須安裝(_D)" \ No newline at end of file +#~ msgstr "在背景下載更新套件,但無須安裝(_D)" -- cgit v1.2.3 From 0bc703a0d36d8c99ac8ec9118111627623c006da Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 18:13:16 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - add quirks handler for xserver-xorg-input-* and bzr --- DistUpgrade/DistUpgradeCache.py | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index f6e6cad8..bc79f9e2 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -166,8 +166,8 @@ class MyCache(apt.Cache): def edgyQuirks(self): """ this function works around quirks in the dapper->edgy upgrade """ logging.debug("running edgyQuirks handler") - # deal with the python2.4-$foo -> python-$foo transition for pkg in self: + # deal with the python2.4-$foo -> python-$foo transition if (pkg.name.startswith("python2.4-") and pkg.isInstalled and not pkg.markedUpgrade): @@ -178,14 +178,23 @@ class MyCache(apt.Cache): "python2.4->python upgrade rule") except SystemError, e: logging.debug("Failed to apply python2.4->python install: %s (%s)" % (basepkg, e)) - # deal with *gar*gar* hpijs - if (self.has_key("hpijs") and self["hpijs"].isInstalled and - not self["hpijs"].markedUpgrade): - try: - self.markInstall("hpijs","hpijs quirk upgrade rule") - except SystemError, e: - logging.debug("Failed to apply hpijs install (%s)" % e) + # xserver-xorg-input-$foo gives us trouble during the upgrade too + if (pkg.name.startswith("xserver-xorg-input-") and + pkg.isInstalled and + not pkg.markedUpgrade): + try: + self.markInstall(pkg.name, "xserver-xorg-input fixup rule") + except SystemError, e: + logging.debug("Failed to apply %s fixup: %s (%s)" % (pkg.name, e)) + # deal with held-backs that are unneeded + for pkgname in ["hpijs", "bzr"]: + if (self.has_key(pkgname) and self[pkgname].isInstalled and + not self[pkgname].markedUpgrade): + try: + self.markInstall(pkgname,"%s quirk upgrade rule" % pkgname) + except SystemError, e: + logging.debug("Failed to apply %s install (%s)" % (pkgname,e)) def dapperQuirks(self): -- cgit v1.2.3 From 24e4c5f2f2474b659dc9543c908f00cf8d4900ac Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 19:00:39 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - don't fail on unexpected input from dpkg --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeViewGtk.py | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index a6faeb8a..050fc615 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,6 @@ +2006-10-17: + - ensure bzr and xserver-xorg-input-* is properly upgraded + - don't fail if dpkg sents unexpected status lines (lp: #66013) 2006-10-16: - remove leftover references to ubuntu-base and use ubuntu-minimal and ubuntu-standard instead diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index b176e8f0..13ede7ee 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -267,7 +267,10 @@ class GtkInstallProgressAdapter(InstallProgress): self.label_status.set_text("") def updateInterface(self): - InstallProgress.updateInterface(self) + try: + InstallProgress.updateInterface(self) + except ValueError, e: + logging.error("got ValueError from InstallPrgoress.updateInterface. Line was '%s' (%s)" % (self.read, e) # check if we haven't started yet with packages, pulse then if self.start_time == 0.0: self.progress.pulse() -- cgit v1.2.3 From ad1e40b643860122971a0ab8d942e54851458347 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 19:06:06 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - embarassing typo --- DistUpgrade/DistUpgradeViewGtk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 13ede7ee..97a57772 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -270,7 +270,7 @@ class GtkInstallProgressAdapter(InstallProgress): try: InstallProgress.updateInterface(self) except ValueError, e: - logging.error("got ValueError from InstallPrgoress.updateInterface. Line was '%s' (%s)" % (self.read, e) + logging.error("got ValueError from InstallPrgoress.updateInterface. Line was '%s' (%s)" % (self.read, e)) # check if we haven't started yet with packages, pulse then if self.start_time == 0.0: self.progress.pulse() -- cgit v1.2.3 From 75af4477ee82dd7782b064bfe425e49356701cac Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 19:08:03 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - fix tomboy while we are at it anyway --- DistUpgrade/Changelog | 3 ++- DistUpgrade/DistUpgradeCache.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 050fc615..45ef5edf 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,6 @@ 2006-10-17: - - ensure bzr and xserver-xorg-input-* is properly upgraded + - ensure bzr, tomboy and xserver-xorg-input-* are properly + upgraded - don't fail if dpkg sents unexpected status lines (lp: #66013) 2006-10-16: - remove leftover references to ubuntu-base and diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index bc79f9e2..a569bf37 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -188,7 +188,7 @@ class MyCache(apt.Cache): logging.debug("Failed to apply %s fixup: %s (%s)" % (pkg.name, e)) # deal with held-backs that are unneeded - for pkgname in ["hpijs", "bzr"]: + for pkgname in ["hpijs", "bzr", "tomboy"]: if (self.has_key(pkgname) and self[pkgname].isInstalled and not self[pkgname].markedUpgrade): try: -- cgit v1.2.3 From 1d27a9d8320275e936278b4a2f779f4371e60519 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 21 Oct 2006 14:20:05 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - fix incorrect format in logging --- DistUpgrade/Changelog | 2 ++ DistUpgrade/DistUpgradeCache.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 45ef5edf..6cb6a7df 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-21: + - fix incorrect arguments in fixup logging (lp: #67311) 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index a569bf37..7df0b510 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -185,7 +185,7 @@ class MyCache(apt.Cache): try: self.markInstall(pkg.name, "xserver-xorg-input fixup rule") except SystemError, e: - logging.debug("Failed to apply %s fixup: %s (%s)" % (pkg.name, e)) + logging.debug("Failed to apply fixup: %s (%s)" % (pkg.name, e)) # deal with held-backs that are unneeded for pkgname in ["hpijs", "bzr", "tomboy"]: -- cgit v1.2.3 From 332b558cf5cf256712deaa7f827472683d763dbe Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 13:51:37 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - logging improvments --- DistUpgrade/DistUpgradeControler.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index f91606f8..a968cdb8 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -359,7 +359,8 @@ class DistUpgradeControler(object): continue # no exception, so all was fine, we are done return True - + + logging.error("doUpdate() failed complettely") self._view.error(_("Error during update"), _("A problem occured during the update. " "This is usually some sort of network " @@ -397,6 +398,7 @@ class DistUpgradeControler(object): logging.debug("free on %s: %s " % (archivedir, free)) if self.cache.requiredDownload > free: free_at_least = apt_pkg.SizeToStr(self.cache.requiredDownload-free) + logging.error("not enough free space (missing %s)" % free_at_least) self._view.error(err_sum, err_long % (free_at_least,archivedir)) return False @@ -461,6 +463,7 @@ class DistUpgradeControler(object): res = self.cache.commit(fprogress,iprogress) except SystemError, e: # installing the packages failed, can't be retried + logging.error("SystemError from cache.commit(): %s" % e) self._view.getTerminal().call(["dpkg","--configure","-a"]) self._view.error(_("Could not install the upgrades"), _("The upgrade aborts now. Your system " @@ -480,7 +483,7 @@ class DistUpgradeControler(object): return True # maximum fetch-retries reached without a successful commit - logging.debug("giving up on fetching after maximum retries") + logging.error("giving up on fetching after maximum retries") self._view.error(_("Could not download the upgrades"), _("The upgrade aborts now. Please check your "\ "internet connection or "\ @@ -565,6 +568,7 @@ class DistUpgradeControler(object): try: res = self.cache.commit(fprogress,iprogress) except (SystemError, IOError), e: + logging.error("cache.commit() in doPostUpgrade() failed: %s" % e) self._view.error(_("Error during commit"), _("Some problem occured during the clean-up. " "Please see the below message for more " @@ -673,6 +677,7 @@ class DistUpgradeControler(object): self._view.setStep(1) if not self.prepare(): + logging.error("self.prepared() failed") self._view.error(_("Preparing the upgrade failed"), _("Preparing the system for the upgrade " "failed. Please report this as a bug " -- cgit v1.2.3 From ae8796907bc0d690057bc661ca926dd6bc4554cc Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 13:59:18 +0200 Subject: * force downgrade of libgl1-mesa-dri package if unofficial compiz packages are installed (lp: #58424) --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeCache.py | 27 ++++++++++++++++++++++++++- DistUpgrade/DistUpgradeView.py | 6 ++++-- 3 files changed, 33 insertions(+), 3 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 6cb6a7df..15988e46 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,8 @@ 2006-10-21: - fix incorrect arguments in fixup logging (lp: #67311) + - more error logging + - fix upgrade problems for people with unofficial compiz + repositories (lp: #58424) 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 7df0b510..9c062c41 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -195,7 +195,23 @@ class MyCache(apt.Cache): self.markInstall(pkgname,"%s quirk upgrade rule" % pkgname) except SystemError, e: logging.debug("Failed to apply %s install (%s)" % (pkgname,e)) - + # libgl1-mesa-dri from xgl.compiz.info (and friends) breaks the + # upgrade, work around this here by downgrading the package + if self.has_key("libgl1-mesa-dri"): + pkg = self["libgl1-mesa-dri"] + # the version from the compiz repo has a "6.5.1+cvs20060824" ver + if (pkg.candidateVersion == pkg.installedVersion and + "+cvs2006" in pkg.candidateVersion): + for ver in pkg._pkg.VersionList: + # the "officual" edgy version has "6.5.1~20060817-0ubuntu3" + if "~2006" in ver.VerStr: + # ensure that it is from a trusted repo + for (VerFileIter, index) in ver.FileList: + indexfile = self._list.FindIndex(VerFileIter) + if indexfile and indexfile.IsTrusted: + logging.info("Forcing downgrade of libgl1-mesa-dri for xgl.compz.info installs") + self._depcache.SetCandidateVer(pkg._pkg, ver) + break def dapperQuirks(self): """ this function works around quirks in the breezy->dapper upgrade """ @@ -240,6 +256,15 @@ class MyCache(apt.Cache): for pkg in self.getChanges(): if pkg.markedDelete: continue + # special case because of a bug in pkg.candidateOrigin + if pkg.markedDowngrade: + for ver in pkg._pkg.VersionList: + # version is lower than installed one + if apt_pkg.VersionCompare(ver.VerStr, pkg.installedVersion) < 0: + for (verFileIter,index) in ver.FileList: + if not origin.trusted: + untrusted.append(pkg.name) + continue origins = pkg.candidateOrigin trusted = False for origin in origins: diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py index 40617774..109a278b 100644 --- a/DistUpgrade/DistUpgradeView.py +++ b/DistUpgrade/DistUpgradeView.py @@ -95,12 +95,14 @@ class DistUpgradeView(object): self.toInstall = [] self.toUpgrade = [] self.toRemove = [] + self.toDowngrade = [] for pkg in changes: if pkg.markedInstall: self.toInstall.append(pkg.name) elif pkg.markedUpgrade: self.toUpgrade.append(pkg.name) elif pkg.markedDelete: self.toRemove.append(pkg.name) - # no downgrades, re-installs - assert(len(self.toInstall)+len(self.toUpgrade)+len(self.toRemove) == len(changes)) + elif pkg.markedDowngrade: self.toDowngrade.append(pkg.name) + # no re-installs + assert(len(self.toInstall)+len(self.toUpgrade)+len(self.toRemove)+len(self.toDowngrade) == len(changes)) def askYesNoQuestion(self, summary, msg): " ask a Yes/No question and return True on 'Yes' " pass -- cgit v1.2.3 From 703e7ca6c3a7d99db6bfcdbb7e09b5120327f850 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 14:27:39 +0200 Subject: * po/*.po: - updated the translations from rosetta + make update-po --- DistUpgrade/Changelog | 1 + po/am.po | 110 ++-- po/ar.po | 110 ++-- po/be.po | 110 ++-- po/bg.po | 110 ++-- po/bn.po | 110 ++-- po/br.po | 110 ++-- po/ca.po | 110 ++-- po/cs.po | 313 +++++----- po/csb.po | 110 ++-- po/da.po | 110 ++-- po/de.po | 110 ++-- po/el.po | 110 ++-- po/en_AU.po | 110 ++-- po/en_CA.po | 110 ++-- po/en_GB.po | 110 ++-- po/eo.po | 110 ++-- po/es.po | 110 ++-- po/et.po | 110 ++-- po/eu.po | 110 ++-- po/fa.po | 110 ++-- po/fi.po | 188 +++--- po/fr.po | 110 ++-- po/fur.po | 110 ++-- po/gl.po | 309 +++++----- po/he.po | 110 ++-- po/hi.po | 110 ++-- po/hr.po | 114 ++-- po/hu.po | 110 ++-- po/id.po | 110 ++-- po/it.po | 272 ++++----- po/ja.po | 110 ++-- po/ka.po | 723 +++++++++++------------ po/ko.po | 110 ++-- po/ku.po | 222 +++---- po/lt.po | 110 ++-- po/lv.po | 110 ++-- po/mk.po | 110 ++-- po/mr.po | 1502 +++++++++++++++++++++++++++++++++++++++++++++++ po/ms.po | 110 ++-- po/nb.po | 110 ++-- po/ne.po | 110 ++-- po/nl.po | 131 ++--- po/nn.po | 110 ++-- po/no.po | 110 ++-- po/oc.po | 255 ++++---- po/pa.po | 110 ++-- po/pl.po | 133 +++-- po/ps.po | 1498 ++++++++++++++++++++++++++++++++++++++++++++++ po/pt.po | 110 ++-- po/pt_BR.po | 370 ++++++------ po/qu.po | 110 ++-- po/ro.po | 110 ++-- po/ru.po | 141 +++-- po/rw.po | 110 ++-- po/sk.po | 110 ++-- po/sl.po | 110 ++-- po/sq.po | 110 ++-- po/sr.po | 110 ++-- po/sv.po | 110 ++-- po/ta.po | 110 ++-- po/th.po | 110 ++-- po/tl.po | 1565 +++++++++++++++++++++++++++++++++++++++++++++++++ po/tr.po | 162 ++--- po/uk.po | 110 ++-- po/update-manager.pot | 110 ++-- po/ur.po | 110 ++-- po/urd.po | 110 ++-- po/vi.po | 110 ++-- po/xh.po | 110 ++-- po/zh_CN.po | 110 ++-- po/zh_HK.po | 110 ++-- po/zh_TW.po | 110 ++-- 73 files changed, 9305 insertions(+), 4754 deletions(-) create mode 100644 po/mr.po create mode 100644 po/ps.po create mode 100644 po/tl.po diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 15988e46..a13db18f 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -3,6 +3,7 @@ - more error logging - fix upgrade problems for people with unofficial compiz repositories (lp: #58424) + - rosetta i18n updates 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/po/am.po b/po/am.po index 7b63b325..35554bab 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,34 +178,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -295,21 +295,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +318,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,65 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -426,19 +426,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -504,11 +504,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -518,28 +518,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -547,39 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -613,11 +613,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ar.po b/po/ar.po index b747dadf..7b5363f7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" @@ -156,22 +156,22 @@ msgstr "" "هذا النظام يحتوي على رزم مكسورة لا يمكن إصلاحها من هذا البرنامج, الرجاء " "العمل على إصلاحها أولا بواسطة apt-get أو synaptic قبل الإستمرار" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "لا يمكن تحديث الرزم العليا المطلوبة" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "سيكون من الضروري إزالة رزم مهمة" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 #, fuzzy msgid "Could not calculate the upgrade" msgstr "لم يكن ممكنا إحتساب التحديث" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -180,24 +180,24 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 #, fuzzy msgid "Error authenticating some packages" msgstr "خطأ في التحقق من هوية بعض الرزم" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "تعذّر تثبيت '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "لم يكن بالإمكان تثبيت إحدى الرزم المطلوبة. الرجاء التبليغ عن هذا كخطأ برمجي. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -304,21 +304,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "خطأ خلال التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "لا يوجد مساحة كافية على القرص الصلب" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -327,15 +327,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "لم يكن ممكنا تثبيت التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -344,12 +344,12 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 #, fuzzy msgid "Could not download the upgrades" msgstr "لم يكن ممكنا تنزيل التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " @@ -358,11 +358,11 @@ msgstr "" "سيتم إلغاء التحديث الآن, الرجاء التأكد من إتصالك للإنترنت أو وسيط التثبيت " "والمحاولة ثانيا. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -371,68 +371,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Remove obsolete packages?" msgstr "هل تود إزالة الرزم الملغية?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 #, fuzzy msgid "_Skip This Step" msgstr "_تجاهل هذه الخطوة" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_إزالة" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 #, fuzzy msgid "Error during commit" msgstr "خطأ أثناء التفعيل" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "جاري التأكد من مدير الحزم" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "حاليا في عملية تحديث معلومات المستودع" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "معلومات الرزمة غير صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -442,20 +442,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 #, fuzzy msgid "Asking for confirmation" msgstr "حاليا في عملية طلب التأكيد" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "جاري عملية التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "جاري عملية البحث عن البرامج الملغية" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "إنتهت عملية تحديث النظام." @@ -521,12 +521,12 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "لم يمكن العثور على أمر 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 #, fuzzy msgid "A fatal error occured" msgstr "وقع خطأ شديد" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -536,7 +536,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -544,7 +544,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -552,7 +552,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -560,7 +560,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -568,40 +568,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "إن نظامك الآن محدث" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, fuzzy, python-format msgid "Remove %s" msgstr "إزالة %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "تثبيت %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "تحديث %s" @@ -635,11 +635,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "مطلوب إعادة تشغيل النظام" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 #, fuzzy msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" diff --git a/po/be.po b/po/be.po index 9e4aa807..d4c115e7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -157,20 +157,20 @@ msgstr "" "выправіць у гэтай праграме. Калі ласка, спачатку выпраўце іх з дапамогай " "synaptic ці apt-get перш чым працягваць." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Немагчыма абнавіць неабходныя мэтапакеты" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Трэба было-б выдаліць абавязковы пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Немагчыма падлічыць абнаўленьне" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -179,11 +179,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -193,12 +193,12 @@ msgstr "" "праблемы зь сеткай. Вы можаце паспрабаваць паўтарыць дзеяньне пазьней. " "Глядзіце ніжэй сьпіс неаўтэнтыфікаваных пакетаў." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Немагчыма ўсталяваць \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -207,11 +207,11 @@ msgstr "" "памылцы. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Немагчыма вызначыць мэта-пакет" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -308,11 +308,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Памылка ў час абналеньня" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -320,11 +320,11 @@ msgstr "" "Узьнікла памылка ў час абнаўленьня. Звычайна гэта праблемы зь сеткай, калі " "ласка, праверце вашае сеткавае далуэньне й паўтарыце спробу." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Бракуе дыскавае прасторы" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -336,15 +336,15 @@ msgstr "" "дапамогай загаду \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Ці жадаеце пачаць абнаўленьне?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Немагчыма ўсталяваць абнаўленьні" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -353,11 +353,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Немагчыма зпампаваць абнаўленьні" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -365,11 +365,11 @@ msgstr "" "Абнаўленьне спынена. Калі ласка, праверце вашае сеткавае далучэньне альбо " "носьбіты ўсталёўкі й паўтарыце спробу. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -378,23 +378,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Выдаліць састарэлыя пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Аб_мінуць гэты крок" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "В_ыдаліць" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Памылка ў час зацьвярджэньня" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -403,42 +403,42 @@ msgstr "" "ніжэй паведамленьне. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Праверка кіраўніка пакетаў" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Абнаўленьне зьвестак сховішча" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Недзеяздольныя зьвесткі пра пакет" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -448,19 +448,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Запыт пацьвярджэньня" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Абнаўленьне" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -526,11 +526,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Ня знойдзена праграма \"diff\"" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Узьнікла невыправімая памылка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -540,7 +540,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -548,7 +548,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -556,7 +556,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -564,7 +564,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -572,39 +572,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Усталёўка %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Абнаўленьне %s" @@ -638,11 +638,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Патрабуецца перагрузка" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/bg.po b/po/bg.po index dc8dc1d8..11fa7f9b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -163,20 +163,20 @@ msgstr "" "този софтуер. Моля, поправете ги със synaptic или apt-get преди да " "продължите!" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Не може да бъдат надградени изисквани мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -188,11 +188,11 @@ msgstr "" "това като грешка." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "да е временен проблем с мрежата. Може би бихте искали да опитате отново по-" "късно. Вижте по-долу списъка на неудоствоерените пакети." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "грешка! " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -334,11 +334,11 @@ msgstr "" "Можете да ги разрешите отново след надграждането чрез инструмента software-" "properties или чрез synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Грешка по време на надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +346,11 @@ msgstr "" "Възникна проблем при актуализацията. Това обикновено е накакъв проблем с " "мрежата. Моля, проверете мрежовата връзка и опитайте пак!" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Недостатъчно свободно място на диска" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Не можеше да бъдат инсталирани надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Надграждането сега ще бъде прекратено. Системата Ви може да е в " "неизползваемо състояние. Бе изпълнено възстановяване (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Не можеше да бъдат свалени надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Надграждането се прекратява. Моля, проверете Интернет връзката или " "инсталационния носител и опитайте отново! " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -404,23 +404,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Премахване на остарелите пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "П_рескачане на стъпката" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Премахване" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Грешка при прехвърляне" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -429,28 +429,28 @@ msgstr "" "информация! " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Рестартиране на системата" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Проверка на диспечера на пакети" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Подготвяне на надграждането" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -460,16 +460,16 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Актуализиране информацията от хранилището" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 #, fuzzy msgid "Invalid package information" msgstr "Невалидна информация за пакет" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -482,19 +482,19 @@ msgstr "" "бъде открит.\n" "Това показва сериозна грешка. Моля, съобщете за това!" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Запитване за потвърждение" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." @@ -563,11 +563,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Командата \"diff\" не бе намерена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Възникна фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -583,28 +583,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -615,7 +615,7 @@ msgstr "" "\n" "Трябва да изтеглите данни общо %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -624,35 +624,35 @@ msgstr "" "Надграждането може да отнеме няколко часа, като не може да бъде отменено по-" "нататък." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Премахване на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Инсталиране на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Надграждане на %s" @@ -686,11 +686,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Нужно е рестартиране" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "Надграждането е завършено и има нужда от рестарт. Рестартиране сега?" diff --git a/po/bn.po b/po/bn.po index afa2194c..049e5d1e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "দরকারী meta-packages আপগ্রেড করতে পারে নি" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,23 +178,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' ইন্সটল করা যাচ্ছে না" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -203,11 +203,11 @@ msgstr "" "রিপোর্ট করুন। " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -305,11 +305,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "আপগ্রেড করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -317,11 +317,11 @@ msgstr "" "আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " "আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "ডিস্কে যথেস্ট ফাঁকা জায়গা নেই" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,11 +347,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -359,11 +359,11 @@ msgstr "" "আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " "করুন এবং আবার চেষ্টা করুন। " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -372,66 +372,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "এই ধাপটি এড়িয়ে যাও (_এ)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "সরাও (_স)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "আপগ্রেড প্রস্তুত করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -441,19 +441,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "তথ্যের জন্য জিজ্ঞাসা" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" @@ -522,11 +522,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "'diff' কমান্ডটি পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -536,28 +536,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -568,40 +568,40 @@ msgstr "" "\n" "আপনাকে সর্বমোট %s ডাউনলোড করতে হবে। " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s মুছো" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s ইন্সটল" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s আপগ্রেড" @@ -635,11 +635,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "রিবুট করা প্রয়োজন" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" diff --git a/po/br.po b/po/br.po index f6a9d395..17e0d931 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,34 +178,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -295,21 +295,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +318,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,65 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -426,19 +426,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -504,11 +504,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -518,28 +518,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -547,39 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -613,11 +613,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ca.po b/po/ca.po index 3991cf8c..c41d4453 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -163,21 +163,21 @@ msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb " "aquesta aplicació. Utilitzeu el Synaptic o apt-get abans de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "de l'error." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -203,12 +203,12 @@ msgstr "" "amb la xarxa. Podeu provar-ho després. A continuació es mostra la llista amb " "els paquets no autenticats." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "No s'ha pogut instal·lar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +217,11 @@ msgstr "" "els error. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -324,11 +324,11 @@ msgstr "" "reactivar-los, després de l'actualització de programari, des de 'propietats " "del programari' o des del Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -336,11 +336,11 @@ msgstr "" "S'ha produït un error mentre s'actualizava el vostre sistema. Comproveu la " "vostra connexió de xarxa i torneu a intentar-ho." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +353,15 @@ msgstr "" "apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -373,11 +373,11 @@ msgstr "" "L'actualització s'ha cancel·lat. El vostre sistema ha pogut quedar " "inservible. S'ha executat una recuperació del sistema (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "No s'han pogut descarregar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +385,11 @@ msgstr "" "S'ha cancel·lat l'actualització. Comproveu la vostra connexió a Internet o " "el mitjà d'instal·lació i torneu-ho a provar. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -403,51 +403,51 @@ msgstr "" "\n" "Si no teniu activat 'universe' se us sugerirà que els desintal·leu." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Voleu esborrar els paquets obsolets?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Omet aquest pas" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "Esbo_rra" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "S'està preparant l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -457,15 +457,15 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "S'està actualitzant la informació del dipòsit" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "La informació del paquet no és valida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +475,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Actualitzant" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" @@ -556,11 +556,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'ordre 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "S'ha produït un error greu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -570,28 +570,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -602,7 +602,7 @@ msgstr "" "\n" "Heu de descarregar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -611,35 +611,35 @@ msgstr "" "L'actualització pot durar algunes hores i no la podreu cancel·lar un cop " "hagi començat." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Esborra %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instal·la %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" @@ -673,11 +673,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "És necessari que reinicieu el sistema" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/cs.po b/po/cs.po index 47d205cb..a2fe3ee0 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:15+0000\n" -"Last-Translator: Tomáš Hála \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 22:54+0000\n" +"Last-Translator: Dominik Sauer \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,6 @@ msgid "Nearest server" msgstr "Nejbližší server" #: ../SoftwareProperties/SoftwareProperties.py:345 -#, fuzzy msgid "Custom servers" msgstr "Uživatelem vybrané servery" @@ -129,7 +128,7 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -160,20 +159,20 @@ msgstr "" "opraveny. Před pokračováním je prosím opravte použitím programu synaptic " "nebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Nemohu aktualizovat požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Toto by vedlo k odstranění základního balíku" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,26 +185,26 @@ msgstr "" "soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Chyba při ověřování některých balíků" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -"Nebylo možné ověřit nekteré balíky. To může být způsobeno přechodným " -"problémem v síti. Možná to budete chtít zkusit později. Níže je uveden " -"seznam neověřených balíků." +"Nebylo možné ověřit pravost některých balíků. To může být způsobeno " +"přechodným problémem v síti. Možná to budete chtít zkusit později. Níže je " +"uveden seznam postižených balíků." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nemohu nainstalovat '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,12 +212,11 @@ msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" -#: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -227,12 +225,11 @@ msgid "" "before proceeding." msgstr "" "Váš systém neobsahuje žádný z balíků ubuntu-desktop, kubuntu-desktop nebo " -"edubuntu-desktop a nebylo možné zjistit jakou verzi Ubuntu používáte.\n" -" Před pokračováním si prosím nainstalujte jeden z výše uvedených balíků " -"pomocí synaptic nebo apt-get." +"edubuntu-desktop a nebylo možné zjistit, jakou verzi Ubuntu používáte.\n" +" Před pokračováním prosím nainstalujte jeden z výše uvedených balíků pomocí " +"synaptic nebo apt-get." #: ../DistUpgrade/DistUpgradeControler.py:75 -#, fuzzy msgid "Failed to add the CD" msgstr "Chyba při přidávání CD" @@ -254,11 +251,11 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" -msgstr "Probíhá čtení cache" +msgstr "Probíhá čtení vyrovnávací paměti" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" -msgstr "Stáhnout ze sítě nějaká data pro přechod na vyšší verzi?" +msgstr "Stáhnout ze sítě údaje nutné pro přechod na vyšší verzi?" #: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" @@ -267,14 +264,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"Při přechodu na vyšší verzi můžete použít síť pro zjištění nejnovějších " -"aktualizací a pro stažení balíčků, které nejsou na aktuálním CD.\n" +"Při přechodu na vyšší verzi můžete použít síť pro získání nejnovějších " +"aktualizací a stažení balíčků, které nejsou na aktuálním CD.\n" "Pokud máte levné připojení k síti, můžete zde odpovědět 'Ano'. Pokud je vaše " "síťové připojené nákladné, zvolte 'Ne'." #: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" -msgstr "Nenalezeno správné zrcadlo" +msgstr "Nebyl nalezen platný zrcadlový server" #: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format @@ -287,11 +284,12 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"Během prohledávání informací o repozitářích nebylo nalezeno žádné zrcadlo " -"pro aktualizace. Toto se může stát, pokud používáte interní zrcadlo nebo " -"pokud jsou informace o zrcadle zastaralé.\n" +"Během prohledávání informací o zdrojích software Nebyl nalezen žádný " +"zrcadlový server obsahující aktualizace. To se může stát, pokud používáte " +"interní zrcadlový server nebo pokud jsou informace o zrcadlových serverech " +"zastaralé.\n" "\n" -"Přejete si i přesto přepsat váš 'sources.list'? Zvolíte-li 'Ano', budou " +"Chcete i přesto přepsat váš soubor 'sources.list'? Zvolíte-li 'Ano', budou " "všechny položky '%s' aktualizovány na '%s'.\n" "Zvolíte-li 'Ne', aktualizace bude zrušena." @@ -323,12 +321,12 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Aktualizace informací o repozitáři vyústila v neplatný soubor. Prosím " -"oznamte to jako chybu." +"Aktualizace informací o zdroji vyústila v neplatný soubor. Prosím oznamte to " +"jako chybu." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" -msgstr "Zdroje třetích stran vypnuté" +msgstr "Zdroje třetích stran zakázány" #: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" @@ -336,27 +334,27 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Některé položky třetích stran v souboru sources.list byly vyřazeny. Tyto " -"položky můžete opět povolit po přechodu na novou verzi za pomocí nástroje " -"'software-properties' nebo nástroje synaptic." +"Některé zdroje třetích stran v souboru sources.list byly zakázány. Tyto " +"zdroje můžete opět povolit po přechodu na novou verzi pomocí jdnoho z " +"nástrojů 'Zdroje software' nebo 'Synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Chyba během aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Nastala chyba během aktualizace. Toto je obvykle způsobeno chybou síťového " -"připojení. Prosím zkontrolujte své připojení a zkuste to znovu." +"připojení. Prosím zkontrolujte své připojení k síti a zkuste to znovu." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Nedostatek volného místa na disku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,19 +362,19 @@ msgid "" "apt-get clean'." msgstr "" "Aktualizace bude nyní přerušena. Prosím, uvolněte nejméně %s místa na %s. " -"Vyprázdněte váš koš a odstraňte dočasné balíčky z dřívějších instalací " +"Vyprázdněte svůj koš a odstraňte dočasné balíčky z dřívějších instalací " "pomocí 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" -msgstr "Nelze nainstalovat aktualizace" +msgstr "Nepodařilo se nainstalovat aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -391,23 +389,23 @@ msgstr "" "Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " "soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" -msgstr "Nelze stáhnout aktualizace" +msgstr "Nepodařilo se stáhnout aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"Aktualizace byla předčasně ukončena. Prosím zkontrolujte si připojení k " -"internetu nebo instalační médium a zkuste to znovu. " +"Aktualizace byla předčasně ukončena. Prosím zkontrolujte připojení k " +"Internetu popř. instalační médium a zkuste to znovu. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Podpora pro některé aplikace byla ukončena" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -416,57 +414,57 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" "Společnost Canonical Ltd. již neposkytuje podporu pro následující softwarové " -"balíky. Je možné, že tyto balíčky jsou stále spravovány komunitou.\n" +"balíky. Je však možné, že tyto balíky jsou nadále podporovány komunitou.\n" "\n" -"Pokud nemáte povolen software spravovaný komunitou (universe), tyto balíčky " -"budou v dalším kroku navrhnuty k odstranění." +"Pokud nemáte povolen software spravovaný komunitou (Universe), tyto balíky " +"budou v dalším kroku navrhnuty k odebrání." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Odebrat zastaralé balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Přeskočit tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Odebrat" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Chyba při potvrzování" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Během čištění nastal problém. Podrobnější informace jsou obsaženy v " +"Během úklidu nastal problém. Podrobnější informace jsou obsaženy v " "následující zprávě: " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" -msgstr "Obnovuje se původní stav systému" +msgstr "Obnovuji původní stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Stahuji verzi '%s' přenesenou z vyšší verze distribuce" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Kontroluji správce balíků" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Příprava přechodu na vyšší verzi selhala" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -476,15 +474,15 @@ msgstr "" "chybu jako chybu balíčku 'update-manager' a přiložte soubory z adresáře /var/" "log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" -msgstr "Aktualizují se informace o repozitáři" +msgstr "Aktualizují se informace o zdrojích" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" -msgstr "Neplatná informace o balících" +msgstr "Neplatná informace o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,25 +491,23 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Poté co byly aktualizovány informace o balících, nebyl nalezen nezbytný " -"balík '%s'.\n" -"Toto ukazuje na závažný problém, prosím nahlašte toto jako chybu balíku " -"'update-manager' a přiložte k hlášení o chybě soubory v adresáři /var/log/" -"dist-upgrade/." +"Po aktualizaci informací o balících nebyl nalezen nezbytný balík '%s'.\n" +"To ukazuje na závažný problém; prosím nahlaste chybu balíku 'update-manager' " +"a přiložte k hlášení o chybě soubory v adresáři /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Vyžaduji potvrzení" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Probíhá přechod na vyšší verzi" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Vyhledávám zastaralý software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Přechod na vyšší verzi systému je dokončen." @@ -526,7 +522,7 @@ msgid "Fetching is complete" msgstr "Stahování je dokončeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" @@ -534,10 +530,10 @@ msgstr "Stahuji soubor %li z %li rychlostí %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" -msgstr "Zhruba %s zbývá" +msgstr "Zbývá zhruba %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Stahuji soubor %li z %li" @@ -558,8 +554,8 @@ 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 bugreport." msgstr "" -"Aktualizace byla předčasně ukončena. Nahlašte prosím tuto chybu jako chybu " -"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře /" +"Přechod na vyšší verzi systému byl předčasně ukončen. Nahlaste prosím chybu " +"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře /" "var/log/dist-upgrade/." #. self.expander.set_expanded(True) @@ -577,18 +573,18 @@ msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -"Pokud zvolíte nahrazení novější verzí, ztratíte veškeré změny tohoto " +"Pokud zvolíte nahrazení novější verzí, ztratíte veškeré lokální změny tohoto " "konfiguračního souboru." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Příkaz \"diff\" nebyl nalezen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Nastala kritická chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -602,7 +598,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -610,7 +606,7 @@ msgstr[0] "%d balík bude odstraněn." msgstr[1] "%d balíky budou odstraněny." msgstr[2] "%d balíků bude odstraněno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -618,7 +614,7 @@ msgstr[0] "%d nový balík bude nainstalován." msgstr[1] "%d nové balíky budou nainstalovány." msgstr[2] "%d nových balíků bude nainstalováno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -626,8 +622,8 @@ msgstr[0] "%d balík bude nahrazen vyšší verzí." msgstr[1] "%d balíky budou nahrazeny vyšší verzí." msgstr[2] "%d balíky bude nahrazeno vyšší verzí." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format msgid "" "\n" "\n" @@ -637,43 +633,41 @@ msgstr "" "\n" "Bude staženo celkem %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"Přechod na vyšší verzi může trvat několik hodin a nelze jej v budoucnu " -"zrušit." +msgstr "Přechod na vyšší verzi může trvat několik hodin a nelze jej vzít zpět." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." -msgstr "Uzavřete všechny aplikace a dokumenty pro zamezení ztrátě dat." +msgstr "Pro zamezení ztrátě dat uzavřete všechny aplikace a dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -"Pro váš systém nejsou k dispozici žádné aktualizace. Aktualizace bude nyní " -"zrušena." +"Pro váš systém nejsou k dispozici žádné aktualizace. Přechod na vyšší verzi " +"bude nyní zrušen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Odebrat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Nainstalovat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aktualizovat %s" @@ -706,18 +700,18 @@ msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" -"Toto stahování bude trvat asi %s linkou o rychlosti linky 1Mbit DSL a asi %s " -"modemem 56kbit." +"Stahování bude trvat cca. %s linkou o rychlosti 1Mbit (DSL) a cca. %s " +"modemem o rychlosti 56kbit." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" -msgstr "Vyžadován restart" +msgstr "Je nutné restartovat počítač" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"Přechod na vyšší verzi byl dokončen a je nutné restartovat systém. Chcete " +"Přechod na vyšší verzi byl dokončen a je nutné restartovat počítač. Chcete " "jej restartovat nyní?" #. testcode to see if the bullets look nice in the dialog @@ -738,24 +732,26 @@ msgid "" msgstr "" "Zrušit probíhající aktualizaci?\n" "\n" -"Zrušení aktualizace může systém zanechat v nepoužitelném stavu. Je " -"důrazně doporučeno v aktualizaci pokračovat." +"Zrušení aktualizace může systém zanechat v nepoužitelném stavu. Důrazně doporučuji v aktualizaci pokračovat." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Pro dokončení aktualizace restartujte systém" +msgstr "" +"Pro dokončení přechodu na vyšší verzi systému restartujte počítač" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Spustit aktualizaci?" +msgstr "Spustit přechod na vyšší verzi systému?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "Aktualizuji systém Ubuntu na verzi 6.10" +msgstr "Přecházím na verzi systému Ubuntu v6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "Probíhá čištění" +msgstr "Probíhá úklid" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" @@ -771,15 +767,15 @@ msgstr "Stahuji a instaluji balíky potřebné pro přechod na vyšší verzi" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "Modifikuji softwarové kanály." +msgstr "Upravuji softwarové kanály." #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "Připravuji přechod na vyšší verzi" +msgstr "Připravuji přechod na vyšší verzi systému" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "Restartuji systém" +msgstr "Restartuji počítač" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" @@ -787,7 +783,7 @@ msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "_Zrušit přechod na vyšší verzi" +msgstr "_Zrušit přechod na vyšší verzi systému" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -812,11 +808,11 @@ msgstr "_Restartovat nyní" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "_Pokračovat v aktualizaci" +msgstr "_Pokračovat v přechodu na vyšší verzi systému" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "_Začít aktualizaci" +msgstr "_Začít přechod na vyšší verzi systému" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -832,12 +828,12 @@ msgstr "Nemohu stáhnout poznámky k vydání." #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "Prosím zkontrolujte své internetové připojení." +msgstr "Prosím zkontrolujte své připojení k internetu." #. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "Nemohu spustit aktualizační nástroj" +msgstr "Nemohu spustit nástroj pro aktualizaci na vyšší řadu" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" @@ -894,14 +890,14 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" -msgstr "Autentizace selhala." +msgstr "Selhalo ověření pravosti." #: ../UpdateManager/DistUpgradeFetcher.py:229 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Autentizace aktualizace selhala. Může jít o problém se sítí nebo se " +"Ověření pravosti aktualizace selhalo. Může jít o problém se sítí nebo se " "serverem. " #: ../UpdateManager/GtkProgress.py:108 @@ -968,9 +964,8 @@ msgid "Version %s: \n" msgstr "Verze %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." -msgstr "Stahuji seznam změn ..." +msgstr "Stahuji seznam změn..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -1117,7 +1112,7 @@ msgstr "Zaš_krtnout" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Zkontrolovat dostupnost nových aktualizací v distribučních kanálech" +msgstr "Zkontrolovat dostupnost nových aktualizací v kanálech softwaru" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1153,7 +1148,7 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Aktualizace softwaru opravuje chyby, eliminuje bezpečnostní zranitelnosti a " +"Aktualizace softwaru opravují chyby, eliminuje bezpečnostní zranitelnosti a " "poskytují nové vlastnosti." #: ../data/glade/UpdateManager.glade.h:19 @@ -1181,9 +1176,8 @@ msgid "_Install Updates" msgstr "Na_instalovat aktualizace" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" -msgstr "U_pgrade" +msgstr "_Aktualizovat" #: ../data/glade/UpdateManager.glade.h:26 msgid "changes" @@ -1290,7 +1284,7 @@ msgstr "Třetí strana" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" -msgstr "_Zkontrolovat aktualizace automaticky" +msgstr "_Kontrolovat aktualizace automaticky" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" @@ -1476,9 +1470,8 @@ msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Udržováno komunitou (Universe)" +msgstr "Svobodný software oficiálně podporovaný společností Canonical" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1677,10 +1670,10 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Přerušit _stahování" #~ msgid "Could not find any upgrades" -#~ msgstr "Žádné upgrady nebyly nalezeny." +#~ msgstr "Žádné aktualizace na vyšší řadu nebyly nalezeny." #~ msgid "Your system has already been upgraded." -#~ msgstr "Váš systém byl již upgradován." +#~ msgstr "Váš systém byl již aktualizován na vyšší řadu" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" @@ -1694,7 +1687,7 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Aktualizace Ubuntu" #~ msgid "Cannot install all available updates" -#~ msgstr "Nelze nainstalovat všechny dostupné aktualizace" +#~ msgstr "Nelze nainstalovat všechny dostupné aktualizace na vyšší řadu" #~ msgid "" #~ "Examining your system\n" @@ -1711,19 +1704,21 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Oficiálně podporované" #~ msgid "The following updates will be skipped:" -#~ msgstr "Následující aktualizace budou přeskočeny:" +#~ msgstr "Budou přeskočeny následující aktualizace na vyšší řadu:" #~ msgid "About %li seconds remaining" -#~ msgstr "Zhruba %li sekund zbývá" +#~ msgstr "Zbývá přibližně %li sekund" #~ msgid "Download is complete" -#~ msgstr "Stahování bylo dokončeno" +#~ msgstr "Stahování je hotovo" #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "Upgrade byl předčasně ukončen. Prosím oznamte to jako chybu" +#~ msgstr "" +#~ "Aktualizace na vyšší řadu byla předčasně ukončena. Prosím oznamte to jako " +#~ "chybu" #~ msgid "Upgrading Ubuntu" -#~ msgstr "Upgraduje se Ubuntu" +#~ msgstr "Aktualizuje se Ubuntu na vyšší řadu" #~ msgid "Hide details" #~ msgstr "Skrýt detaily" @@ -1732,40 +1727,40 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Zobrazit detaily" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "V jednu chvíli může běžet jen jeden nástroj pro správu software" +#~ msgstr "V jednu chvíli může běžet jen jeden nástroj pro správu softwaru" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Uzavřete nejdříve prosím jiné aplikace, jako např. \"aptitude\" nebo " +#~ "Prosím, uzavřete nejdříve jiné aplikace jako např. \"aptitude\" nebo " #~ "\"Synaptic\"." #~ msgid "Channels" -#~ msgstr "Zdroje" +#~ msgstr "Kanály" #~ msgid "Keys" #~ msgstr "Klíče" #~ msgid "Installation Media" -#~ msgstr "Instalační Medium" +#~ msgstr "Instalační média" #~ msgid "Software Preferences" -#~ msgstr "Předvolby software" +#~ msgstr "Volby softwaru" #~ msgid " " #~ msgstr " " #~ msgid "Channel" -#~ msgstr "Zdroje" +#~ msgstr "Kanál" #~ msgid "Components" #~ msgstr "Součásti" #~ msgid "Add Channel" -#~ msgstr "Přidat zdroj" +#~ msgstr "Přidat kanál" #~ msgid "Edit Channel" -#~ msgstr "Editvat zdroj" +#~ msgstr "Upravit kanál" #~ msgid "_Add Channel" #~ msgid_plural "_Add Channels" @@ -1774,7 +1769,7 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr[2] "_Přidat kanály" #~ msgid "_Custom" -#~ msgstr "_Uživatelský" +#~ msgstr "_Vlastní" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "Ubuntu 6.06 LTS" diff --git a/po/csb.po b/po/csb.po index 47143244..f55fb7af 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-08 04:10+0000\n" "Last-Translator: Michôł Òstrowsczi \n" "Language-Team: Kashubian \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Nie je mòżno zaktualizowac wëmôgónëch meta-paczétów" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,23 +178,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Fela òbczas ùdowierzaniô niechtërnëch paczétów" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nie je mòżno zainstalowac '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -203,11 +203,11 @@ msgstr "" "felã. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -297,21 +297,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fela òbczas aktualizacëji" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -320,15 +320,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "CZë chcesz zrëszëc aktualizacëjã?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Instalacëja aktualizacëji nie darzëła sã." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -337,21 +337,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -360,65 +360,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Rëmôj" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fela òbczas zacwierdzaniô" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Sprôwdzanié menadżera paczétów" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -428,19 +428,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -508,11 +508,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Pòlét 'diff' nie òsta nalazłé" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -522,7 +522,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -530,7 +530,7 @@ msgstr[0] "%d paczét òstanié rëmniãty." msgstr[1] "%d paczétë òstaną rëmniãte." msgstr[2] "%d paczétów òstaną rëmniãtëch." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -538,7 +538,7 @@ msgstr[0] "%d nowi paczétë òstaną zainstalowóne." msgstr[1] "%d nowi paczét òstanie zainstalowóny." msgstr[2] "%d nowëch paczétów òstanie zainstalowónëch." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -546,7 +546,7 @@ msgstr[0] "%d paczét òstanié zaktualizowóny." msgstr[1] "%d paczétë òstaną zaktualizowóne." msgstr[2] "%d paczétów òstanie zaktualizowónëch." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -554,39 +554,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Twojô systema je fùl zaktualizowónô" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Rëmôj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalëjë %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aktualizëjë %s" @@ -620,11 +620,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Wëmògóne je zrëszenié kòmpùtra znowa" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/da.po b/po/da.po index dee2a8eb..9979f379 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 15:55+0000\n" "Last-Translator: Lasse Bang Mikkelsen \n" "Language-Team: Danish \n" @@ -158,20 +158,20 @@ msgstr "" "Dit system indeholder ødelagte pakker som ikke kunne repareres med dette " "program. Reparér dem venligst med synaptic eller apt-get, før du fortsætter." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke opgradere de krævede metapakker" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vital pakke" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kunne ikke beregne opgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -184,11 +184,11 @@ msgstr "" "filerne i /var/log/dist-upgrade/ i fejlrapporten." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "kan prøve igen senere. Se nedenfor en liste over pakker som ikke kunne " "godkendes." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "som en fejl. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan ikke gætte metapakke" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -339,11 +339,11 @@ msgstr "" "genaktivere dem efter opgraderingen med \"software-properties\"-værktøjet " "eller med synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fejl under opdatering" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +351,11 @@ msgstr "" "En fejl opstod under opdateringen. Dette skyldes som regel et " "netværksproblem, tjek venligst din netværksforbindelse og prøv igen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Ikke tilstrækkeligt ledig diskplads" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -367,15 +367,15 @@ msgstr "" "køre 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +389,11 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +401,11 @@ msgstr "" "Opgraderingen afbrydes nu. Tjek venligst din internetforbindelse eller dit " "installationsmedie og prøv igen. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Support stoppede for nogle programmer" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +419,23 @@ msgstr "" "Hvis du ikke har slået software vedligeholdt af fællesskabet (universe) til, " "vil disse pakker blive foreslået fjernet i det næste trin." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Spring dette trin over" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fejl under gennemførelse" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,27 +444,27 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Genskaber oprindelig systemtilstand" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Henter tilbageportering af \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Klargøring af opgraderingen fejlede" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -474,15 +474,15 @@ msgstr "" "fejl mod \"update-manager\"-pakken og inkludér filerne i /var/log/dist-" "upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ugyldig pakkeinformation" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -497,19 +497,19 @@ msgstr "" "manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " "fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Anmoder om bekræftelse" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Opgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" @@ -581,11 +581,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Kommandoen \"diff\" blev ikke fundet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Der opstod en alvorlig fejl" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -599,28 +599,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakke vil blive fjernet." msgstr[1] "%d pakker vil blive fjernet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d ny pakke vil blive installeret." msgstr[1] "%d nye pakker vil blive installeret." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakke vil blive opgraderet." msgstr[1] "%d pakker vil blive opgraderet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -631,7 +631,7 @@ msgstr "" "\n" "Du skal hente i alt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -639,17 +639,17 @@ msgstr "" "Hentning og installation af opgraderingen kan tage flere timer og kan ikke " "afbrydes senere." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -657,17 +657,17 @@ msgstr "" "Der er ingen opgraderinger tilgængelige for dit system. Opgraderingen vil nu " "blive afbrudt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Opgradér %s" @@ -703,11 +703,11 @@ msgstr "" "Denne hentning vil tage omkring %s med en 1 Mbit DSL-forbindelse og omkring %" "s med et 56k modem" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Genstart af maskinen påkrævet" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/de.po b/po/de.po index c12b6359..7aca6004 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -164,20 +164,20 @@ msgstr "" "werden können. Bitte reparieren Sie diese mit Synaptic oder apt-get, bevor " "Sie fortfahren." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "erstellen Sie hierfür einen Fehlerbericht." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -204,12 +204,12 @@ msgstr "" "später noch einmal. Die unten stehenden Pakete konnten nicht auf ihre " "Echtheit hin bestätigt werden:" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "›%s‹ kann nicht installiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "Sie hierfür einen Fehlerbericht. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -347,11 +347,11 @@ msgstr "" "Sie können diese nach dem Upgrade mit dem 'software-properties'-Werkzeug " "oder mit Synaptic reaktivieren." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fehler während der Aktualisierung" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -360,11 +360,11 @@ msgstr "" "Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre " "Netzwerkverbindung und versuchen Sie es noch einmal." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Unzureichender freier Festplattenspeicher" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -376,15 +376,15 @@ msgstr "" "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -400,11 +400,11 @@ msgstr "" "manager\" und fügen sie alle Dateien in /var/log/dist-upgrade dem " "Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -413,11 +413,11 @@ msgstr "" "Internet-Verbindung oder Ihr Installationsmedium und versuchen Sie es noch " "einmal. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -432,23 +432,23 @@ msgstr "" "Wenn sie 'universe' nicht aktiviert haben, werden diese Pakete im nächsten " "Schritt zum Entfernen vorgeschlagen." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Ü_berspringen" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Entfernen" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fehler beim Anwenden" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -457,28 +457,28 @@ msgstr "" "Nachricht für nähere Informationen. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Lade Rückportierung von '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Aktualisierung vorbereiten" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -488,15 +488,15 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Aktualisiere Quellen-Information" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -511,19 +511,19 @@ msgstr "" "einen Fehlerbericht für das Paket \"update-manager\" und fügen sie alle " "Dateien in /var/log/dist-upgrade dem Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Nach Bestätigung fragen" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Aktualisiere" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Nach veralteter Software wird gesucht" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." @@ -597,11 +597,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Das 'diff'-Kommando konnte nicht gefunden werden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ein fataler Fehler ist aufgetreten" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -617,28 +617,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -649,7 +649,7 @@ msgstr "" "\n" "Insgesamt müssen %s heruntergeladen werden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -657,35 +657,35 @@ msgstr "" "Die Aktualisierung kann mehrere Stunden in Anspruch nehmen. Desweiteren kann " "sie zu keinem späteren Zeitpunkt mehr abgebrochen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s wird entfernt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s wird installiert" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s wird aktualisiert" @@ -721,11 +721,11 @@ msgstr "" "Das Herunterladen wird ungefähr %s mit einer 1Mbit DSL-Verbindung und " "ungefähr %s mit einer 56k Modemverbindung dauern" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Neustart erforderlich" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/el.po b/po/el.po index bd9da55e..b3685c48 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -161,20 +161,20 @@ msgstr "" "διορθωθούν με αυτό το λογισμικό. Παρακαλώ διορθώστε τα μέσω synaptic ή apt-" "get για να συνεχίσετε." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετα-πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -187,11 +187,11 @@ msgstr "" "στην αναφορά σφάλματος τα αρχεία στο /var/log/dist-upgrade/." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -201,12 +201,12 @@ msgstr "" "σε ένα πρόβλημα δικτύου. Προσπαθήστε αργότερα. Δείτε παρακάτω τη λίστα των " "μη πιστοποιημένων πακέτων." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Αδυναμία εγκατάστασης '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -215,11 +215,11 @@ msgstr "" "ως σφάλμα. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -343,11 +343,11 @@ msgstr "" "Μπορείτε να τις ενεργοποιήσετε μετά την αναβάθμιση με το εργαλείο 'software-" "properties' ή με το synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Σφάλμα κατά την ενημέρωση" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -355,11 +355,11 @@ msgstr "" "Δημιουργήθηκε ένα πρόβλημα κατά την αναβάθμιση. Αυτό συνήθως σημαίνει " "πρόβλημα δικτύου. Ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε ξανά." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -371,15 +371,15 @@ msgstr "" "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -394,11 +394,11 @@ msgstr "" "συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " "σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -406,11 +406,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Η υποστήριξη για ορισμένες εφαρμογές τερματίστηκε" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -424,23 +424,23 @@ msgstr "" "Αν δεν έχετε ενεργοποιημένο το 'universe' , θα γίνει πρόταση για απομάκρυνση " "αυτών των πακέτων στο επόμενο βήμα." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Παράκα_μψη αυτου του βήματος" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Απομάκρυνση" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -449,27 +449,27 @@ msgstr "" "παρακάτω μήνυμα για περισσότερες πληροφορίες. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Λήψη backport του '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Απέτυχε η προετοιμασία της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -479,15 +479,15 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά τα αρχεία του /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών repository" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -502,19 +502,19 @@ msgstr "" "συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " "σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Ερώτηση για επιβεβαίωση" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." @@ -587,11 +587,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Η εντολή 'diff' δεν βρέθηκε" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Προέκυψε μοιραίο σφάλμα" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -606,28 +606,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d πακέτο πρόκειται να απομακρυνθεί." msgstr[1] "%d πακέτα πρόκειται να απομακρυνθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d νέο πακέτο πρόκειται να εγκατασταθεί." msgstr[1] "%d νέα πακέτα πρόκειται να εγκατασταθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d πακέτο πρόκειται να αναβαθμιστεί." msgstr[1] "%d πακέτα πρόκειται να αναβαθμιστούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -638,7 +638,7 @@ msgstr "" "\n" "Θα πρέπει να κάνετε συνολική λήψη %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -647,19 +647,19 @@ msgstr "" "Η αναβάθμιση μπορεί να διαρκέσει αρκετές ώρες και δεν είναι δυνατή η ακύρωση " "της αργότερα." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -667,17 +667,17 @@ msgstr "" "Δεν υπάρχουν διαθέσιμες αναβαθμίσεις για το σύστημα σας. Η αναβάθμιση θα " "ακυρωθεί." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Απομάκρυνση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Εγκατάσταση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Αναβάθμιση %s" @@ -713,11 +713,11 @@ msgstr "" "Η λήψη θα διαρκέσει περίπου %s με σύνδεση 1Mbit DSL και περίπου %s με ένα " "56K μόντεμ." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Απαιτείται επανεκκίνηση" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/en_AU.po b/po/en_AU.po index 527ff9ba..49d05713 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" @@ -155,20 +155,20 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -177,11 +177,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -191,12 +191,12 @@ msgstr "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -205,11 +205,11 @@ msgstr "" "bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -321,11 +321,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -333,11 +333,11 @@ msgstr "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -349,15 +349,15 @@ msgstr "" "'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -371,11 +371,11 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bug report." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -383,11 +383,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -396,23 +396,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,42 +421,42 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +471,19 @@ msgstr "" "manager' package and include the files in /var/log/dist-upgrade/ in the bug " "report." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "System upgrade is complete." @@ -551,11 +551,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -569,28 +569,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -601,7 +601,7 @@ msgstr "" "\n" "You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -609,33 +609,33 @@ msgstr "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time during the process." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -669,11 +669,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Reboot required" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/en_CA.po b/po/en_CA.po index bd5dd1c3..c56733fd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -181,23 +181,23 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -300,22 +300,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,51 +364,51 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -417,15 +417,15 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,20 +435,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -515,11 +515,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -529,28 +529,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -558,40 +558,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -625,11 +625,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index 76123691..c47b2fc1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" @@ -157,20 +157,20 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,11 +183,11 @@ msgstr "" "files in /var/log/dist-upgrade/ in the bugreport." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -197,12 +197,12 @@ msgstr "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,11 +211,11 @@ msgstr "" "bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -335,11 +335,11 @@ msgstr "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -347,11 +347,11 @@ msgstr "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -363,15 +363,15 @@ msgstr "" "installations using 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -385,11 +385,11 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -397,11 +397,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Support for some applications ended" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -415,23 +415,23 @@ msgstr "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -440,27 +440,27 @@ msgstr "" "more information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Fetching backport of '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Preparing the upgrade failed" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -470,15 +470,15 @@ msgstr "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,19 +493,19 @@ msgstr "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "System upgrade is complete." @@ -577,11 +577,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -595,28 +595,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d package is going to be removed." msgstr[1] "%d packages are going to be removed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d new package is going to be installed." msgstr[1] "%d new packages are going to be installed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d package is going to be upgraded." msgstr[1] "%d packages are going to be upgraded." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -627,7 +627,7 @@ msgstr "" "\n" "You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -635,17 +635,17 @@ msgstr "" "Fetching and installing the upgrade can take several hours and cannot be " "cancelled at any time later." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -653,17 +653,17 @@ msgstr "" "There are no upgrades available for your system. The upgrade will now be " "cancelled." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -699,11 +699,11 @@ msgstr "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Reboot required" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/eo.po b/po/eo.po index 005b2ed4..b09e0063 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" @@ -154,20 +154,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -176,23 +176,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ne eblis instalo de '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -201,11 +201,11 @@ msgstr "" "cimo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -298,11 +298,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Eraro dum gxisdatigo" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -310,11 +310,11 @@ msgstr "" "Problemo okazis dum la gxisdatigo. Kutime tio okazas pro retaj problemoj, " "bonvolu kontroli vian retan konekton kaj reprovi." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Ne estas suficxa libera loko en disko" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +323,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Cxu vi volas komenci la promociadon?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Ne eblis instali la promociojn" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,21 +340,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -363,23 +363,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -388,42 +388,42 @@ msgstr "" "pliaj informoj. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Kontrolado de pakajxa direktisto" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Gxisdatigo de deponeja informo" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Nevalida pakajxa informo" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -433,19 +433,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Petado de konfirmo" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Promociado" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Sercxado de ne plu uzata programaro" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Sistema promocio estas kompleta." @@ -511,11 +511,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "La komando 'diff' ne estis trovata" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -525,28 +525,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -554,39 +554,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Via sistemo estas gxisdatigita" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -620,11 +620,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/es.po b/po/es.po index ab764d9f..bc372889 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -164,20 +164,20 @@ msgstr "" "software. Por favor, arréglelos primero usando Synaptic o apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "No se han podido actualizar los meta-paquetes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,11 +188,11 @@ msgstr "" "actualización. Por favor, informe de ésto como un fallo." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "problema transitorio en la red. Pruebe de nuevo más tarde. Vea abajo una " "lista de los paquetes no autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "No se ha podido instalar «%s»" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "como un fallo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -343,11 +343,11 @@ msgstr "" "list». Puede volver a activarlas tras la actualización con la herramienta " "«Propiedades del software», o con Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Error durante la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -356,11 +356,11 @@ msgstr "" "tipo de problema en la red, por lo que le recomendamos que compruebe su " "conexión de red y vuelva a intentarlo." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "No hay espacio suficiente en el disco" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -372,15 +372,15 @@ msgstr "" "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -396,11 +396,11 @@ msgstr "" "incluya en el informe de error los archivos contenidos en /var/log/dist-" "upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -408,11 +408,11 @@ msgstr "" "La actualización se interrumpirá ahora. Por favor, compruebe su conexión a " "Internet (o su soporte de instalación) y vuelva a intentarlo. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Algunas aplicaciones han dejado de tener soporte" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -426,23 +426,23 @@ msgstr "" "Si no tiene habilitado el software mantenido por la comunidad («universe»), " "se le sugerirá que desinstale estos paquetes en el siguiente paso." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Quitar" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Error durante la confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -451,27 +451,27 @@ msgstr "" "inferior para más información. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Descargando «backport» de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Comprobando gestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Falló la preparación de la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -482,15 +482,15 @@ msgstr "" "«update-manager», e incluya en el informe los archivos contenidos en el " "directorio /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Información de paquete no válida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -505,19 +505,19 @@ msgstr "" "el paquete «update-manager» e incluya en el informe de error los archivos " "contenidos en /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." @@ -590,11 +590,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "No se ha encontrado el comando «diff»" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ha ocurrido un error fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -609,28 +609,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Se va a desinstalar %d paquete." msgstr[1] "Se van a desinstalar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Se va a instalar %d paquete nuevo." msgstr[1] "Se van a instalar %d paquetes nuevos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Se va a actualizar %d paquete." msgstr[1] "Se van a actualizar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -641,7 +641,7 @@ msgstr "" "\n" "Debe descargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -649,19 +649,19 @@ msgstr "" "Descargar e instalar la actualización puede llevar varias horas, y no se " "podrá cancelar después en ningún momento." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -669,17 +669,17 @@ msgstr "" "No hay actualizaciones disponibles para su sistema. Se ha cancelado la " "actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -715,11 +715,11 @@ msgstr "" "Esta descarga llevará aprox. %s con una conexión DSL de 1Mbit, y aprox. %s " "con un módem de 56k." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Se requiere reiniciar el equipo" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/et.po b/po/et.po index a4425b1a..47c8215a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" @@ -155,20 +155,20 @@ msgstr "" "parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" "\" enne jätkamist." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Ei suuda uuendada nõutud metapakette" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Hädavajalik pakett tuleks eemaldada" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Ei suuda uuendusi ette valmistada" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -177,11 +177,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Mõnede pakettide tuvastamisel tekkis viga." -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -191,23 +191,23 @@ msgstr "" "Sa võid hiljem uuesti proovida. Vaata järgnevalt mittetuvastatud pakettide " "nimekirja." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ei saa paigaldada '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -297,11 +297,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Uuendamise ajal ilmnes viga." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -309,11 +309,11 @@ msgstr "" "Uuendamise ajal ilmnes viga. See on tavaliselt mingit sorti võrgu probleem, " "palun kontrolli oma võrguühendust ning proovi hiljem uuesti." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Kõvakettal pole piisavalt vaba ruumi." -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -322,15 +322,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Ei suuda uuendusi alla laadida" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -362,65 +362,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Eemalda iganenud paketid?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Jäta see samm vahele" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Eemalda" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,19 +430,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Kinnitamise küsimine" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -508,11 +508,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -522,28 +522,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -551,39 +551,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -617,11 +617,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/eu.po b/po/eu.po index 112e33c1..5db4cb45 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" @@ -164,22 +164,22 @@ msgstr "" "Zure sistemak hautsitako paketeak ditu eta ezin izan dira konpondu aplikazio " "honekin. Konpon itzazu lehenbait lehen snaptic edo apt-get erabiliz." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "Ezin izan dira berritu beharrezko meta-paketeak" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 #, fuzzy msgid "A essential package would have to be removed" msgstr "Ezinbesteko pakete bat ezabatu beharko da" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,23 +188,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ezin da %s instalatu" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "eman. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -307,21 +307,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -370,65 +370,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -438,19 +438,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -516,11 +516,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -530,28 +530,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -559,39 +559,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -625,11 +625,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/fa.po b/po/fa.po index a406408b..9e3ffa5f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Pedram Ganjeh Hadidi \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -292,21 +292,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -515,25 +515,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -541,39 +541,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -607,11 +607,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/fi.po b/po/fi.po index 30341a20..b0d33caf 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:15+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-23 12:07+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "Pääpalvelin" #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "Palvelin maalle %s" +msgstr "Palvelin maalle: %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" @@ -160,20 +160,20 @@ msgstr "" "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get -komentoa ennen " "jatkamista." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Tarvittavia metapaketteja ei voi päivittää" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" -msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" +msgstr "Ei voitu tehdä tarvittavia päivitykseen liittyviä tarkistuksia" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -187,11 +187,11 @@ msgstr "" "tiedostot hakemistosta /var/log/dist-upgrade raporttiin." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" -msgstr "Joitain paketteja varmennettaessa tapahtui virhe" +msgstr "Joitain paketteja todennettaessa tapahtui virhe" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -201,24 +201,24 @@ msgstr "" "Voit yrittää myöhemmin uudelleen. Alla on luettelo todentamattomista " "paketeista." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ei voitu asentaa pakettia \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " +"Pyydettyä pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -253,7 +253,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" -msgstr "Luetaan välimuistia" +msgstr "Luetaan kätköä" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" @@ -273,7 +273,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" -msgstr "Sopivaa peilipalvelinta ei löytynyt" +msgstr "Ei löytynyt sopivaa palvelinta" #: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format @@ -287,17 +287,18 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "Ohjelmavarastotietoja tarkistettaessa ei löydetty sopivaa palvelinmerkintää " -"päivitystä varten. Tämä on mahdollista, jos käytät sisäistä peilipalvelinta " -"tai palvelintiedot ovat vanhentuneet.\n" +"päivitystä varten. Tämä voi tapahtua jos käytät sisäistä peilipalvelinta tai " +"palvelintiedot ovat vanhentuneita.\n" "\n" -"Haluatko silti kirjoittaa \"sources.list\"-tiedoston uudelleen? Jos valitset " -"\"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-merkinnöiksi.\n" +"Haluatko uudelleenkirjoittaa \"sources.list\"-tiedoston joka tapauksessa? " +"Jos valitset \"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-" +"merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" -msgstr "Lisätäänkö oletusohjelmalähteet?" +msgstr "Luo ja ota käyttöön oletusohjelmalähteet?" #: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format @@ -321,8 +322,8 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Tee " -"asiasta virheraportti." +"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Ilmoita " +"tästä virheraportilla." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" @@ -338,11 +339,11 @@ msgstr "" "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen " "\"Ohjelmalähteet\"-työkalulla tai Synaptic-ohjelmalla." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Virhe päivitettäessä" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +351,11 @@ msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -366,15 +367,15 @@ msgstr "" "komentoa 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" -msgstr "Haluatko aloittaa päivityksen?" +msgstr "Haluatko aloittaaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" -msgstr "Päivityksiä ei voitu asentaa" +msgstr "Ei voitu asentaa päivityksiä" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,11 +389,11 @@ msgstr "" "Tee tästä virheraportti paketille \"update-manager\" ja sisällytä tiedostot " "hakemistosta /var/log/dist-upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +401,11 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Tuki joillekin sovelluksille on loppunut" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,51 +420,52 @@ msgstr "" "ohjelmalähdettä (\"universe\"), näitä paketteja suositellaan poistettaviksi " "seuraavassa kohdassa." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" -msgstr "Poistetaanko vanhentuneet paketit?" +msgstr "Poista vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" -msgstr "Virhe suoritettaessa" +msgstr "Virhe suoritettaesa" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " +"Jokin ongelma tapahtui siistimisvaiheessa. Alla olevassa viestissä on " +"lisätietoja. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Päivityksen valmistelu epäonnistui" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -473,15 +475,15 @@ msgstr "" "virheraportilla \"update-manager\"-paketille, sisällyttäen mukaan tiedostot " "hakemistossa /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -496,19 +498,19 @@ msgstr "" "\"update-manager\" ja sisällytä tiedostot hakemistosta /var/log/dist-" "upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" -msgstr "Etsitään vanhentuneita ohjelmistoja" +msgstr "Etsitään vanhetuneita ohjelmia" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." @@ -516,7 +518,7 @@ msgstr "Järjestelmän päivitys on valmis." #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "Aseta \"%s\" asemaan \"%s\"" +msgstr "Laita '%s' asemaan '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -543,12 +545,12 @@ msgstr "Noudetaan tiedostoa %li/%li" #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "Muutoksia toteutetaan" +msgstr "Toteutetaan muutoksia" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "Pakettia \"%s\" ei voitu asentaa" +msgstr "Ei voitu asentaa: '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -580,11 +582,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" -msgstr "Tapahtui vakava virhe" +msgstr "Vakava virhe tapahtui" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -598,28 +600,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paketti poistetaan." msgstr[1] "%d pakettia poistetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d uusi paketti asennetaan." msgstr[1] "%d uutta pakettia asennetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paketti päivitetään." msgstr[1] "%d pakettia päivitetään." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -630,7 +632,7 @@ msgstr "" "\n" "Noudettavaa yhteensä %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -638,34 +640,34 @@ msgstr "" "Päivityksen noutaminen ja asennus voi kestää useita tunteja, eikä sitä voi " "keskeyttää enää myöhemmin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Päivityksiä ei ole saatavilla järjestelmälle. Päivitys keskeytyy." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Poista %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Asenna %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" @@ -699,11 +701,11 @@ msgid "" "with a 56k modem" msgstr "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" -msgstr "Uudelleenkäynnistys vaaditaan" +msgstr "Uudellenkäynnistys vaaditaan" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -738,7 +740,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Aloitetaanko päivitys?" +msgstr "Aloita päivitys?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" @@ -828,7 +830,7 @@ msgstr "Tarkista Internet-yhteytesi toimivuus." #. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "Päivitystyökalua ei voitu suorittaa" +msgstr "Ei voitu suorittaa päivitystyökalua" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" @@ -864,7 +866,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "Purku epäonnistui" +msgstr "Ei voitu purkaa" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" @@ -959,7 +961,7 @@ msgstr "Muut päivitykset" #: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" -msgstr "Versio %s: \n" +msgstr "Versio: %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." @@ -1024,8 +1026,8 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"Et saa enää turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " -"Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja " +"Turvallisuuspäivityksiä tai muita kriittisiä päivityksiä ei enää ole " +"saatavilla. Päivitä uudempaan versioon Ubuntusta. Katso lisätietoja " "päivittämisestä osoitteesta http://www.ubuntu.com/" #: ../UpdateManager/UpdateManager.py:863 @@ -1095,7 +1097,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" -msgstr "Käynnistetään pakettienhallintaa" +msgstr "Käynnistetään päivitysten hallintaa" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1147,8 +1149,8 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Ohjelmapäivitykset korjaavat ohjelmavirheitä ja mahdollisia turva-aukkoja, " -"sekä tarjoavat uusia ominaisuuksia." +"Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " +"ominaisuuksia." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1391,7 +1393,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "Tarkista, onko jakelusta uusia julkaisuja" +msgstr "Tarkista onko uusia julkaisuja jakelusta" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1405,7 +1407,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "Muistuta kanavaluettelon uudelleen lataamisesta" +msgstr "Muistuta kanavaluettelon uudelleenlataamisesta" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1469,7 +1471,7 @@ msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmat" +msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmistot" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1514,7 +1516,7 @@ msgstr "Takaisinsovitetut päivitykset" #. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:123 diff --git a/po/fr.po b/po/fr.po index af75b0f1..6d8e8e8f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" @@ -162,20 +162,20 @@ msgstr "" "ce logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou d'apt-get " "avant de continuer." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Les meta-paquets désirés n'ont pu être mis à jour" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Un paquet essentiel devrait être enlevé" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,11 +188,11 @@ msgstr "" "fichiers de /var/log/dist-upgrade/ dans le rapport de bogue." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -202,12 +202,12 @@ msgstr "" "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." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installer « %s »" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "rapporter ce bogue. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -344,11 +344,11 @@ msgstr "" "désactivées. Vous pouvez les réactiver après la mise à jour avec l'outil « " "Gestionnaire de canaux logiciels » ou avec Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Erreur lors de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -357,11 +357,11 @@ msgstr "" "un problème de réseau. Veuillez vérifier votre connexion au réseau et " "réessayer." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Pas assez d'espace libre sur le disque" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -373,15 +373,15 @@ msgstr "" "effectuées en utilisant la commande « sudo apt-get clean »." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Les mises à jour n'ont pu être installées" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -396,11 +396,11 @@ msgstr "" "joindre les fichiers du répertoire /var/log/dist-upgrade dans le rapport de " "bogue." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Les mises à jour n'ont pu être téléchargées" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -408,11 +408,11 @@ msgstr "" "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou " "votre médium d'installation puis réessayez. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "La prise en charge de certaines applications a pris fin" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -427,23 +427,23 @@ msgstr "" "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." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes ?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Passer cette étape" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Supprimer" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Erreur pendant la soumission" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -452,27 +452,27 @@ msgstr "" "ci-dessous pour plus d'informations. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Recherche du backport (rétro-portage) de « %s »" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Échec lors de la préparation de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -482,15 +482,15 @@ msgstr "" "remonter ce bug concernant le paquet 'update manager' et d'inclure les " "fichiers contenus dans le dossier /var/log/dist-upgrade/ à votre rapport." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts en cours" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Information sur le paquet invalide" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -505,19 +505,19 @@ msgstr "" "comme un bogue du paquet « update-manager » et joindre les fichiers du " "répertoire /var/log/dist-upgrade dans le rapport de bogue." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Demande de confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Mise à jour en cours" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." @@ -590,11 +590,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pu être trouvée" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Une erreur fatale est survenue" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -609,28 +609,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -641,7 +641,7 @@ msgstr "" "\n" "Vous avez à télécharger un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -649,19 +649,19 @@ 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." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 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." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Votre système est à jour" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -669,17 +669,17 @@ msgstr "" "Il n'y a pas de mises à niveau disponibles pour votre système. La mise à " "niveau va maintenant être annulée." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Supprimer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Mettre à jour %s" @@ -715,11 +715,11 @@ msgstr "" "Ce téléchargement prendra environ %s avec une connexion Dsl 1 Mbits et " "environ %s avec un modem 56k" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Redémarrage de l'ordinateur requis" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/fur.po b/po/fur.po index 2cc4f1ea..43971e24 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,21 +291,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -500,11 +500,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/gl.po b/po/gl.po index 6955807d..3b09833d 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:01+0000\n" -"Last-Translator: Xosé \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-19 00:43+0000\n" +"Last-Translator: Felipe Gil Castiñeira \n" "Language-Team: galician\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,7 +93,7 @@ msgstr "Servidores personalizados" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" -msgstr "Canal de Software" +msgstr "Canle de Software" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 @@ -164,37 +164,37 @@ msgstr "" "software. Por favor, arránxeos primeiro usando Synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Non se puideron actualizar os meta-paquetes necesarios" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Tívose que desinstalar un paquete esencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Non se puido calcular a actualización" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Produciuse un erro imposíbel de resolver ao calcular a actualización.\n" +"Produciuse un erro imposible de resolver ao calcular a actualización.\n" "\n" -"Informa deste erro do pacote \"update-manager\" e inclúe os ficheiros que " +"Informe deste erro do paquete \"update-manager\" e inclúa os ficheiros que " "hai en /var/log/dist-upgrade/ no informe." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Erro autenticando algúns paquetes" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -204,12 +204,12 @@ msgstr "" "problema transitorio na rede. Probe de novo máis tarde. Vexa abaixo unha " "lista dos paquetes non autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Non se puido instalar '%s»" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "un fallo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Non se puido determinar o meta-paquete" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -230,10 +230,10 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"O teu sistema non contén os pacotes ubuntu-desktop, kubuntu-desktop ou " -"edubuntu-desktop e non foi posíbel detectar cal é a versión de ubuntu que se " +"O seu sistema non contén os paquetes ubuntu-desktop, kubuntu-desktop ou " +"edubuntu-desktop e non foi posible detectar cal é a versión de ubuntu que se " "está a executar.\n" -" Instala un dos pacotes mencionados usando synaptic ou apt-get antes de " +" Instale un dos paquetes mencionados usando synaptic ou apt-get antes de " "continuar." #: ../DistUpgrade/DistUpgradeControler.py:75 @@ -250,14 +250,14 @@ msgid "" "'%s'" msgstr "" "Produciuse un erro ao engadir o CD, hai que cancelar a actualización. " -"Informa deste erro se se trata dun CD válido de Ubuntu.\n" +"Informe deste erro se se trata dun CD válido de Ubuntu.\n" "\n" "A mensaxe de erro foi:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" -msgstr "A ler a caché" +msgstr "Lendo caché" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" @@ -271,9 +271,9 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" "A actualización pode empregar a rede para comprobar as actualizacións máis " -"recentes e descarregar pacotes que non se atopan no CD.\n" -"Se dispós dde acceso rápido ou barato á rede deberías respostar \"Si\" aquí. " -"Se che custa caro, escolle \"Non\"." +"recentes e descargar paquetes que non se atopan no CD.\n" +"Se dispón de acceso rápido ou barato á rede debería respostar \"Si\" aquí. " +"Se a súa conexión é cara, escolla \"Non\"." #: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" @@ -320,15 +320,15 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" -msgstr "Información de depósito non válida" +msgstr "Información de repositorio non válida" #: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"A actualización da información do depósito xerou un ficheiro incorrecto. Por " -"favor, informe disto como un erro." +"A actualización da información do repositorio xerou un ficheiro incorrecto. " +"Por favor, informe disto como un erro." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" @@ -340,15 +340,15 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Desactiváronse algunhas entradas de terceiras partes no teu sources.list. " -"Pódelas volver a activar coa ferramenta \"software-properteis\" ou con " +"Desactiváronse algunhas entradas de terceiras partes no seu sources.list. " +"Pódeas volver a activar coa ferramenta \"software-properteis\" ou con " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Erro durante a actualización" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -357,11 +357,11 @@ msgstr "" "tipo de problema na rede, por favor, comprobe a súa conexión de rede e " "volvao a intentar." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Non hai espazo suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -373,15 +373,15 @@ msgstr "" "de instalacións anteriores tecleando «sudo apt-get clean» nun terminal." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Desexa comezar a actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Non se puideron instalar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,17 +389,17 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Vaise cancelar a actualización agora. O teu sistema podería ficar nun estado " +"Vaise cancelar a actualización agora. O seu sistema podería ficar nun estado " "que non permita ser usado. Procedeuse a recuperalo (dpkg --configure -a).\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ no informe." +"Por favor, informe desde fallo do paquete \"update-manager\" e inclúa os " +"ficheiros en /var/log/dist-upgrade/ no informe." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Non se puideron descargar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -407,11 +407,11 @@ msgstr "" "A actualización interromperase agora. Por favor, comprobe a súa conexión a " "Internet (ou o seu soporte de instalación) e volvao a intentar. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Rematou o soporte para algunhas aplicacións" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,29 +419,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd. non forece máis axuda para os pacotes de software seguintes. " -"Pode que ainda podas obter axuda da comunidade.\n" +"Canonical Ltd. non forece máis axuda para os paquetes de software seguintes. " +"Pode que ainda poda obter axuda da comunidade.\n" "\n" -"Se non tes activado o software mantido pola comunidade (universe), " -"suxerirase que elimines estes pacotes no paso seguinte." +"Se non ten activado o software mantido pola comunidade (universe), " +"suxerirase que elimine estes paquetes no paso seguinte." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Desinstalar os paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Borrar" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Erro durante a confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -450,45 +450,45 @@ msgstr "" "para máis información. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "A retornar ao estado orixinal do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "A procurar backports de \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Comprobando xestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Fallou a preparación da actualización" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -"Fallou a preparación do sistema para a actualización. Informa deste erro do " -"pacote \"update-manager\" e inclúe os ficheiros de /var/log/dist-upgrade/ no " -"informe." +"Fallou a preparación do sistema para a actualización. Informe deste erro do " +"paquete \"update-manager\" e inclúa os ficheiros de /var/log/dist-upgrade/ " +"no informe." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Actualizando a información do repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Información de paquete non válida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -497,26 +497,25 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Após actualizar a información sobre os pacotes, o pacote \"%s\", que é " -"esencial, xa non se dá atopado.\n" -"Isto indica un erro serio.\n" -"\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ no informe." +"Despois de actualizar a información sobre os paquetes, o paquete \"%s\", que " +"é esencial, xa non se dá atopado.\n" +"Isto indica un erro serio, por favor, informe deste fallo do paquete " +"\"update-manager\" e inclúa no informe os ficheiros que hai en /var/log/dist-" +"upgrade/" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Comletouse a actualización do sistema." @@ -563,8 +562,9 @@ 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 bugreport." msgstr "" -"Vaise cancelar a actualización agora. Informa desde fallo do pacote \"update-" -"manager\" e inclúe os ficheiros en /var/log/dist-upgrade/ no informe." +"Vaise cancelar a actualización agora. Informe deste fallo do paquete " +"\"update-manager\" e inclúa no informe os ficheiros que hai en /var/log/dist-" +"upgrade/ ." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 @@ -581,54 +581,54 @@ msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -"Perderás as modificacións feitas neste ficheiro de configuración se escolles " +"Perderá as modificacións feitas neste ficheiro de configuración se escolle " "substituílo por unha versión máis nova." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Non se atopou o comando 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ocorreu un erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " "now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " -"Vaise cancelar a actualización agora.\n" -"O teu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." +"Informe deste fallo do paquete \"update-manager\" e inclúa os ficheiros en /" +"var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log no informe. " +"Agora vaise cancelar a actualización.\n" +"O seu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." "distUpgrade." #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "Vaise eliminar o pacote %d" -msgstr[1] "Vanse eliminar os pacotes %d" +msgstr[0] "Vaise eliminar o paquete %d" +msgstr[1] "Vanse eliminar os paquetes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "Vaise instalar o pacote novo %d" -msgstr[1] "Vanse instalar os pacotes novos %d" +msgstr[0] "Vaise instalar o paquete novo %d" +msgstr[1] "Vanse instalar os paquetes novos %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "Vaise actualizar o pacote %d" -msgstr[1] "Vanse actualizar os pacotes %d" +msgstr[0] "Vaise actualizar o paquete %d" +msgstr[1] "Vanse actualizar os paquetes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -637,45 +637,45 @@ msgid "" msgstr "" "\n" "\n" -"Baixache un total de %s. " +"Baixou un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"Descarregar e instalar a actualización pode levar varias horas e non se pode " +"Descargar e instalar a actualización pode levar varias horas e non se pode " "cancelar posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Para previr a perda de datos peche todas as aplicacións e documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -"Non hai actualizacións disponíbeis par o teu sistema. Cancelamos a " +"Non hai actualizacións dispoñibles para o seu sistema. Vaise cancelar a " "actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -688,7 +688,7 @@ msgstr "%li días %li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "%li houras %li minutos" +msgstr "%li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format @@ -711,15 +711,15 @@ msgstr "" "Esta descarga levará uns %s cunha conexión DSL de 1MB e uns %s cun módem de " "56k." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" -msgstr "Compre reiniciar o equipo" +msgstr "Cómpre reiniciar o equipo" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"A actualización finalizou e compre reiniciar o equipo. Desexa facelo agora?" +"A actualización finalizou e compre reiniciar o equipo. Desexao facer agora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): @@ -768,7 +768,7 @@ msgstr "Diferenza entre os ficheiros" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" -msgstr "A descarregar e instalar as actualizacións" +msgstr "A descargar e instalar as actualizacións" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -854,7 +854,7 @@ msgstr "Descargando a ferramenta de actualización" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." msgstr "" -"A ferramenta de actualización guiaralle a través do proceso de actualización." +"A ferramenta de actualización guiarao a través do proceso de actualización." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -893,8 +893,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Fallou a verificación da actualización. Pode que haxa algún problema coa " -"rede ou co servidor. " +"Fallou a verificación da actualización. Pode haber un problema coa rede ou " +"co servidor. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -905,38 +905,38 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Fallou a autenticación da actualización. Debe haber un problema coa rede ou " +"Fallou a autenticación da actualización. Pode haber un problema coa rede ou " "o servidor. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "A descarregar o ficheiro %(current)li de %(total)li con %(speed)s/s" +msgstr "A descargar o ficheiro %(current)li de %(total)li con %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "A descarregar o ficheiro %(current)li de %(total)li" +msgstr "A descargar o ficheiro %(current)li de %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Non se dispón da listaxe coas mudanzas" +msgstr "Non se dispón da lista de cambios" #: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"A listaxe coas modificacións ainda non está disponíbel.\n" -"Téntao máis tarde." +"A a lista de cambios aínda non está dispoñible.\n" +"Ténteo máis tarde." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Non se puido descarregar a listaxe de modificacións. \n" -"Comproba a túa conexión á Internet." +"Non se puido descargar a lista de cambios.\n" +"Comprobe a súa conexión á Internet." #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 @@ -951,7 +951,7 @@ msgstr "Actualizacións recomendadas" #. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Actualizacións suxeridas" +msgstr "Actualizacións aconselladas" #: ../UpdateManager/UpdateManager.py:241 msgid "Backports" @@ -973,7 +973,7 @@ msgstr "Versión %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "A descarregar a listaxe coas modificacións..." +msgstr "A descargar a lista de cambios..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -1034,7 +1034,7 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"Non poderá obter novas correcciones de seguridade nin actualizacións " +"Non poderá obter novas correccións de seguridade nin actualizacións " "críticas. Actualícese a unha versión posterior de Ubuntu Linux. Visite " "http://www.ubuntu.com para máis información sobre a actualización." @@ -1061,7 +1061,7 @@ msgstr "" #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "Nengún" +msgstr "Ningún" #. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 @@ -1087,10 +1087,10 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Tes que comprobar as actualizacións manualmente\n" +"Ten que comprobar as actualizacións manualmente\n" "\n" -"O teu sistema non comproba as actualizacións automaticamente. Podes " -"configurar este comportamento en Fontes de Software na pestana " +"O seu sistema non comproba as actualizacións automaticamente. Pode " +"configurar este comportamento en Fontes de Software na lingüeta " "Actualizacións desde a Internet." #: ../data/glade/UpdateManager.glade.h:4 @@ -1111,7 +1111,7 @@ msgstr "Cambios" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "Mudanzas e descrición da actualización" +msgstr "Cambios e descrición da actualización" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1136,11 +1136,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" -"Executa unha actualización da distribución para instalar tantas " -"actualizacións como sexa posíbel.\n" +"Execute unha actualización da distribución para instalar tantas " +"actualizacións como sexa posible.\n" "\n" "Isto pode ser causado por unha actualización de distribución incompleta, " -"pacotes de software non oficiais ou por estares a executar unha versión en " +"paquetes de software non oficiais ou por estar a executar unha versión en " "desenvolvemento." #: ../data/glade/UpdateManager.glade.h:16 @@ -1184,13 +1184,12 @@ msgid "_Install Updates" msgstr "_Instalar actualizacións" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" -msgstr "A_ctualizar" +msgstr "Act_ualizar" #: ../data/glade/UpdateManager.glade.h:26 msgid "changes" -msgstr "mudanzas" +msgstr "cambios" #: ../data/glade/UpdateManager.glade.h:27 msgid "updates" @@ -1222,13 +1221,13 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"Para mellorar a impresión dos usuarios de Ubuntu participa no concurso de " -"popularidade. Se che parece ben, cada semana se enviará anonimamente ao " -"proxecto Ubunto unha listaxe coas aplicacións que tes instaladas e a " -"frecuencia coa que as usas.\n" +"Para mellorar a impresión dos usuarios sobre Ubuntu participe no concurso " +"de popularidade. Se o fai, cada semana mandarase de forma anónima ao " +"proxecto Ubuntu unha lista coas aplicacións que ten instaladas e a " +"frecuencia coa que as usa.\n" "\n" "Os resultados empréganse para mellorar o soporte das aplicacións máis " -"populares e para resaltalas nos resultados das procuras." +"populares e para ponderalas nos resultados das procuras." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1297,7 +1296,7 @@ msgstr "_Comprobar actualizacións automaticamente:" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" -msgstr "_Descarregar as actualizacións automaticamentes, mais non instalalas" +msgstr "_Descargar as actualizacións automaticamente, pero non as instalar" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1316,12 +1315,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A información sobre o software disponíbel está anticuada\n" +"A información sobre o software dispoñible está anticuada\n" "\n" "Para instalar software e actualizacións de fontes engadidas hai pouco ou " -"modificadas terás que recargar a información sobre o software disponíbel.\n" +"modificadas terá que recargar a información sobre o software dispoñible.\n" "\n" -"Precisarás dunha conexión á internet para continuar." +"Precisará unha conexión á internet para continuar." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1351,10 +1350,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Introduce a liña APT completa do depósito que queres engadir como " +"Introduza a liña APT completa do depósito que quere engadir como " "fonte\n" "\n" -"A liña APT inclúe o tipo, localización e componentes dun depósito, por " +"A liña APT inclúe o tipo, localización e compoñentes dun depósito, por " "exemplo \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 @@ -1411,8 +1410,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"Se se desactiva a comprobación automática de actualizacións terás que " -"recargar a lista de canais manualmente. Esta opción permite agochar o " +"Se se desactiva a comprobación automática de actualizacións terá que " +"recargar a lista de canles manualmente. Esta opción permite agochar o " "recordatorio que se mostra neste caso." #: ../data/update-manager.schemas.in.h:4 @@ -1432,7 +1431,7 @@ msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Almacena o estado do expandedor que contén a lista de mudanzas e a descrición" +"Almacena o estado do expandedor que contén a lista de cambios e a descrición" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1440,7 +1439,7 @@ msgstr "O tamaño da ventá" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "Configurar as fontes para programas e actualizacións instalábeis" +msgstr "Configurar as fontes para programas e actualizacións instalables" #. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 @@ -1526,7 +1525,7 @@ msgstr "Actualizacións de backports" #. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "CD con Ubuntu 5.10 \"Breezy Badger\"" #. Description #: ../data/channels/Ubuntu.info.in:123 @@ -1536,17 +1535,17 @@ msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\"" #. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Actualizacións de Seguranza para Ubuntu 5.10" +msgstr "Actualizacións de seguranza de Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Actualizacións para Ubuntu 5.10" +msgstr "Actualizacións de Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Backports de Ubuntu 5.10" +msgstr "Actualizacións de Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:152 @@ -1611,12 +1610,12 @@ msgstr "Copyright restrinxido" #. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Actualizacións de Seguranza para Ubuntu 4.10" +msgstr "Actualizacións de seguranza de Ubuntu 4.10" #. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Actualizacións para Ubuntu 4.10" +msgstr "Actualizacións de Ubuntu 4.10" #. Description #: ../data/channels/Ubuntu.info.in:228 diff --git a/po/he.po b/po/he.po index cca523c2..8673bdd5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 08:48+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -161,20 +161,20 @@ msgstr "" "במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " "באמצעות synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "לא ניתן לחשב את השדרוג" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,34 +186,34 @@ msgstr "" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "שגיאה באימות חלק מן החבילות" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "לא ניתן להתקין את \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "לא ניתן לקבוע חבילת על" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -321,11 +321,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "שגיאה במהלך העדכון" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -333,11 +333,11 @@ msgstr "" "הייתה בעיה בתהליך העידכון. בדרך כלל זוהי בעיית רשת, אנא בדקו את חיבור הרשת " "שלכם ונסו שנית." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "אין מספיק שטח בדיסק הקשיח" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -348,15 +348,15 @@ msgstr "" "זמניות מהתקנות קודמות על ידי שימוש בפקודה \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -365,22 +365,22 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. אנא בדקו את החיבור לאינטרנט או את מדיית ההתקנה ונסו שנית. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "המיכה בכמה תוכנות הסתיימה" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -389,65 +389,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "להסיר חבילות שאינן בתוקף?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_דלג על השלב" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_הסר" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "שגיאה בעת ביצוע" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "מחזיר את המערכת למצבה המקורי" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "בודק את מנהל החבילות" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "מעדכן מידע מאגרים" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "מידע חבילה לא תקין" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -459,19 +459,19 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "משדרג" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." @@ -537,11 +537,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "ארעה שגיאה חמורה" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -551,28 +551,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "חבילה %d תוסר." msgstr[1] "%d חבילות יוסרו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "חבילה חדשה %d תותקן." msgstr[1] "%d חבילות חדשות יותקנו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d חבילות חדשות ישודרגו." msgstr[1] "%d חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -583,7 +583,7 @@ msgstr "" "\n" "יש להוריד %s בסה\"כ. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -591,33 +591,33 @@ msgstr "" "הורדת והתקנת השדרוג עשויה לארוך מספר שעות. לא ניתן לבטל את התהליך בשלב מאוחר " "יותר." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "אין שדרוגים זמינים למערכת שלך. השדרוג יתבטל כעת." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "הסר %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "התקן %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "שדרג %s" @@ -651,11 +651,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "נדרשת הפעלה מחדש" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם ברצונך לעשות זאת כעת?" diff --git a/po/hi.po b/po/hi.po index 9665d78f..c5ba1ffb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,21 +291,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -500,11 +500,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/hr.po b/po/hr.po index 7c63b86e..dcf6f6b4 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 14:38+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 19:37+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" @@ -159,20 +159,20 @@ msgstr "" "Vaš sistem sadrži neispravne pakete koji nisu mogli biti popravljeni s ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Ne mogu nadograditi potrebne meta-pakete" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -185,11 +185,11 @@ msgstr "" "var/log/dist-upgrade/ u prijavu." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "problem s mrežom i trebali biste pokušati ponovo kasnije. Pogledajte popis " "neidentificiranih paketa." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ne mogu instalirati '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "grešku. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -336,11 +336,11 @@ msgstr "" "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Greška prilikom nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -348,11 +348,11 @@ msgstr "" "Pojavio se problem prilikom nadogradnje. Obično se radi o mrežnom problemu, " "pa vas molim da provjerite vašu mrežu i pokušate ponovo." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +364,15 @@ msgstr "" "koristeći 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -386,11 +386,11 @@ msgstr "" "Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke " "u /var/log/dist-upgrade/ direktoriju u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +398,11 @@ msgstr "" "Nadogradnja se prekida. Molim provjerite vašu internet vezu ili " "instalacijski medij i pokušajte ponovo. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Podrška za neke programe je gotova" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -416,23 +416,23 @@ msgstr "" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Preskoči ovaj korak" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Ukloni" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Greška prilikom čina" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -441,27 +441,27 @@ msgstr "" "više informacija. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Dohvaćanje backporta od '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Neuspjelo pripremanje nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -471,15 +471,15 @@ msgstr "" "prijavite ovo kao grešku u 'update-manager' paketu i uključite iz /var/log/" "dist-upgrade/ u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Neispravni podaci paketa" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -494,19 +494,19 @@ msgstr "" "manager' paketu i uključite datoteke u /var/log/dist-upgrade/ direktoriju u " "prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Pitam za potvrdu" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Nadograđujem" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." @@ -578,11 +578,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Pojavila se ozbiljna greška" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -597,7 +597,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -605,7 +605,7 @@ msgstr[0] "%d paket će biti uklonjen." msgstr[1] "%d paketa će biti uklonjena." msgstr[2] "%d paketa će biti uklonjeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -613,7 +613,7 @@ msgstr[0] "%d novi paket će biti instaliran." msgstr[1] "%d nova paketa će biti instalirana." msgstr[2] "%d novih paketa će biti instalirano." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -621,7 +621,7 @@ msgstr[0] "%d paket će biti nadograđen." msgstr[1] "%d paketa će biti nadograđena." msgstr[2] "%d paketa će biti nadograđeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -632,7 +632,7 @@ msgstr "" "\n" "Morate preuzeti ukupno %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -640,33 +640,33 @@ msgstr "" "Nadogradnja može potrajati nekoliko sati i ne može biti prekinuta niti u " "jednom trenutku." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Nema nadogradnji za vaš sustav. Nadogradnja će biti otkazana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Ukloni %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instaliraj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" @@ -701,11 +701,11 @@ msgid "" msgstr "" "Preuzimanje će trajati %s sa 1Mbit DSL vezom i otprilike %s sa 56k modemom" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Potrebno je ponovno pokretanje računala" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -1192,7 +1192,7 @@ msgstr "Automatske nadogradnje" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "CDROM/DVD" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" diff --git a/po/hu.po b/po/hu.po index a9ebcb98..51c5bbb3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -159,20 +159,20 @@ msgstr "" "javíthatóak. Kérem, először javítsa ki őket a synaptic vagy az apt-get " "segítségével." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "A szükséges meta-csomagok nem frissíthetőek" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -185,11 +185,11 @@ msgstr "" "dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -199,23 +199,23 @@ msgstr "" "hálózati probléma okozza, ezért érdemes később újra megpróbálni. Az alábbi " "lista a hitelesíthetetlen csomagokat tartalmazza." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' nem telepíthető" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -337,11 +337,11 @@ msgstr "" "Újraengedélyezheti őket a frissítés után a Szoftvertulajdonságok eszközzel, " "vagy a Synaptic csomagkezelővel." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Hiba történt a frissítés közben" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +349,11 @@ msgstr "" "Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. " "Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Nincs elég szabad hely a merevlemezen" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +365,15 @@ msgstr "" "fájljait a \"sudo apt-get clean\" parancs kiadásával." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -387,11 +387,11 @@ msgstr "" "Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" "dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -399,11 +399,11 @@ msgstr "" "A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy " "a telepítő médiát és próbálja újra. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Egyes alkalmazások támogatása megszűnt" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -418,23 +418,23 @@ msgstr "" "tároló), akkor ezek a csomagok a következő lépésben eltávolításra lesznek " "javasolva." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Ezen lé_pés kihagyása" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Eltávolítás" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,27 +443,27 @@ msgstr "" "információkat tartalmaz a hibára vonatkozóan. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "\"%s\" visszaportolt változatának letöltése" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "A frissítés előkészítése meghiúsult" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -473,15 +473,15 @@ msgstr "" "\"update-manager\" csomaghoz és vegye be a /var/log/dist-upgrade/ " "könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Csomagtároló-információk frissítése" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -496,19 +496,19 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Megerősítés kérése" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Frissítés folyamatban" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." @@ -581,11 +581,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "A 'diff' parancs nem található" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Végzetes hiba történt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -600,25 +600,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d csomag el lesz távolítva." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d új csomag kerül telepítésre." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d csomag frissítve lesz." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -629,7 +629,7 @@ msgstr "" "\n" "Összes letöltendő adatmennyiség: %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -637,19 +637,19 @@ msgstr "" "A frissítés letöltése és telepítése több órát is igénybe vehet és a " "későbbiek során nem lehet bármikor megszakítani." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -657,17 +657,17 @@ msgstr "" "Nem állnak rendelkezésre frissítések a rendszeréhez. A frissítés most " "megszakad." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s eltávolítása" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s telepítése" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s frissítése" @@ -703,11 +703,11 @@ msgstr "" "A letöltés körülbelül %s-ig tart 1 Mbit DSL kapcsolaton és %s-ig 56k modem " "használatával" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Újraindítás szükséges" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/id.po b/po/id.po index 9efb2317..7086109c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -160,20 +160,20 @@ msgstr "" "perangkat lunak ini. Silakan perbaiki terlebih dahulu dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan hal ini." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "bug." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "mungkin karena masalah pada jaringan. Anda dapat mencobanya beberapa saat " "lagi. Lihat senarai dari paket yang belum terbukti keabsahnya dibawah ini." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat menginstal '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "ini sebagai bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -331,11 +331,11 @@ msgstr "" "dapat mengaktifkan kembali setelah upgrade dengan alat 'software-properties' " "atau dengan synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Kesalahan pada waktu pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "Terjadi masalah pada waktu pemutakhiran. Ini biasanya karena masalah " "jaringan, silakan periksa koneksi jaringan anda dan ulangi." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Kapasitas cakram tidak mencukupi" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Sistem anda dapat menjadi tidak dapat " "digunakan. Perbaikan sedang berjalan (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Silakan periksa koneksi internet anda atau " "media instalasi dan coba lagi nanti. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,23 +410,23 @@ msgstr "" "Jika anda tidak mengaktifkan komponen 'universe' paket ini akan diajurkan " "untuk penghapusan dalam langkah selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Lewati Langkah Ini" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Hapus" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,28 +435,28 @@ msgstr "" "bawah untuk informasi lebih lanjut. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Memeriksa manajer paket" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Menyiapkan upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -466,15 +466,15 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informasi paket tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,19 +488,19 @@ msgstr "" "Ini mengindikasikan adanya kesalahan serius, silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Menanyakan konfigurasi" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Meng-upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." @@ -569,11 +569,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak dapat ditemukan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Terjadi kesalahan fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -588,25 +588,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -617,7 +617,7 @@ msgstr "" "\n" "Anda harus mengunduh sebanyak %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -626,34 +626,34 @@ msgstr "" "Upgrade membutuhkan waktu beberapa jam dan tidak dapat dibatalkan setelah " "itu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Hapus %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instal %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -687,11 +687,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Diperlukan reboot" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/it.po b/po/it.po index 54e1bdde..6ff78572 100644 --- a/po/it.po +++ b/po/it.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:03+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-22 10:13+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" @@ -152,31 +152,31 @@ msgstr "Inserire un disco nell'unità:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "Pacchetti danneggiati" +msgstr "Pacchetti non integri" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Il sistema contiene pacchetti danneggiati che non possono essere aggiustati " +"Il sistema contiene pacchetti non integri che non possono essere aggiustati " "con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" -"\" per risolvere il problema." +"\" per risolvere il probelma." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Impossibile aggiornare i meta-pacchetti richiesti" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -190,26 +190,26 @@ msgstr "" "includere nella notifica i file della cartella «/var/log/dist-upgrade»." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" "Non è stato possibile autenticare alcuni pacchetti. Questo potrebbe essere " -"un problema di rete passeggero, riprovare più tardi. Segue l'elenco dei " +"un problema di rete passeggero, riprovare più tardi. Segue una lista di " "pacchetti non autenticati." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" -msgstr "Impossibile installare «%s»" +msgstr "Impossibile installare \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "evento come bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -290,14 +290,14 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"Durante la scansione delle informazioni sui repository in uso non è stata " +"Durante la scansione delle informazioni sui repository in uso non è strata " "trovata nessuna voce di mirror per l'aggiornamento. Questo può verificarsi " "qualora si abbia in esecuzione un mirror interno o qualora le informazioni " "sul mirror siano datate.\n" "\n" -"Riscrivere lo stesso il proprio file «sources.list»? Scegliendo di «Sì», " -"tutte le voci «%s» verranno aggiornate a «%s»\n" -"Scegliendo «No» l'aggiornamento verrà annullato." +"Riscrivere lo stesso il proprio file «sources.list»? Scegliendo di sì, tutte " +"le voci «%s» verranno aggiornate a «%s»\n" +"Scegliendo di no, l'aggiornamento verrà annullato." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 @@ -312,8 +312,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Dopo la scansione del proprio file «sources.list», non è stata trovata " -"alcuna voce valida per «%s».\n" +"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." @@ -344,11 +344,11 @@ msgstr "" "list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo strumento " "«software-properties» o con synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Errore durante l'aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -356,11 +356,11 @@ msgstr "" "Si è verificato un problema durante l'aggiornamento. Solitamente si tratta " "di problemi di rete, controllare la connessione di rete e riprovare." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Spazio libero su disco insufficiente" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -372,15 +372,15 @@ msgstr "" "usando \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Impossibile installare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -395,11 +395,11 @@ msgstr "" "Riportare questo bug per il pacchetto 'update-manager' includendo i file in /" "var/log/dist-upgrade/ nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -407,11 +407,11 @@ msgstr "" "Interruzione immediata dell'aggiornamento. Controllare la connessione a " "internet o il supporto di installazione e riprovare. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Supporto terminato per alcune applicazioni" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -426,23 +426,23 @@ msgstr "" "(«universe»), verrà suggerita la rimozione di questi pacchetti al prossimo " "passo." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Salta questo passo" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Rimuovi" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Errore durante il commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -451,27 +451,27 @@ msgstr "" "seguente per maggiori informazioni. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Ripristino dello stato originale del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Recupero del backport di «%s»" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" -msgstr "Controllo del gestore di pacchetti" +msgstr "Controllo gestore dei pacchetti" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Preparazione dell'aggiornamento fallito" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -481,15 +481,15 @@ msgstr "" "evento come bug per il pacchetto «update-manager» includendo i file in «/var/" "log/dist-upgrade/» nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Aggiornamento delle informazioni sui repository" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -504,19 +504,19 @@ msgstr "" "pacchetto «update-manager» includendo i file in «/var/log/dist-upgrade/» nel " "rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Richiesta di conferma" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." @@ -524,7 +524,7 @@ msgstr "L'aggiornamento del sistema è stato completato." #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "Inserire «%s» nell'unità «%s»" +msgstr "Inserire \"%s\" nell'unità \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -556,7 +556,7 @@ msgstr "Applicazione dei cambiamenti" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "Impossibile installare «%s»" +msgstr "Impossibile installare \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -589,11 +589,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Il comando «diff» non è stato trovato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Si è verificato un errore fatale" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -608,28 +608,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacchetto sta per essere rimosso." msgstr[1] "%d pacchetti stanno per essere rimossi." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nuovo pacchetto sta per essere installato." msgstr[1] "%d nuovi pacchetti stanno per essere installati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacchetto sta per essere aggiornato." msgstr[1] "%d pacchetti stanno per essere aggiornati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -640,7 +640,7 @@ msgstr "" "\n" "È necessario scaricare un totale di %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -648,19 +648,19 @@ msgstr "" "Il recupero e l'installazione degli aggiornamenti può richiedere diverse ore " "e non può essere annullato in un momento successivo." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" -"Per prevenire la perdita di dati, chiudere tutte le applicazioni e i " -"documenti aperti." +"Chiudere tutte le applicazioni e i documenti aperti per prevenire la perdita " +"di dati." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" -msgstr "Il sistema è aggiornato" +msgstr "Il sistema è aggiornato!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -668,17 +668,17 @@ msgstr "" "Non ci sono aggiornamenti disponibili per questo sistema. L'aggiornamento " "sarà annullato." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Rimuovere %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installare %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aggiornare %s" @@ -714,11 +714,11 @@ msgstr "" "Con una connessione DSL a 1 Mbit questo scaricamento richiede circa %s, con " "una connessione via modem a 56k circa %s" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" -msgstr "Richiesto riavvio" +msgstr "Riavvio richiesto" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" @@ -869,12 +869,12 @@ msgstr "Strumento di aggiornamento" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "Recupero fallito" +msgstr "Prelievo fallito" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" -"Recupero dell'aggiornamento fallito. Potrebbe dipendere da un problema di " +"Fallito il prelievo dell'aggiornamento. Potrebbe dipendere da un problema di " "rete. " #: ../UpdateManager/DistUpgradeFetcher.py:214 @@ -887,7 +887,7 @@ msgid "" "with the server. " msgstr "" "Fallita l'estrazione dell'aggiornamento. Potrebbe dipendere da un problema " -"con la connessione di rete o con il server. " +"con la connesione di rete o con il server. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -1003,11 +1003,11 @@ msgstr[1] "È possibile installare %s aggiornamenti" #: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." -msgstr "Attendere, l'operazione potrebbe richiedere del tempo." +msgstr "Attendere, potrebbe richiedere del tempo." #: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" -msgstr "L'aggiornamento è stato completato" +msgstr "Aggiornamento completato" #: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" @@ -1041,7 +1041,7 @@ msgid "" msgstr "" "Non si riceveranno più aggiornamenti di sicurezza o critici. Passare a una " "versione più aggiornata di Ubuntu Linux. Per maggiori informazioni " -"consultare http://www.ubuntu.com." +"consultare http://www.ubuntu.com" #: ../UpdateManager/UpdateManager.py:863 #, python-format @@ -1051,7 +1051,7 @@ msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" #. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" -msgstr "L'indice del software è danneggiato" +msgstr "L'indice dei programmi è rovinato" #: ../UpdateManager/UpdateManager.py:903 msgid "" @@ -1060,8 +1060,8 @@ msgid "" "this issue at first." msgstr "" "Impossibile installare o rimuovere alcun programma. Utilizzare il gestore " -"dei pacchetti \"Synaptic\" o eseguire in un terminale \"sudo apt-get install " -"-f\" per risolvere il problema." +"dei pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get install -f\" " +"in un terminale per risolvere il problema." #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 @@ -1125,7 +1125,7 @@ msgstr "_Verifica" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Verifica la presenza di nuovi aggiornamenti nei canali software" +msgstr "Verifica la presenza di nuovi aggiornamenti nei canali software" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1263,7 +1263,7 @@ msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -"Solo gli aggiornamenti di sicurezza dai server ufficiali di Ubuntu saranno " +"Solo gli aggiornamenti di sicurezza dai servers ufficiali di Ubuntu saranno " "installati automaticamente" #: ../data/glade/SoftwareProperties.glade.h:16 @@ -1534,7 +1534,7 @@ msgstr "Aggiornamenti di backport" #. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 «Breezy Badger»" +msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description #: ../data/channels/Ubuntu.info.in:123 @@ -1544,17 +1544,17 @@ msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" #. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" +msgstr "Ubuntu 5.10 - Aggiornamenti di sicurezza" #. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Aggiornamenti per Ubuntu 5.10" +msgstr "Ubuntu 5.10 - Aggiornamenti" #. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Backport per Ubuntu 5.10" +msgstr "Backport di Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:152 @@ -1574,12 +1574,12 @@ msgstr "Supportati ufficialmente" #. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" -msgstr "Aggiornamenti di sicurezza per Ubuntu 5.04" +msgstr "Ubuntu 5.04 - Aggiornamenti di sicurezza" #. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" -msgstr "Aggiornamenti per Ubuntu 5.04" +msgstr "Ubuntu 5.04 - Aggiornamenti" #. Description #: ../data/channels/Ubuntu.info.in:187 @@ -1594,12 +1594,12 @@ msgstr "Ubuntu 4.10 «Warty Warthog»" #. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "Mantenuti dalla comunità (universe)" +msgstr "Mantenuti dalla comunità (Universe)" #. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Non libero (multiverse)" +msgstr "Non libero (Multiverse)" #. Description #: ../data/channels/Ubuntu.info.in:206 @@ -1619,12 +1619,12 @@ msgstr "Copyright con restrizioni" #. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" +msgstr "Ubuntu 4.10 - Aggiornamenti di sicurezza" #. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Aggiornamenti per Ubuntu 4.10" +msgstr "Aggiornamenti di Ubuntu 4.10" #. Description #: ../data/channels/Ubuntu.info.in:228 @@ -1640,7 +1640,7 @@ msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" -msgstr "Debian 3.1 «Sarge»" +msgstr "Debian 3.1 \"Sarge\"" #. BaseURI #: ../data/channels/Debian.info.in:19 @@ -1650,12 +1650,12 @@ msgstr "http://security.debian.org/" #. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Aggiornamenti di sicurezza per Debian 3.1 «Sarge»" +msgstr "Aggiornamenti di sicurezza per Debian 3.1 \"Sarge\"" #. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "Debian «Etch» (testing)" +msgstr "Debian \"Etch\" (testing)" #. BaseURI #: ../data/channels/Debian.info.in:47 @@ -1665,7 +1665,7 @@ msgstr "http://http.us.debian.org/debian/" #. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "Debian «Sid» (unstable)" +msgstr "Debian \"Sid\" (Unstable)" #. CompDescription #: ../data/channels/Debian.info.in:54 @@ -1940,14 +1940,13 @@ msgstr "Software non compatibile con le DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Download delle modifiche in corso\n" +#~ "Scaricamento cambiamenti\n" #~ "\n" -#~ "Devo scaricare le modifiche dal server centrale" +#~ "È necessario scaricare i cambiamenti dal server centrale" #~ msgid "Show available updates and choose which to install" #~ msgstr "" -#~ "Visualizza gli aggiornamenti disponibili e seleziona quelli da installare" +#~ "Mostra gli aggiornamenti disponibili e seleziona quelli da installare" #, fuzzy #~ msgid "Error fetching the packages" @@ -1966,7 +1965,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Repository" #~ msgid "Temporary files" -#~ msgstr "File Temporanei" +#~ msgstr "File temporanei" #~ msgid "User Interface" #~ msgstr "Interfaccia utente" @@ -1979,34 +1978,35 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "" #~ "Chiavi di autenticazione\n" #~ "\n" -#~ "Puoi aggiungere o eliminare le chiavi di autenticazione. Una chiave ti " -#~ "permette di verificare l'integrità del software che scarichi." +#~ "In questo dialogo è possibile aggiungere o eliminare le chiavi di " +#~ "autenticazione. Una chiave permette di verificare l'integrità del " +#~ "software scaricato." #~ msgid "" #~ "Add a new key file to the trusted keyring. Make sure that you received " #~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati " -#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " -#~ "proprietario. " +#~ "Aggiunge un nuovo file di chiave nel portachiavi fidato. Assicurarsi di " +#~ "aver ricevuto la chiave attraverso un canale sicuro e ci si possa fidare " +#~ "del proprietario. " #~ msgid "Add repository..." #~ msgstr "Aggiungi repository" #~ msgid "Automatically check for software _updates." -#~ msgstr "Controlla automaticamente gli aggiornamenti" +#~ msgstr "Controllare automaticamente gli aggiornamenti _software" #~ msgid "Automatically clean _temporary packages files" -#~ msgstr "Elimina automaticamente i file temporanei dei pacchetti" +#~ msgstr "_Pulire automaticamente i file temporanei dei pacchetti" #~ msgid "Clean interval in days: " -#~ msgstr "Intervallo della pulizia in giorni: " +#~ msgstr "Intervallo di pulizia in giorni: " #~ msgid "Delete _old packages in the package cache" -#~ msgstr "Elimina i pacchetti _vecchi dalla cache" +#~ msgstr "Eliminare i pacchetti _vecchi dalla cache dei pacchetti" #~ msgid "Edit Repository..." -#~ msgstr "Modifica Repository..." +#~ msgstr "Modifica repository..." #~ msgid "Maximum age in days:" #~ msgstr "Età massima in giorni:" @@ -2018,11 +2018,11 @@ msgstr "Software non compatibile con le DFSG" #~ "Restore the default keys shipped with the distribution. This will not " #~ "change user installed keys." #~ msgstr "" -#~ "Ripristina le chiavi di default della distribuzione.\n" -#~ "Questo non modificherà le chiavi installate dal'utente." +#~ "Ripristina le chiavi predefinite fornite con la distribuzione. Questo non " +#~ "modificherà le chiavi installate dal'utente." #~ msgid "Set _maximum size for the package cache" -#~ msgstr "Configura la _dimensione della cache dei pacchetti" +#~ msgstr "Imposta la dimensione _massima per la cache dei pacchetti" #~ msgid "Settings" #~ msgstr "Impostazioni" @@ -2031,7 +2031,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Mostra le versioni dettagliate dei pacchetti" #~ msgid "Show disabled software sources" -#~ msgstr "Mostra sorgenti software diabilitate" +#~ msgstr "Mostrare le sorgenti software diabilitate" #~ msgid "Update interval in days: " #~ msgstr "Intervallo di aggiornamenti in giorni: " @@ -2040,7 +2040,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "_Aggiungi repository" #~ msgid "_Download upgradable packages" -#~ msgstr "_Scarica i pacchetti aggiornabili" +#~ msgstr "_Scaricare i pacchetti aggiornabili" #~ msgid "Status:" #~ msgstr "Stato:" @@ -2051,16 +2051,16 @@ msgstr "Software non compatibile con le DFSG" #~ "The following packages are found to be upgradable. You can upgrade them " #~ "by using the Install button." #~ msgstr "" -#~ "Aggiornamenti Disponibili\n" +#~ "Aggiornamenti disponibili\n" #~ "\n" -#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando " -#~ "il pulsante Installa." +#~ "I seguenti pacchetti possono essere aggiornati. È possibile effettuare " +#~ "l'aggiornamento usando il pulsante Installa." #~ msgid "Cancel downloading the changelog" -#~ msgstr "Cancella il download delle modifiche" +#~ msgstr "Annulla lo scaricamento del changelog" #~ msgid "You need to be root to run this program" -#~ msgstr "Devi essere root per eseguire questo programma" +#~ msgstr "È necessario essere root per eseguire questo programma" #~ msgid "Binary" #~ msgstr "Binario" @@ -2085,15 +2085,15 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'Archivio Ubuntu " +#~ "Chiave di firma automatica per l'archivio Ubuntu " #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " #~ msgid "Choose a key-file" -#~ msgstr "Scegli un file di chiave" +#~ msgstr "Scegliere un file di chiave" #~ msgid "There is one package available for updating." #~ msgstr "C'è un pacchetto disponibile per l'aggiornamento" @@ -2127,8 +2127,8 @@ msgstr "Software non compatibile con le DFSG" #~ "You can run only one package management application at the same time. " #~ "Please close this other application first." #~ msgstr "" -#~ "Puoi eseguire una sola applicazione di gestione dei pacchetti " -#~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione." +#~ "È possibile eseguire solo una applicazione di gestione dei pacchetti per " +#~ "volta. Chiudere prima quest'altra applicazione." #~ msgid "Updating package list..." #~ msgstr "Aggiornamento della lista dei pacchetti..." @@ -2144,20 +2144,20 @@ msgstr "Software non compatibile con le DFSG" #~ "running will no longer get security fixes or other critical updates. " #~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione " -#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri " -#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org " -#~ "per informazioni riguardo all'aggiornamento." +#~ "Effettuare l'aggiornamento ad una nuova versione di Ubuntu Linux. La " +#~ "versione in uso non riceverà più aggiornamenti di sicurezza o altri " +#~ "aggiornamenti critici. Consultare http://www.ubuntulinux.org per " +#~ "informazioni riguardo all'aggiornamento." #~ msgid "There is a new release of Ubuntu available!" -#~ msgstr "È disponibile una nuova release di Ubuntu!" +#~ msgstr "È disponibile un nuovo rilascio di Ubuntu!" #~ msgid "" #~ "A new release with the codename '%s' is available. Please see http://www." #~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://" -#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento" +#~ "È disponibile un nuovo rilascio, nome in codice «%s». Consultare http://" +#~ "www.ubuntulinux.org/ per le istruzioni sull'aggiornamento." #~ msgid "Never show this message again" #~ msgstr "Non mostrare più questo messaggio" diff --git a/po/ja.po b/po/ja.po index bfa72652..41470c3f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -159,20 +159,20 @@ msgstr "" "システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" "す。 Synaptic や apt-get を使って最初に修正してください。" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "要求されたメタパッケージがアップグレードできません" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -182,11 +182,11 @@ msgid "" msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -196,12 +196,12 @@ msgstr "" "クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" "ジが表示されます。" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' がインストールできません" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -209,11 +209,11 @@ msgstr "" "要求されたパッケージのインストールができません。バグとして報告してください。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -332,11 +332,11 @@ msgstr "" "アップグレード後に 'ソフトウェアの配布元' ツールか Synaptic を使用してくださ" "い。" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "アップデート中にエラー発生" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +344,11 @@ msgstr "" "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" "ネットワーク接続をチェックし、再びアップデートしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "ディスクの空き領域が足りません" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +360,15 @@ msgstr "" "た一時パッケージを削除してください。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,11 +382,11 @@ msgstr "" "このバグを 'update-manager' パッケージのバグとして報告して下さい。その際、バ" "グ報告に /var/log/dist-upgrade/ 中のファイルを含めて下さい。" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "アップグレードをダウンロードできません" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +394,11 @@ msgstr "" "アップグレードを中断しました。インターネット接続またはインストールメディア" "(CD-ROMなど)をチェックし。再試行してください。 " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -413,23 +413,23 @@ msgstr "" "'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" "提案します。" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "不要なパッケージを削除しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "このステップをスキップ(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "削除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "コミット中にエラー" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,28 +438,28 @@ msgstr "" "ください。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "システムを元に戻し中" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "パッケージマネージャをチェック中" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "アップグレードの準備中" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -467,15 +467,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "リポジトリ情報をアップデート" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "無効なパッケージ情報" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -487,19 +487,19 @@ msgstr "" "パッケージ情報のアップデートのあと、重要パッケージ '%s' が見つかりません。\n" "このメッセージは深刻なエラーです。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "確認する" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "アップグレード中" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索する" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" @@ -568,11 +568,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "'diff' コマンドが見つかりません" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "重大なエラーが発生しました" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -587,25 +587,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d 個のパッケージが削除されます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d 個のパッケージがインストールされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 個のパッケージがアップグレードされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -616,7 +616,7 @@ msgstr "" "\n" "全部で %s つのパッケージをダウンロードする必要があります。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -624,35 +624,35 @@ msgstr "" "アップグレードの取得とインストールには数時間かかり、今後一切キャンセルはでき" "ません。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" "さい。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "削除されるパッケージ: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "インストール %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "アップグレード %s" @@ -686,11 +686,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "再起動してください" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "アップグレードが終了しました。再起動が必要ですが、すぐに実行しますか?" diff --git a/po/ka.po b/po/ka.po index d3a1b6a9..7b34056f 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:04+0000\n" -"Last-Translator: Vladimer Sichinava \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 01:28+0000\n" +"Last-Translator: Malkhaz Barkalaya \n" "Language-Team: Georgian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,9 +92,8 @@ msgstr "საკუთარი სერვერები" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "პროგრამული განახლებები" +msgstr "პროგრამების მიღება წყაროებიდან" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 @@ -133,13 +132,13 @@ msgstr "" "ამორჩეული გასაღების წაშლა ვერ მოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"ვერ მოხერხდა CD-ს წაკითხვა\n" +"დაიშვა შეცდომა CD-ს წაკითხვისას\n" "\n" "%s" @@ -164,39 +163,37 @@ msgstr "" "პროგრამით. ჯერ გამართეთ დაზიანებული პაკეტები synaptic ან apt-get პროგრამით " "და შემდეგ გააგრძელეთ." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "საჭირო მეტა-პაკეტების განახლება ვერ მოხერხდა" -#: ../DistUpgrade/DistUpgradeCache.py:217 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "ამით საჭირო პაკეტი წაიშლება" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "სისტემა ვერ მომზადდა განახლებისათვის" -#: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"მოხდა დაუდგენელი შეცდომა განახლებისათვის მზადებისას. შეატყობინეთ ეს ხარვეზი " -"'update-manager' პაკეტის საშუალებით, შეტყობინებას დაურთეთ ფაილები /var/log/" -"dist-upgrade/-დან." +"მოხდა დაუდგენელი შეცდომა განახლებისათვის მზადებისას.\n" +"\n" +"შეატყობინეთ ეს ხარვეზი 'update-manager' პაკეტის საშუალებით, შეტყობინებას " +"დაურთეთ ფაილები /var/log/dist-upgrade/-დან." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -205,24 +202,23 @@ msgstr "" "ვერ ხერხდება ზოგიერთი პაკეტის ავთენთიფიკაცია. ეს შეიძლება იყოს კავშირის " "ბრაკი. სცადეთ მოგვიანებით. ქვევით იხილეთ არა-ავთენთიფიცერული პაკეტების სია." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' ვერ დაყენდა" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორც ხარვეზი. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ შეირჩა" -#: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,11 +228,10 @@ msgid "" msgstr "" "თქვენს სისტემაში არ არის ubuntu-desktop, kubuntu-desktop ან edubuntu-desktop " "პაკეტებიდან არცერთი, რის გამოც უბუნტუს ვერსიის დადგენა ვერ ხერხდება.\n" -"სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " +" სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " "გამოყენებით." #: ../DistUpgrade/DistUpgradeControler.py:75 -#, fuzzy msgid "Failed to add the CD" msgstr "ვერ განხორციელდა CD-ს დამატება" @@ -249,6 +244,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"შეცდომა CD-ს დამატებისას; განახლების პროცესი შეწყვეტილია. თუ დარწმუნებული " +"ხართ, რიმ ეს უბუნტუს CD0ს ბრალი არ არის, შეატყობინეთ ამ ხარვეზის შესახებ.\n" +"\n" +"ინფორმაცია შეცდომის შესახებ:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" @@ -256,7 +256,7 @@ msgstr "ქეშის კითხვა" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" -msgstr "ნივიღოთ ქსელიდან მონაცემები განახლების შესახებ?" +msgstr "მივიღოთ ქსელიდან მონაცემები განახლების შესახებ?" #: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" @@ -286,7 +286,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "რეპოზიტორიის შესახებ ინფორმაციაში არ არის მითითებული სარკე სისტემის " -"განახლებისათვის. შესაძლოა თქვენ შიდა სარკეს იყენებდეთ, ან ინფორმაცია სარკის " +"განახლებისათვის. შესაძლოა თქვენ შიდა სარკეს იყენებთ, ან ინფორმაცია სარკის " "შესახებ მოძველებულია.\n" "\n" "თუ თქვენ მაინც გინდათ 'sources.list' ფაილის განახლება, დასტურის შემთხვევაში " @@ -295,7 +295,6 @@ msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 -#, fuzzy msgid "Generate default sources?" msgstr "გავუშვათ ნაგულისხმევი წყაროების გენერაცია?" @@ -326,12 +325,10 @@ msgstr "" "ხარვეზი." #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy msgid "Third party sources disabled" msgstr "მესამე მხარის წყაროები გამორთულია" #: ../DistUpgrade/DistUpgradeControler.py:310 -#, fuzzy 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 " @@ -340,11 +337,11 @@ msgstr "" "მესამე მხარის ზოგი წყარო sources.list-ში გამორთულია. განახლების შემდეგ " "შეგეძლებათ მათი ჩართვა 'software-properties' ან synaptic-ის საშუალებით." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "განახლებისას მოხდა შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -352,11 +349,11 @@ msgstr "" "განახლებისას მოხდა შეცდომა. როგორც წესი ეს არის კავშირის პრობლემა, შეამოწმეთ " "თქვენი კავშირი და სცადეთ კიდევ ერთხელ." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "დისკზე არ არის საკმარისი თავისუფალი ადგილი" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,21 +361,19 @@ msgid "" "apt-get clean'." msgstr "" "განახლება შეწყვეტილია. გაათავისუფლეთ არანაკლებ %s ზომის ადგილი %s დისკზე. " -"გამოიყენეთ 'sudo apt-get clean' სანაგვიდან ფაილებისა და წინა ინსტალაციის " +"გამოიყენეთ 'sudo apt-get clean' ურნიდან ფაილებისა და წინა ინსტალაციის " "დროებითი პაკეტების წასაშლელად." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" -#: ../DistUpgrade/DistUpgradeControler.py:465 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "განახლებების დაყენება ვერ ხერხდება" -#: ../DistUpgrade/DistUpgradeControler.py:466 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,27 +384,24 @@ msgstr "" "განახლება შეწყვეტილია. სისტემამ, შესაძლოა, დაკარგა მუშაობის უნარი. " "გაშვებულია აღდგენის პროცესი (dpkg --configure -a).\n" "\n" -"შეატყობინეთ ხარვეზის შესახებ 'update-manager' პაკეთის საშუალებით, " +"შეატყობინეთ ხარვეზის შესახებ 'update-manager' პაკეტის საშუალებით, " "შეტყობინებაში ჩართეთ ფაილები var/log/dist-upgrade/-დან." -#: ../DistUpgrade/DistUpgradeControler.py:484 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "განახლებების ჩამოტვირთვა ვერ ხერხდება" -#: ../DistUpgrade/DistUpgradeControler.py:485 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "განახლება შეწყვეტილია. შეამოწმეთ ხელახლა ქსელი და საინსტალაციო დისკი. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "ზოგ პროგრამას მხარდაჭერა აღარა აქვს" -#: ../DistUpgrade/DistUpgradeControler.py:522 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,73 +411,70 @@ msgid "" msgstr "" "ამ პაკეტებს Canonical Ltd.-ს ნაცვლად საზოგადოება უჭერს მხარს.\n" "\n" -"თუ თქვენ არა გაქვთ საზოგადოების უზრუნველყოფა (universe), მაშინ შემდეგ ეტაპზე " +"თუ თქვენ არა გაქვთ საზოგადოების რეპოზიტორია (universe), მაშინ შემდეგ ეტაპზე " "შემოთავაზებული იქნება ამ პაკეტების წაშლა." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "წავშალოთ მოძველებული პაკეტები?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "ეტაპის გა_მოტოვება" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_წაშლა" -#: ../DistUpgrade/DistUpgradeControler.py:568 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "შეცდომა გადაცემისას" -#: ../DistUpgrade/DistUpgradeControler.py:569 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "შეცდომა გასუფთავებისას. დაწვრილებით იხილეთ ქვემოთ. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "სისტემის საწყისი მდგომარეობის აღდგენა" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "%s'-ის მიღება backport-იდან" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" -msgstr "ვამოწმებ პროგრამულ მენეჯერს" +msgstr "პროგრამულ მენეჯერის შემოწმება" -#: ../DistUpgrade/DistUpgradeControler.py:676 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" -msgstr "განახლების ჩადგმის მომზადება" +msgstr "შეცდომა განახლების მომზადებისას" -#: ../DistUpgrade/DistUpgradeControler.py:677 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." +"მოხდა დაუდგენელი შეცდომა განახლების მომზადებისას. შეატყობინეთ 'update-" +"manager'-ის ეს ხარვეზი, ანგარიშს დაურთეთ ფაილები /var/log/dist-upgrade/-დან." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" -msgstr "რეპოზტორიის ინფორმაციის განახლება" +msgstr "რეპოზიტორიის ინფორმაციის განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" -msgstr "გაფუჭებული პაკეტის შესახებ ინფორმაცია" +msgstr "ინფორმაცია პაკეტის შესახებ არასწორია" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -494,52 +483,52 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"პაკეტის შესახებ ინფორმაციის განახლების შემდეგ ვერ მოიძებნა მნიშვნელოვანი " +"პაკეტი '%s'.\n" +"ეს სერიოზული შეცდომაა, შეატყობინეთ 'update-manager'-ის ეს ხარვეზი, ანგარიშს " +"დაურთეთ ფაილები /var/log/dist-upgrade/-დან." -#: ../DistUpgrade/DistUpgradeControler.py:738 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" -msgstr "-თვის" +msgstr "დასტურის მოთხოვნა" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" -msgstr "მიმდინარეობს განახლებების ჩაყენება" +msgstr "მიმდინარეობს განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:749 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" -msgstr "ვეძებ -თვის" +msgstr "მოძველებული პროდუქტების ძებნა" -#: ../DistUpgrade/DistUpgradeControler.py:754 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." -msgstr "სისტემა ტოლია სრული." +msgstr "სისტემის განახლება დასრულებულია." #. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "ჩადევით '%s' '%s'-ში" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "განახლება გასრულებულია" +msgstr "ჩატვირთვა დასრულებულია" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "იტვირთება %li ფაილი %li-დან, სიჩქარე - %s/წმ" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" -msgstr "" +msgstr "დარჩა დაახლოებით %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "იტვირთება %li ფაილი %li-დან" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) @@ -551,13 +540,15 @@ msgstr "ცვლილებების დამტკიცება" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "ვერ ჩავდგი '%s'" +msgstr "ვერ დადგა '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 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 bugreport." msgstr "" +"განახლება შეწყვეტილია. შეატყობინეთ 'update-manager'-ის ეს ხარვეზი, ანგარიშს " +"დაურთეთ ფაილები /var/log/dist-upgrade/-დან." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 @@ -566,95 +557,105 @@ msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" +"გადავაწეროთ ადრინდელს კონფიგურაციის განახლებული ფაილი\n" +"'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"თუ დაეთანხმებით, კონფიგურაციის ფაილში თქვენს მიერ ადრე შეტანილი ცვლილებები " +"დაიკარგება." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 -#, fuzzy msgid "The 'diff' command was not found" -msgstr "არა" +msgstr "'diff' ბრძანება ვერ მოინახა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" -msgstr "A შეცდომა" +msgstr "ფატალური შეცდომა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " "now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." -msgstr "a და შემცველობა და -ში ახლა თავდაპირველი სია -ში სია." +msgstr "" +"შეატყობინეთ ეს ხარვეზი, ანგარიშს დაურთეთ ფაილები /var/log/dist-upgrade/main." +"log და var/log/dist-upgrade/apt.log-დან. განახლება შეწყვეტილია.\n" +"თქვენი პირვანდელი sources.list შენახულია /etc/apt/sources.list.distUpgrade-" +"ში." #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "A არსებითი -სკენ" +msgstr[0] "წაიშლება %d პაკეტი." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "" +msgstr[0] "დადგება %d ახალი პაკეტი." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "" +msgstr[0] "განახლდება %d პაკეტი." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" +"\n" +"\n" +"სულ გადმოიტვირთება %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "საათი და ნებისმიერი დრო." +msgstr "" +"განახლების გადმოტვირთვასა და დაყენებას სჭირდება რამდენიმე საათი და მისი " +"შეწყვეტა არ არის სასურველი." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." -msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." +msgstr "" +"დახურეთ გახსნილი პროგრამები და დოკუმენტები, მონაცემების დაკარგვის თავიდან " +"ასაცილებლად." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "თქვენი სისტემისათვის არ არის განახლებები. პროცედურა შეწყვეტილია." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr " ამოშლა %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "დაყენება %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "ჩასაყენებელი განახლება %s" @@ -662,22 +663,22 @@ msgstr "ჩასაყენებელი განახლება %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li დღე %li საათი %li წუთი" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li საათი %li წუთი" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li წუთი" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li წამი" #. 56 kbit #. 1Mbit = 1024 kbit @@ -687,16 +688,16 @@ msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"ჩამოტვირთვის ხანგრძლივობა: %s - 1Mbit DSL-სათვის, %s 56k-მოდემისათვის." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "საჭიროა გადატვირთვა" -#: ../DistUpgrade/DistUpgradeView.py:110 -#, fuzzy +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "ტოლია დასრულდა და a ტოლია -სკენ ახლა?" +msgstr "განახლება დასრულდა, საჭიროა გადატვირთვა. გადავიტვირთოთ ახლა?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): @@ -704,31 +705,33 @@ msgstr "ტოლია დასრულდა და a ტოლია -ს #. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 +#, fuzzy msgid " " -msgstr " " +msgstr "ეს არ ვიცი როგორ ვთარგმნო, ვერცერთ ლექსიკონში ვერ ვნახე :) " #: ../DistUpgrade/DistUpgrade.glade.h:2 -#, fuzzy msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." -msgstr " გაუქმება გაშვებული n -ში გაუქმება თქვენ -სკენ." +msgstr "" +"შევწყვიტოთ განახლების პროცესი?\n" +"\n" +"განახლების შეწყვეტამ შეიძლება სისტემას მუშაობის უნარი დაუკარგოს. დაბეჯითებით " +"გირჩევთ არ შეწყვიტოთ განახლების პროცესი." #: ../DistUpgrade/DistUpgrade.glade.h:5 -#, fuzzy msgid "Restart the system to complete the upgrade" -msgstr " გადატვირთვა -სკენ სრული" +msgstr "სისტემის გადატვირთვა განახლების დასასრულებლად" #: ../DistUpgrade/DistUpgrade.glade.h:6 -#, fuzzy msgid "Start the upgrade?" -msgstr " გაშვება" +msgstr "განახლების დაწყება" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Ubuntu-ს განახლება 6.10 ვერსიამდე" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -739,220 +742,208 @@ msgid "Details" msgstr "ცნობები" #: ../DistUpgrade/DistUpgrade.glade.h:10 -#, fuzzy msgid "Difference between the files" -msgstr "განსხვავება" +msgstr "განსხვავება ფაილებს შორის" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "მიმდინარეობს ჩამოქაჩვა და" +msgstr "მიმდინარეობს განახლებების ჩამოქაჩვა და დაყენება" #: ../DistUpgrade/DistUpgrade.glade.h:12 +#, fuzzy msgid "Modifying the software channels" -msgstr "" +msgstr "პროგრამების მიღების არხების შეცვლა" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "განახლების ჩადგმის მომზადება" +msgstr "განახლებისათვის მომზადება" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "სისტემის გადატვირთვა" #: ../DistUpgrade/DistUpgrade.glade.h:15 -#, fuzzy msgid "Terminal" msgstr "ტერმინალი" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "განახლება _გაგრძელება" +msgstr "განახლების _შეწყვეტა" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_გაგრძელება" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "_დატოვე" +msgstr "_დატოვება" #: ../DistUpgrade/DistUpgrade.glade.h:19 #: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" -msgstr "_ჩაანაცვლე" +msgstr "_ჩანაცვლება" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "_შეცდომის-ოქმის გაგავნა" +msgstr "_ხარვეზის ანგარიშის გაგზავნა" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "_მყისვე გადატვირთვა" +msgstr "_გადატვირთვა" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "განახლება _გაგრძელება" +msgstr "განახლების _გაგრძელება" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "განახლება _გაგრძელება" +msgstr "განახლების _დაწყება" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "ვერ ვპოულობ ვერსიის შენიშვნებს" +msgstr "ვერ მოინახა ჩანაწერი გამოშვების შესახებ" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "შესაძლებელია რომ ამ მომენტისთვის სერვერი გადატვირთულია. " +msgstr "შესაძლებელია სერვერი გადატვირთულია. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "შეუძლებელია ვერსიის შენიშვნების გადმოწერა" +msgstr "შეუძლებელია გამოშვების შესახებ ჩანაწერის ჩამოქაჩვა" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ კავშირი." +msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ-კავშირი." #. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს" +msgstr "განახლების უტილიტა ვერ გაიშვა" #: ../UpdateManager/DistUpgradeFetcher.py:150 -#, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "ტოლია a -ში a" +msgstr "" +"როგორც სჩანს, ეს განახლების უტილიტის ბრალია. გაგზავნეთ ხარვეზის შეტყობინება" #: ../UpdateManager/DistUpgradeFetcher.py:171 -#, fuzzy msgid "Downloading the upgrade tool" -msgstr "მიმდინარეობს ჩამოქაჩვა" +msgstr "მიმდინარეობს განახლების უტილიტის ჩამოქაჩვა" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "განახლების უტილიტა დაგეხმარებათ განახლების მიმდინარეობისას." #: ../UpdateManager/DistUpgradeFetcher.py:180 -#, fuzzy msgid "Upgrade tool signature" -msgstr "განახლება" +msgstr "განახლების უტილიტის ხელმოწერა" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "განახლების ჩაყენების ხელსაწყო" +msgstr "განახლების უტილიტა" #: ../UpdateManager/DistUpgradeFetcher.py:208 -#, fuzzy msgid "Failed to fetch" -msgstr "ვერ განხორციელდა -სკენ" +msgstr "მიღება ვერ მოხერხდა" #: ../UpdateManager/DistUpgradeFetcher.py:209 -#, fuzzy msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "ვერ შედგა a " +msgstr "ვერ მოხერხდა განახლების მიღება. შესაძლოა ქსელის პრობლემა იყოს. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "ამოარქივება ვერ განხორციელდა" +msgstr "განარქივება ვერ განხორციელდა" #: ../UpdateManager/DistUpgradeFetcher.py:215 -#, fuzzy msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ამოღება ვერ შედგა a ან " +msgstr "" +"განახლების განარქივება ვერ განხორციელდა. შესაძლოა ქსელის ან სერვერის " +"პრობლემა იყოს. " #: ../UpdateManager/DistUpgradeFetcher.py:221 -#, fuzzy msgid "Verfication failed" -msgstr "ვერ შედგა" +msgstr "შეცდომა გადამოწმებისას" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ვერ შედგა a ან " +msgstr "" +"განახლების შეჯერება წარუმატებლად დამთავრდა. შესაძლოა ქსელის ან სერვერის " +"პრობლემა იყოს. " #: ../UpdateManager/DistUpgradeFetcher.py:228 -#, fuzzy msgid "Authentication failed" -msgstr "იდენთიფიკაციამ ჩაიშალა" +msgstr "აუტენტიფიკაცია ვერ მოხერხდა" #: ../UpdateManager/DistUpgradeFetcher.py:229 -#, fuzzy msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "მიმდენარეობს აუტენტიფიკაცია ვერ შედგა a ან " +msgstr "" +"განახლების აუტენტიფიკაცია ვერ მოხერხდა. შესაძლოა ქსელის ან სერვერის პრობლემა " +"იყოს. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "მე-%(current)li ფაილის ჩამოქაჩვა %(total)li-დან. სიჩქარე - %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "მე-%(current)li ფაილის ჩამოქაჩვა %(total)li-დან" #: ../UpdateManager/UpdateManager.py:206 -#, fuzzy msgid "The list of changes is not available" -msgstr "" -"ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." +msgstr "ცვლილებების სია არ არის ხელმისაწვდომი." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." +"ცვლილებების სია ჯერჯერობით არ არის ხელმისაწვდომი. \n" +"სცადეთ მოგვიანებით." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." +msgstr "" +"ვერ განხორციელდა ცვლილებების სიის ჩამოქაჩვა.\n" +"შეამოწმეთ ინტერნეტ-კავშირი." #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 -#, fuzzy msgid "Important security updates" -msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +msgstr "უსაფრთხოების მნიშვნელოვანი განახლებები" #. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "რეკომენდებული განახლებები" #. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 -#, fuzzy msgid "Proposed updates" -msgstr "განახლებების _დაყენება" +msgstr "შემოთავაზებული განახლებები" #: ../UpdateManager/UpdateManager.py:241 #, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +msgstr "ბექპორტები" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "განახლება _გაგრძელება" +msgstr "დისტრიბუტივის განახლებები" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 -#, fuzzy msgid "Other updates" -msgstr "განახლებების _დაყენება" +msgstr "სხვა განახლებები" #: ../UpdateManager/UpdateManager.py:478 #, python-format @@ -960,18 +951,16 @@ msgid "Version %s: \n" msgstr "ვერსია %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." -msgstr "მიმდინარეობს ჩამოქაჩვა სია ის." +msgstr "მიმდინარეობს ცვლილებათა სიის ჩამოქაჩვა..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" -msgstr "" +msgstr "_ყველას გაუქმება" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "შ_ემოწმება" +msgstr "_ყველას მონიშვნა" #. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 @@ -987,51 +976,50 @@ msgstr[0] "თქვენ შეგიძლიათ %s განახლე #: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." -msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება." +msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო სჭირდება." #: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "განახლება გასრულებულია" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "განახლებების _დაყენება" +msgstr "განახლებების არსებობის შემოწმება" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "ახალი ვერსია: %s (ზომა: %s)" +msgstr "%(old_version)s ვერსიიდან %(new_version)s-მდე" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "ვერსია %s:" +msgstr "ვერსია %s" #. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(ზომა: %s)" #: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" -msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" +msgstr "თქვენს დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" #: ../UpdateManager/UpdateManager.py:844 -#, fuzzy 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 " "information on upgrading." msgstr "" -"თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი " -"იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია." +"თქვენ ვეღარ მიიღებთ უსაფრთხოების შესწორებებსა და კრიტიკულ განახლებებს. " +"განაახლეთ სისტემა უბუნტუ-ლინუქსის ახალ ვერსიამდე. იხილეთ http://www.ubuntu." +"com." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "ხელმისწვდომია ახალი გამოშვება '%s'" #. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 @@ -1039,64 +1027,61 @@ msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" #: ../UpdateManager/UpdateManager.py:903 -#, fuzzy 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 terminal to fix " "this issue at first." msgstr "" -"ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." +"შეუძლებელია პროგრამების დაყენება ან წაშლა. ჯერ გამოასწორეთ დეფექტი პაკეტების " +"მენეჯერით Synaptic ან ტერმინალში \"sudo apt-get install -f\" ბრძანებით." #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 +#, fuzzy msgid "None" -msgstr "" +msgstr "არაფერი" #. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 კბ" #. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f კბ" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f მბ" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -" თქვენ -თვის n არა -თვის თქვენ -ში სისტემა ადმინისტრაცია " -"პროგრამა პარამეტრები." +"თქვენ თვითონ მოსინჯეთ განახლებები\n" +"\n" +"სისტემამ არ ეძებს განახლებებს ავტომატურ რეჟიმში. შეგიძლიათ ეს თვისება " +"შეცვალოთ ჩანართში განახლება ინტერნეტიდან ფანჯარაში წყარო-" +"პროგრამები." #: ../data/glade/UpdateManager.glade.h:4 -#, fuzzy msgid "Keep your system up-to-date" -msgstr " დატოვება -სკენ თარიღი" +msgstr "განაახლეთ ხოლმე სისტემა" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"ვერ მოხერხდა CD-ს წაკითხვა\n" -"\n" -"%s" +msgstr "ვერ მოხერხდა ყველა განახლების დაყენება" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr " გაშვება" +msgstr "განახლების მენეჯერის გაშვება" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1104,16 +1089,15 @@ msgstr "ცვლილებები" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "განახლების აღწერა და ცვლილებები" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "შე_მოწმება" #: ../data/glade/UpdateManager.glade.h:10 -#, fuzzy msgid "Check the software channels for new updates" -msgstr "შემოწმება -თვის ახალი" +msgstr "პროგრამათა წყაროების შემოწმება განახლებების არსებობაზე" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1121,7 +1105,7 @@ msgstr "აღწერილობა" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "ვერსიის მონაცემები" +msgstr "გამოშვების მონაცემები" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1130,80 +1114,78 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"მაქსიმალური განახლებისათვის გაუშვით დისტრიბუტივის განახლება.\n" +"\n" +"ამის მიზეზი შეიძლება იყოს განახლების შეწყვეტა, არაოფიციალური პროგრამებისა და " +"დეველოპერ-ვერსიის გამოყენება." #: ../data/glade/UpdateManager.glade.h:16 -#, fuzzy msgid "Show progress of single files" -msgstr "ჩვენება მიმდინარეობა ის ცალი" +msgstr "პროგრესის ჩვენება ცალკეული ფაილებისათვის" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "პროგრამული განახლებები" +msgstr "პროგრამათა განახლებები" #: ../data/glade/UpdateManager.glade.h:18 -#, fuzzy msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "პროგრამა სწორეა და ახალი." +msgstr "" +"პროგრამათა განახლებები ასწორებს შეცდომებს, უსაფრთხოების ხარვეზებს და ამატებს " +"ახალ შესაძლებლობებს." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "_განახლება" #: ../data/glade/UpdateManager.glade.h:20 -#, fuzzy msgid "Upgrade to the latest version of Ubuntu" -msgstr "განახლება -სკენ ვერსია ის" +msgstr "განახლება უბუნტუს ბოლო ვერსიამდე" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "შ_ემოწმება" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "განახლება _გაგრძელება" +msgstr "_დისტრიბუტივის განახლება" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "_დამალე მომავალში მოცემული ინფორმაცია" +msgstr "_დავმალოთ ეს ინფორმაცია მომავალში" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "განახლებების _დაყენება" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" -msgstr "ჩასაყენებელი განახლება %s" +msgstr "_განახლება" #: ../data/glade/UpdateManager.glade.h:26 -#, fuzzy msgid "changes" msgstr "ცვლილებები" #: ../data/glade/UpdateManager.glade.h:27 msgid "updates" -msgstr "" +msgstr "განახლებები" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "ინტერნეტ განახლებები" +msgstr "ავტომატური განახლებები" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" -msgstr "ინტერნეტ განახლებები" +msgstr "ინტერნეტ-განახლებები" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "ინტერნეტ განახლებები" +msgstr "ინტერნეტი" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1215,95 +1197,92 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"მიიღეთ მონაწილეობა პოპულარობის რეიტინგის შექმნაში - ამით თქვენ ხელს " +"შეუწყობთ უბუნტუს გაუმჯობესებას; შეიქმნება თქვენს მიერ დაყენებული პროგრამების " +"სია მათი გამოყენების სიხშირის ჩვენებით, რომელიც ანონიმურად, კვირაში ერთხელ " +"გაიგზავნება უბუნტუს პროექტში.\n" +"\n" +"შედეგები გამოყენებულ იქნება პოპულარული პროგრამების უკეთ მხარდაჭერისათვის და " +"ძებნის შედეგებში პროგრამების რეიტინგის შესაფასებლად." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "დამატება" +msgstr "Cdrom-ის დამატება" #: ../data/glade/SoftwareProperties.glade.h:10 -#, fuzzy msgid "Authentication" msgstr "აუთენტიფიკაცია" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "ჩამოტვირთული პაკეტების ფაილების წ_აშლა:" +msgstr "ჩამოტვირთული პროგრამების ფაილების წ_აშლა:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "ჩამოტვირთვა ტოლია სრული" +msgstr "ჩამოტვირთვა წყაროდან:" #: ../data/glade/SoftwareProperties.glade.h:13 -#, fuzzy msgid "Import the public key from a trusted software provider" -msgstr "იმპორტი გასაღები a" +msgstr "სანდო პროგრამების მომწოდებლის ღია გასაღების იმპორტი" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" -msgstr "ინტერნეტ განახლებები" +msgstr "ინტერნეტ-განახლებები" #: ../data/glade/SoftwareProperties.glade.h:15 -#, fuzzy msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "მხოლოდ" +msgstr "" +"ავტომატურად დაყენდება მხოლოდ უსაფრთხოების განახლებები უბუნტუს ოფიციალური " +"სერვერებიდან" #: ../data/glade/SoftwareProperties.glade.h:16 -#, fuzzy msgid "Restore _Defaults" -msgstr "ნაგულისხმები პარამეტრები" +msgstr "ნაგულისხმევი პარამეტრების აღდგენა" #: ../data/glade/SoftwareProperties.glade.h:17 -#, fuzzy msgid "Restore the default keys of your distribution" -msgstr "ნაგულისხმევი ის დისტრიბუტივი" +msgstr "ნაგულისხმევი გასაღებების აღდგენა დისტრიბუტივიდან" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "პროგრამა პარამეტრები" +msgstr "წყარო-პროგრამები" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "საწყისი კოდი" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "სტატისტიკა" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "სტატისტიკური ინფორმაციის გაგზავნა" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "სხვა მომწოდებლები" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "განახლებების ავტომატური შ_ემოწმება:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "ჩამოტვირთვა -ში არა" +msgstr "_განახლებების ავტომატური ჩამოტვირთვა დაყენების გარეშე" #: ../data/glade/SoftwareProperties.glade.h:25 -#, fuzzy msgid "_Import Key File" -msgstr "იმპორტი გასაღები ფაილი" +msgstr "_გასაღები ფაილის იმპორტი" #: ../data/glade/SoftwareProperties.glade.h:26 -#, fuzzy msgid "_Install security updates without confirmation" -msgstr "დაყენება" +msgstr "_უსაფრთხოების განახლებების დაყენება შეკითხვის გარეშე" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1312,8 +1291,10 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -" ინფორმაცია ტოლია ის თარიღი n -სკენ ინფორმაცია -სკენ და ან " -"შეცვლილი n a -სკენ." +"ინფორმაცია ხელმისაწვდომი პროგრამების შესახებ ვადაგასულია\n" +"\n" +"ახალი ან შეცვლილი წყაროდან პროგრამის დასაყენებლად განაახლეთ ინფორმაცია " +"ხელმისაწვდომი პროგრამების შესახებ." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1321,7 +1302,7 @@ msgstr "კომენტარი:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" -msgstr "Components:" +msgstr "კომპონენტები:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" @@ -1336,7 +1317,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1344,32 +1324,36 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -" შეყვანა სრული ის -სკენ დამატება n ტიპი მდებარეობა და " -"კომპონენტები ის a -თვის მაგალითიhttp://ftp.debian.org." +"შეიყვანეთ წყაროდ დასამატებელი რეპოზიტორიის სრული APT-სტრიქონი\n" +"\n" +"\n" +"APT-სტრიქონი შეიცავს რეპოზიტორიის ტიპს, მდებარეობასა და კომპონენტებს. " +"მაგალითად \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" -msgstr "" +msgstr "APT-სტრიქონი:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 -#, fuzzy msgid "" "Binary\n" "Source" -msgstr "ორობითი" +msgstr "" +"ორობითი\n" +"წყარო" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "წყაროს შეცვლა" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 -#, fuzzy msgid "Scanning CD-ROM" msgstr "CD-ROM-ის სკანირება" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "_წყაროს დამატება" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1377,75 +1361,71 @@ msgstr "_გადატვირთვა" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "ახალი განახლებების შემოწმება და ჩადგმა" +msgstr "ახალი განახლებების ჩვენება და ჩადგმა" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" msgstr "განახლების მენეჯერი" #: ../data/update-manager.schemas.in.h:1 -#, fuzzy msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "შემოწმება a ახალი ვერსია ის დისტრიბუტივი ტოლია და -სკენ." +msgstr "" +"დისტრიბუტივის ახალი ვერსიის ავტომატური მონახვა და თუ შესაძლებელია, " +"განახლების შემოთავაზება." #: ../data/update-manager.schemas.in.h:2 -#, fuzzy msgid "Check for new distribution releases" -msgstr "შემოწმება -თვის ახალი დისტრიბუტივი" +msgstr "დისტრიბუტივის ახალი გამოშვების მოსინჯვა" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy 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 this " "case." -msgstr "-თვის ტოლია -სკენ სია -სკენ -ში." +msgstr "" +"როცა განახლებების ავტომატური მოსინჯვის ფუნქცია გამორთულია, თქვენ ხელით უნდა " +"მოახდინოთ წყაროთა სიის განახლება, რასაც სისტემა შეგახსენებთ. ამ პარამეტრით " +"შეიძლება შეხსენების აკრძალვა." #: ../data/update-manager.schemas.in.h:4 -#, fuzzy msgid "Remind to reload the channel list" -msgstr "-სკენ სია" +msgstr "წყაროთა სიის განახლების შეხსენება" #: ../data/update-manager.schemas.in.h:5 -#, fuzzy msgid "Show details of an update" -msgstr "ჩვენება ის განახლება" +msgstr "განახლების დეტალების ჩვენება" #: ../data/update-manager.schemas.in.h:6 -#, fuzzy msgid "Stores the size of the update-manager dialog" -msgstr "ზომა ის განახლება დიალოგი" +msgstr "ინახავს განახლების მენეჯერის ფანჯრის ზომას" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" -msgstr "ის შეიცავს სია ის და აღწერა" +msgstr "" +"ინახავს ცვლილებებისა და აღწერილობების შემცველი ექსპანდერის მდგომარეობას" #: ../data/update-manager.schemas.in.h:8 -#, fuzzy msgid "The window size" -msgstr "ფანჯარა ზომა" +msgstr "ფანჯრის ზომა" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "კონფიგურირება და" +msgstr "პროგრამების დაყენებისა და განახლების წყაროების კონფიგურირება" #. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 -#, fuzzy, no-c-format +#, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 განახლებები" +msgstr "Ubuntu 6.10 'Edgy Eft'" #. CompDescription #: ../data/channels/Ubuntu.info.in:13 @@ -1455,72 +1435,67 @@ msgstr "" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "მოწყობილობების საკუთარი დრაივერები" #. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "არათავისუფალი (Multiverse)" +msgstr "არათავისუფალი პროგრამები" #. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Ubuntu 6.10 'Edgy Eft'-ს ლაზერული დისკი" #. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "თავისუფალი პროგრამები (Open Source) Canonical-ის მხარდაჭერით" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" -msgstr "" +msgstr "universe საზოგადოების მხრდაჭერით" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" -msgstr "" +msgstr "თავისუფალი პროგრამები (Open Source) universe საზოგადოების მხარდაჭერით" #. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "არათავისუფალი (Multiverse)" +msgstr "არათავისუფალი დრაივერები" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "მოწყობილობების საკუთარი დრაივერები " #. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "არათავისუფალი (Multiverse)" +msgstr "არათავისუფალი პროგრამები (Multiverse)" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "პატენტებითა და კანონებით შეზღუდული პროგრამები" #. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'-ის ლაზერული დისკი" #. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Backport-განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:110 @@ -1529,9 +1504,8 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.10 'Breezy Badger'-ის ლაზერული დისკი" #. Description #: ../data/channels/Ubuntu.info.in:135 @@ -1546,52 +1520,47 @@ msgstr "Ubuntu 5.10 განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +msgstr "Ubuntu 5.10 ბექპორტები" #. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" #. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'-ის ლაზერული დისკი" #. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "" +msgstr "ოფიციალური მხარდაჭერით" #. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +msgstr "Ubuntu 5.04 უსაფრთხოების განახლება" #. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 განახლებები" +msgstr "Ubuntu 5.04 განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +msgstr "Ubuntu 5.04 ბექპორტები" #. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" #. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "" +msgstr "საზოგადოების მხარდაჭერით (Universe)" #. CompDescription #: ../data/channels/Ubuntu.info.in:201 @@ -1601,43 +1570,38 @@ msgstr "არათავისუფალი (Multiverse)" #. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Ubuntu 4.10 'Warty Warthog'-ის ლაზერული დისკი" #. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "არა" +msgstr "მოხსნილი აქვს ოფიციალური მხარდაჭერა" #. CompDescription #: ../data/channels/Ubuntu.info.in:211 -#, fuzzy msgid "Restricted copyright" -msgstr "შეზღუდული" +msgstr "შეზღუდული საავტორო უფლება" #. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +msgstr "Ubuntu 4.10 უსაფრთხოების განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 განახლებები" +msgstr "Ubuntu 4.10 განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +msgstr "Ubuntu 4.10 ბექპორტები" #. ChangelogURI #: ../data/channels/Debian.info.in.h:4 -#, fuzzy, no-c-format +#, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://packages.debian.org/changelogs/pool/ s s s s s" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description #: ../data/channels/Debian.info.in:6 @@ -1647,40 +1611,37 @@ msgstr "Debian 3.1 \"Sarge\"" #. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" #. Description #: ../data/channels/Debian.info.in:20 -#, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "უსაფრთხოება" +msgstr "Debian 3.1 \"Sarge\" უსაფრთხოების განახლებები" #. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "" +msgstr "Debian \"Etch\" (testing)" #. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" #. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "" +msgstr "Debian \"Sid\" (unstable)" #. CompDescription #: ../data/channels/Debian.info.in:54 -#, fuzzy msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "პროგრამა თავისუფალი დამოკიდებულებანი" +msgstr "არათავისუფალ პროგრამებზე დამოკიდებული DFSG-თავსებადი პროგრამები" #. CompDescription #: ../data/channels/Debian.info.in:57 -#, fuzzy msgid "Non-DFSG-compatible Software" -msgstr "პროგრამა" +msgstr "DFSG-არათავსებადი პროგრამები" #, fuzzy #~ msgid "Normal updates" diff --git a/po/ko.po b/po/ko.po index 74bb9644..4c94054b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" @@ -156,20 +156,20 @@ msgstr "" "이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" "냅틱이나 apt-get을 사용하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "필수적인 패키지를 제거해야만 합니다." #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,11 +183,11 @@ msgstr "" "log/dist-upgrade/에 있는 파일을 포함하여 주십시오." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "패키지 인증 오류" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -196,23 +196,23 @@ msgstr "" "인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우" "라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 목록은 다음과 같습니다." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s'을(를) 설치할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "요청한 패키지를 설치할 수 없습니다. 버그를 보고하여 주십시오. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "메타 패키지를 추측할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -331,11 +331,11 @@ msgstr "" "properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" "니다." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "업데이트 중 오류" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" "니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "디스크 여유 공간이 충분하지 않습니다." -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "에 사용했던 임시 패키지들을 삭제하시기 바랍니다." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -381,11 +381,11 @@ msgstr "" "'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" "log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "업그레이를 다운로드 할 수 없습니다." -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +393,11 @@ msgstr "" "업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" "하십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "일부 프로그램의 지원이 종료되었습니다" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -411,23 +411,23 @@ msgstr "" "커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 " "패키지들을 삭제하도록 제안할 것입니다." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "구식 패키지를 삭제하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "이 단계 건너뛰기(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "제거(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "커밋 도중 오류 발생" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -436,42 +436,42 @@ msgstr "" "할 수 있습니다. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "시스템을 원래의 상태로 복구하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "'%s'의 백포트를 받고 있습니다" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "패키지 관리자를 확인하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "저장소 정보를 업데이트하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "잘못된 패키지 정보" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -484,19 +484,19 @@ msgstr "" "심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리" "고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "확인을 요청하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "업그레이드하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "구식 소프트웨어를 검색하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "완전히 시스템을 업그레이드하였습니다." @@ -567,11 +567,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "'diff' 명령어를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "심각한 오류 발생" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -585,25 +585,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "패키지 %d개를 삭제할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "새로운 패키지 %d개를 설치할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "패키지 %d개를 업그레이드할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -614,7 +614,7 @@ msgstr "" "\n" "총 %s개의 패키지를 다운로드해야 합니다. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -622,33 +622,33 @@ msgstr "" "업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에" "도 취소할 수 없습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "시스템에 업그레이드할 것이 없습니다. 업그레이드를 취소합니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s 제거" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s 설치" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s 업그레이드" @@ -682,11 +682,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "다시 시작해야 합니다" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 하시겠습니까?" diff --git a/po/ku.po b/po/ku.po index cf2c6d52..fddd1e29 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:04+0000\n" -"Last-Translator: ElîxanLoran \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-17 09:50+0000\n" +"Last-Translator: rizoye-xerzi \n" "Language-Team: Kurdish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "Rojane" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "Her du roj" +msgstr "Her du rojan" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" @@ -31,12 +31,12 @@ msgstr "Heftane" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "Her du hefte" +msgstr "Her du hefteyan" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" -msgstr "Her %s roj" +msgstr "Her %s rojan" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" @@ -44,7 +44,7 @@ msgstr "Piştî hefteyekê" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "Piştî du hefte" +msgstr "Piştî du hefteyan" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" @@ -127,8 +127,8 @@ msgstr "Di dema rakirina mifteyan de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -"Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê yekê weke " -"çewtiyekê ragihîne." +"Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê weke çewtiyekê " +"ragihîne." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -159,23 +159,23 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Pergala te tevî vê nivîsbariyê hin pakêtên xerabe yên ku nayên sererastkirin " -"dihewîne. Berî ku tu berdewam bikî ji kerema xwe re van bernameyan bi " -"synaptic an jî i apt-get sererast bikî" +"dihewîne. Berî ku tu berdewam bikî ji kerema xwe van bernameyan bi synaptic " +"an jî i apt-get sererast bikî." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" -msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" +msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin." -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" -msgstr "Divê pakêteke pêwist jê were rakirin" +msgstr "Dê pêwiste be ku pakêta bingehîn were jêbirin" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Rojanekirin nikaribû were hesabkirin" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,11 +188,11 @@ msgstr "" "var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Di piştrastkirina çend paketan de çewtî derket" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -201,12 +201,12 @@ msgstr "" "Hin pakêt nehatin piştrastkirin. Dibe ku ev pirsgirêkeke derbasdar ya torê " "be. Ji bo lîsteya pakêtên ku nehatine piştrastkirin li jêr binihêre." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nikarî '%s' saz bike" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -215,11 +215,11 @@ msgstr "" "ragihîne. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Pakêta-meta nehate kifşkirin" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -254,7 +254,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" -msgstr "Pêşbîr tê xwendin" +msgstr "veşartok tê xwendin" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" @@ -312,7 +312,7 @@ msgstr "" "Piştî ku çav li 'sources.list' gerand ji bo '%s' tu têketineke derbasdar " "nedît.\n" "\n" -"Ji bo '%s' bila têketinên heyî lê zêde bibe? Heke tu bibêjî 'Na' dê " +"Ji bo '%s' bila têketinên heyî lê zêde bibe? Heke tu bibêjî 'Na' dê " "rojanekirin were betalkirin." #: ../DistUpgrade/DistUpgradeControler.py:302 @@ -324,7 +324,7 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Karê rojanekirina agahiya depoyê, dosyeyeke nederbasdar çêkir. Ji kerema xwe " +"Karê rojanekirina agahiya depoyê, dosyeye nederbasdar çêkir. Ji kerema xwe " "re vê çewtiyê ragihîne." #: ../DistUpgrade/DistUpgradeControler.py:309 @@ -337,12 +337,15 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" +"Ketanên aligirên sêyemîn yên di pelê sources.listê de ne bandora wan hate " +"rakirin. Piştî bilindkirinê tu dikarî van ketanan bi 'software-properties' " +"yan jî bi synapticê dîsa çalak bike." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Di rojanekirinê de çewtî derket" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +353,11 @@ msgstr "" "Di dema rojanekirinê de çewtiyek derket. Ev çewtî piranî pirsgirêka torê ye, " "ji kerema xwe re girêdana xwe ya torê kontrol bike û ji nû ve biceribîne." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Cihê vala yê diskê têr nake" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,19 +365,19 @@ msgid "" "apt-get clean'." msgstr "" "Bilindkirin diqede. Ji kerema xwe re di %s de herî kêm %s qada dîskê vala " -"bike. Çopa xwe vala bikin û bi 'sudo apt-get clean' pakêtên derbasdar yên " +"bike. Çopa xwe vala bikin û xêra 'sudo apt-get clean' pakêtên derbasdar yên " "sazkirinên berê rake." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Tu dixwazî dest bi bilindkirinê bikî?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Sazkirina hemû bilindkirinan biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,11 +391,11 @@ msgstr "" "Ji kerema xwe re bo pakêta 'update-manager' vê çewtiyê ragihîne. Dosyeyên ku " "li /var/log/dist-upgrade/ de ye jî li peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Daxistina bilindkirinan serneket" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +403,12 @@ msgstr "" "Rojanekirin niha tê betalkirin. Ji kerema xwe girêdana înternetê an medyaya " "sazkirinê kontrol bike û ji nû ve biceribîne. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Ji bo hin sepanan piştrastkirin qediya" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 +#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,24 +416,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. êdî nema xizmetan ji van pakêtên nermalav re pêşkêş dike. Tu " +"hê jî dikarî sûdê ji komeleyê bigire.\n" +"\n" +"heke destûra te ji bo nivîsbariyê tunebe, Di gava duyemîn de ev pakêt dê ji " +"bo jêbirinê werin tercîhkirin." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" -msgstr "Bila pakêtên ku nayên bikaranîn werine rakirin?" +msgstr "Bila pakêtên ku nayên bikaranîn were rakirin?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Vê gavê derbas bike" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Jê bibe" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" -msgstr "Di dema xebatê de çewtî" +msgstr "çewtî di dema xebitandinê de" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,42 +447,45 @@ msgstr "" "re li peyama jêr binihêre. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Vedigere rewşa pergala orjînal" -#: ../DistUpgrade/DistUpgradeControler.py:637 -#, python-format +#: ../DistUpgrade/DistUpgradeControler.py:641 +#, fuzzy, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "backport a '%s' vedigerîne" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Bireveberiya paketan tê kontrol kirin" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Amadekrinên nûjenkirinê biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 +#, fuzzy 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/dist-" "upgrade/ in the bugreport." msgstr "" +"Pergalê ji bo têkçûneke mezin amade dike. Ji kerema xwe re bike rapor li " +"dijî pakêta rojanekirina gerînende 'update-manager'" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Agahiyên depoyê tê rojanekirin" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Agahiya paketê nederbasdar e" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,19 +500,19 @@ msgstr "" "vê çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li " "peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Pirsa piştrastkirinê" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Tê bilindkirin" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Li nivîsbariya kevin tê gerandin" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." @@ -511,7 +523,6 @@ msgid "Please insert '%s' into the drive '%s'" msgstr "Ji kerema xwe '%s' bixe nav ajokera '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" msgstr "Rojanekirin temam bû" @@ -567,16 +578,18 @@ msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Heke tu vê guhertoyê bi yeke nû biguherînî tu yê hemû guhertinên xwe yên di " +"pelê mîhengkirinê de winda bikî." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Fermana 'diff' nehatiye dîtin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Çewtiyeke giran derket" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -591,29 +604,29 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakêt dê were rakirin." msgstr[1] "%d pakêt dê werine rakirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Dê %d pakêtên nû were sazkirin." msgstr[1] "Dê %d pakêtên nû werine sazkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Dê %d pakêt were bilindkirin" msgstr[1] "Dê %d pakêt werine bilindkirin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format msgid "" "\n" "\n" @@ -621,9 +634,9 @@ msgid "" msgstr "" "\n" "\n" -"Pêwîst e tu bi tevahî %s daxî. " +"Pêwîst e tu %s bi tevahî daxî. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -631,17 +644,17 @@ msgstr "" "Daxistin û sazkirina bilindkirinê dibe ku bi saetan bidome û dû re jî tu " "nikare betal bike." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." -msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire" +msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -649,17 +662,17 @@ msgstr "" "Ji bo pergala te bilindkirin tuneye. Karê bilindkirinê wê a niha were " "betalkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s rake" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s saz bike" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s bilind bike" @@ -692,12 +705,14 @@ msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Ev daxistin dê derdora %s bidomîne bi têkiliya 1Mbit DSL û derdora %s bi " +"56k modem." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Destpêkirina nû pêwîst e" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -788,7 +803,7 @@ msgstr "Bide _ser" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "Çewtiyê _Ragihîne" +msgstr "_çewtiyeke sepanê" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -804,7 +819,7 @@ msgstr "_Destpêkirina nûjenkirinê" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "Nîşeyên weşandinê nayên dîtin" +msgstr "nîşeyên derxistinan nayên dîtin" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " @@ -907,12 +922,16 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Lîsteya guhertinan hîna jî ne derbasbare.\n" +"ji kerema xwe re piştre cardin biceribîne." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Daxistina lîsteya guhertinan biserneket.\n" +"Ji kerema xwe re girêdana internetê kontrol bike." #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 @@ -1002,7 +1021,7 @@ msgstr "(Mezinahî:%s)" #: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" -msgstr "Belavkariya ku tu bikar tîne nayê destekirin" +msgstr "Belavkariya ku tu êdî bikar tîne nayê destekirin" #: ../UpdateManager/UpdateManager.py:844 msgid "" @@ -1032,9 +1051,7 @@ msgid "" msgstr "" "Sazkirin an jî rakirina nivîsbariyê qet ne gengaz e. Ji kerema xwe berî her " "tiştî vê pirsgirêkê bi gerînendeyê pakêtan ya \"Synaptic\" and jî bi fermana " -"\"sudo apt-get install -f\" re di termînalê de çareser bike.\r\n" -"\r\n" -"— By ElîxanLoran on 2006-08-25 06:29:14 UTC (2 more)" +"\"sudo apt-get install -f\" re di termînalê de çareser bike." #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 @@ -1065,6 +1082,9 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Divê tu bi destan rojane bikî\n" +"Pergala ta rê nade rojanekirina jixweber. Tu dikarî vê tevgerê mîheng bikî " +"Software Sources di tabloya rojanekirina internetêde." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1099,7 +1119,6 @@ msgid "Description" msgstr "Daxuyanî" #: ../data/glade/UpdateManager.glade.h:12 -#, fuzzy msgid "Release Notes" msgstr "Nîşeyên Weşanê" @@ -1156,7 +1175,6 @@ msgid "_Install Updates" msgstr "Rojanekirinan _Saz bike" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" msgstr "_Bilindkirin" @@ -1194,6 +1212,13 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Ji bo pêşvebirina azmûna Ubuntuyê ya bikarhêneran ji kerema xwe re tev li " +"pêşbirka populertiyê bibe. Heke tu beşdar bibe, wê nivîsbariyên ku tê de tu " +"agahiyên şexsî tê de tuneye û bikaranîna van tiştan wê bi hefteyî ji projeya " +"Ubuntuyê re were ragihandin.\n" +"\n" +"Encam wê ji bo pêşvebirina desteka ku ji bo sepanan û ji bo diyarkirina " +"rêzkirina lêgerînan were bikaranîn." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1208,9 +1233,8 @@ msgid "D_elete downloaded software files:" msgstr "Dosiyên nivîsbariyê yên daxistî _jê bibe:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Daxistin hatiye temam kirin" +msgstr "Daxistin ji:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1360,8 +1384,8 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"Bixweber kontrol bike bê ka guhertoya nû ya belavkariya mevcûd heye yan na û " -"(heke pêkan be) bê ka bilindkirinan pêşkeş dike yan na." +"Bixweber kontrol bike bê ka guhertoya nû ya belavkariya mevcûd heye yan na " +"û (heke pêkan be) bê ka bilindkirinan pêşkeş dike yan na." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1373,6 +1397,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" +"Heke rojanekirinên jixweber ne çalak be, pêwiste tu qenalê lîsteyê bi destan " +"daxî. Ev vebijark xuyakirina bibîrxistker vedişêre." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1391,6 +1417,7 @@ msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" +"Rewşa pêşdebirên ku di wan de lîsteya guhertinan û şîrove hene , ambar dike" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1423,9 +1450,8 @@ msgstr "Ji bo cîhazan ajokerên ku çavkaniyên wan girtî ne" #. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Neazad (Multiverse)" +msgstr "Nivîsbariya bi sînor" #. Description #: ../data/channels/Ubuntu.info.in:25 @@ -1440,7 +1466,7 @@ msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Çavkaniya xwezayî ya li gorî bingeha nermalavê" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1455,9 +1481,8 @@ msgstr "" #. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Neazad (Multiverse)" +msgstr "Ajokerên ne azad" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 @@ -1466,9 +1491,8 @@ msgstr "Ji bo cîhazan ajokarên xwedî-bawername " #. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Neazad (Multiverse)" +msgstr "Nivîsbariya bi sînor" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 @@ -1573,7 +1597,7 @@ msgstr "Mafê kopîkrinê yê sînorkirî" #. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekariyê" +msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekarî" #. Description #: ../data/channels/Ubuntu.info.in:223 diff --git a/po/lt.po b/po/lt.po index bc848fe7..7693c7ea 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -160,20 +160,20 @@ msgstr "" "programa. Prieš tęsdami pirmiausia sutaisykite juos naudodamiesi „synaptic“ " "arba „apt-get“." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Negalima atnaujinti reikiamų metapaketų" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "tai kaip klaidą." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "Nepavyko patvirtinti kelių paketų autentiškumo. Tai gali būti laikina tinklo " "problema. Galite bandyti vėliau. Žemiau yra nepatvirtintų paketų sąrašas." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Negalima įdiegti „%s“" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,12 +211,12 @@ msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 #, fuzzy msgid "Can't guess meta-package" msgstr "Negalima nuspėti meta paketo" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -320,11 +320,11 @@ msgstr "" "Juos galėsite vėl įjungti, kai baigsite atnaujinimą su „programų savybių“ " "įrankiu arba „Synaptic“ paketų tvarkykle." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Klaida atnaujinant" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -332,11 +332,11 @@ msgstr "" "Atnaujinant iškilo problema. Tai greičiausiai kokia nors tinklo problema, " "todėl iš naujo patikrinkite tinklo jungtis ir bandykite dar." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Diske nepakanka laisvos vietos" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +365,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. " "Dabar bus vykdomas atkūrimas (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +377,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo " "laikmeną ir bandykite dar. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -396,23 +396,23 @@ msgstr "" "Jei nesate įjungę „universe“ skyriaus, šie paketai bus siūlomi pašalinimui " "kitame žingsnyje." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Praleisti šį žingsnį" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "P_ašalinti" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,28 +421,28 @@ msgstr "" "pranešime. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Perkraunama sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Tikrinama paketų valdyklė" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Ruošiamas atnaujinimas" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -452,15 +452,15 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Netinkama paketo informacija" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -473,19 +473,19 @@ msgstr "" "paketo „%s“.\n" "Tai labai rimta problema, praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Klausiama patvirtinimo" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Atnaujinama" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." @@ -554,11 +554,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Nerasta komanda „diff“" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Įvyko lemtinga klaida" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -574,7 +574,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -582,7 +582,7 @@ msgstr[0] "Bus pašalintas %s paketas." msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -590,7 +590,7 @@ msgstr[0] "Bus įdiegtas %s naujas paketas." msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -598,7 +598,7 @@ msgstr[0] "Bus atnaujintas %s paketas." msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -609,7 +609,7 @@ msgstr "" "\n" "Turite atsisiųsti viso %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -617,35 +617,35 @@ msgid "" msgstr "" "Atnaujinimas gali užtrukti keletą valandų ir vėliau jo negalima atšaukti." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Pašalinti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Įdiegti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Atnaujinti %s" @@ -679,11 +679,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Reikia perkrauti kompiuterį" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/lv.po b/po/lv.po index 8ef74981..0de6e184 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-09-05 20:00+0000\n" "Last-Translator: Raivis Dejus \n" "Language-Team: Latvian \n" @@ -155,20 +155,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nevar aprēķināt atjauninājumu" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -177,34 +177,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nevar instalēt '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -294,21 +294,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -317,15 +317,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -334,21 +334,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -357,65 +357,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Izņemt" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -425,19 +425,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -503,11 +503,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -517,7 +517,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -525,7 +525,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -533,7 +533,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -541,7 +541,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -549,39 +549,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -615,11 +615,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/mk.po b/po/mk.po index 2d3da4e4..557290cc 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -161,20 +161,20 @@ msgstr "" "Вашиот систем содржи оштетени пакети кои не може да се поправат со овој " "софтвер. Ве молам поправете ги со Синаптик или apt-get пред да продолжите." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Не може да се надградат потребните мета пакети" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Важен пакет мора да се отстрани" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Не може да се одреди надградбата" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "како бубачка." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Грешка при автентикација на некои пакети" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "Не можат да се автентицираат некои пакети. Може да има мрежни пречки. " "Обидете се повторно. Видете подолу за листа на неавтентицирани пакети." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира %s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -214,11 +214,11 @@ msgstr "" "како бубачка. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Не може да се погоди мета пакетот" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -324,12 +324,12 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Грешка при отстранување на клучот" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -337,11 +337,11 @@ msgstr "" "Се случи проблем при надградбата. Ова е обично некој проблем со мрежата и Ве " "молиме да ја проверете Вашата мрежна врска и да се обидете повторно." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Нема доволно место на дискот" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +353,15 @@ msgstr "" "поранешни инсталации со помош на 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Дали сакате да ја започнете надградбата?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Не можам да ги инсталирам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -370,11 +370,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Не можам да ги симнам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -382,11 +382,11 @@ msgstr "" "Надградбата сега прекинува. Проверете ја Вашата интернет врска или медиумот " "за инсталација и обидете се повторно. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -395,24 +395,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Да ги отстранам застарените пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Прескокни го овој чекор" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Отстрани" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 #, fuzzy msgid "Error during commit" msgstr "Грешка во извршувањето" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,29 +421,29 @@ msgstr "" "повеќе информации. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "Веќе работи друг менаџер за пакети" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Преземам промени" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -453,15 +453,15 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Ги ажурирам информациите за складиштето" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Невалидни информации за пакетот" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,20 +471,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Прашувам за потврда" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Надградбата е завршена" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Барам застарен софтвер" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Надградбата на системот е завршена." @@ -551,11 +551,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Командата „diff“ не беше пронајдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Се случи фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -565,7 +565,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -573,7 +573,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -581,7 +581,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -589,7 +589,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -597,42 +597,42 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да спречите загуба на податоци, затворете ги сите отворени апликации и " "документи." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Отстрани %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Надгради %s" @@ -666,11 +666,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Потребно е рестартирање" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/mr.po b/po/mr.po new file mode 100644 index 00000000..9aefc25e --- /dev/null +++ b/po/mr.po @@ -0,0 +1,1502 @@ +# Marathi translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Marathi \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "" + +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#. TRANSLATORS: %s is a country +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:238 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:242 +msgid "A essential package would have to be removed" +msgstr "" + +#. FIXME: change the text to something more useful +#: ../DistUpgrade/DistUpgradeCache.py:245 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. FIXME: maybe ask a question here? instead of failing? +#: ../DistUpgrade/DistUpgradeCache.py:280 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:281 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:346 +#, python-format +msgid "Can't install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:347 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#. FIXME: provide a list +#: ../DistUpgrade/DistUpgradeCache.py:354 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:355 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:76 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:108 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:157 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:250 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:268 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:303 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:310 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:364 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:365 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:374 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:375 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:447 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:468 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:469 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:487 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:488 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:524 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:525 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:560 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:572 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:573 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:585 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:641 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:681 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:682 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:705 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:730 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:731 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:743 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:747 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:754 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:759 +msgid "System upgrade is complete." +msgstr "" + +#. print "mediaChange %s %s" % (medium, drive) +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#. self.expander.set_expanded(True) +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 +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 aborts " +"now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#. FIXME: this should go into DistUpgradeController +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../UpdateManager/UpdateManager.py:622 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#. 1Mbit = 1024 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:111 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:112 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#. app.openCache() +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#. no script file found in extracted tarbal +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#. TRANSLATORS: updates from an 'unknown' origin +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:478 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:539 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:566 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:572 +msgid "_Check All" +msgstr "" + +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:633 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:666 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:668 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:719 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:826 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:830 +#, python-format +msgid "Version %s" +msgstr "" + +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:843 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:844 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:863 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:902 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:903 +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 terminal to fix " +"this issue at first." +msgstr "" + +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#. BaseURI +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#. BaseURI +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#. CompDescription +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#. CompDescription +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" diff --git a/po/ms.po b/po/ms.po index 804258b0..a821a844 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -161,20 +161,20 @@ msgstr "" "menggunakan sofwer ini. Sila baiki dahulu menggunakan synaptic atau apt-get " "sebelum meneruskan." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "penaikkan. Sila laporkan ini sebagai ralat pepijat." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Ralat mengesahkan sesetengah pakej" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "masalah sementara rangkaian. Anda mungkin mahu mencuba lagi kemudian. Lihat " "dibawah untuk pakej-pakej yang belum disahkan." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat memasang '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "pepijat. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -335,11 +335,11 @@ msgstr "" "selepas penaikkan taraf menggunakan alatan 'software-properties' ataupun " "'synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Ralat semasa pengemaskinian." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -348,11 +348,11 @@ msgstr "" "yang berkaitan dengan masaalah rangkaian, sila periksa dan cuba lagi " "sambungan rangkaian anda." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Muatak cakera keras tidak mencukupi." -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +364,15 @@ msgstr "" "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Tidak dapat memasang pakej-pakej penaikkan taraf." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -384,11 +384,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sistem anda mungkin tidak stabil. " "Sistem 'recovery' telah dijalankan (dpkg --configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +396,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sila semak sambungan 'internet' atau " "media pemasangan anda dan cuba lagi. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -414,50 +414,50 @@ msgstr "" "Jika anda tidak megaktifkan 'universe', pakej-pakej ini akan dicadangkan " "untuk dikeluarkan di peringkat selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Keluarkan pakej-pakej yang sudah luput?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Abaikan langkah ini" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -467,15 +467,15 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -485,19 +485,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Mengemaskini" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Mencari perisian yang lapuk" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Naiktaraf sistem sempurna." @@ -563,11 +563,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -577,28 +577,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" msgstr[1] "Satu pakej yang perlu terpaksa dikeluarkan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -606,39 +606,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Buang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Pasang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Naiktaraf %s" @@ -672,11 +672,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/nb.po b/po/nb.po index 54cffe84..5eacfe93 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -166,20 +166,20 @@ msgstr "" "av dette programmet. Vennligst rett opp i dette ved å bruke Synaptic eller " "apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke oppgradere nødvendige meta-pakker" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -191,11 +191,11 @@ msgstr "" "rapporter dette som en feil." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -205,12 +205,12 @@ msgstr "" "nettverksproblem, så du bør prøve igjen senere. Se under for listen over " "pakker som ikke kunne autentiseres." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -337,11 +337,11 @@ msgstr "" "aktivere dem etter oppgraderingen ved hjelp av verktøyet 'Egenskaper for " "programvare' eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +350,11 @@ msgstr "" "problem med nettverkstilkoblingen. Vennligst sjekk nettverkstilkoblingen din " "og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Ikke nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -366,15 +366,15 @@ msgstr "" "bruke 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Kunne ikke installere oppgraderingene" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,11 +386,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon " "ble forsøkt kjørt (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Kunne ikke laste ned alle oppgraderingene." -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +398,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Vennligst sjekk internet-tilkoblingen eller " "installasjonsmediet og prøv på nytt. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -417,23 +417,23 @@ msgstr "" "Hvis du ikke har 'universe' aktivert vil disse pakkene bli foreslått fjernet " "i neste steg." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Ønsker du å fjerne utdaterte pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Hopp over dette punktet" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Feil ved commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,28 +442,28 @@ msgstr "" "informasjon. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Forbereder oppgraderingen" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -473,15 +473,15 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -494,19 +494,19 @@ msgstr "" "pakken '%s'.\n" "Dette indikerer en alvorlig feil, vennligst rapportér denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Spør om bekreftelse" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Oppgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" @@ -575,11 +575,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' ble ikke funnet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "En uopprettelig feil oppsto" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -593,28 +593,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -625,7 +625,7 @@ msgstr "" "\n" "Du må laste ned totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -634,34 +634,34 @@ msgstr "" "Oppgraderingen kan ta flere timer og kan ikke avbrytes på noe senere " "tidspunkt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Oppgradér %s" @@ -695,11 +695,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Omstart er nødvendig" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ne.po b/po/ne.po index d47a5543..774056fe 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,23 +180,23 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -204,11 +204,11 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -298,22 +298,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -322,15 +322,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -362,52 +362,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -415,15 +415,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -433,20 +433,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "स्तरवृद्धि समाप्त" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -513,11 +513,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -527,28 +527,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -556,40 +556,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -623,11 +623,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/nl.po b/po/nl.po index d7f74737..252ff3de 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:13+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-21 13:15+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgstr "Na %s dagen" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" msgstr "%s updates" @@ -84,7 +84,6 @@ msgid "Nearest server" msgstr "dichtsbijzijnde server" #: ../SoftwareProperties/SoftwareProperties.py:345 -#, fuzzy msgid "Custom servers" msgstr "Andere servers" @@ -162,20 +161,20 @@ msgstr "" "met deze software. Repareer deze eerst met synaptic of apt-get voordat u " "verder gaat." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan de vereiste meta-pakketten niet upgraden" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,11 +187,11 @@ msgstr "" "voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -203,12 +202,12 @@ msgstr "" "proberen. Hieronder vindt u een lijst met pakketten waarvan de echtheid niet " "vastgesteld is." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan '%s' niet installeren" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +216,11 @@ msgstr "" "fout te rapporteren. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -302,7 +301,7 @@ msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" -msgstr "De standaard bronnenlijst genereren?" +msgstr "De standaard bronnenlijst aanmaken?" #: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format @@ -344,11 +343,11 @@ msgstr "" "kunt ze na de upgrade weer inschakelen met het programma ‘software-" "eigenschappen’ of met ‘synaptic’." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fout tijdens het updaten" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -356,11 +355,11 @@ msgstr "" "Tijdens het updaten is er iets misgegaan. Dit komt meestal door " "netwerkproblemen. Controleer uw netwerkverbinding en probeer opnieuw." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Niet genoeg vrije schijfruimte" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -372,15 +371,15 @@ msgstr "" "vorige installaties via 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -395,11 +394,11 @@ msgstr "" "Rapporteer deze fout voor het pakket 'update-manager' en voeg hierbij de " "bestanden die zich in /var/log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Kon de upgrades niet downloaden" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -407,11 +406,11 @@ msgstr "" "De upgrade wordt nu afgebroken. Controleer uw internetverbinding of het " "installatiemedium en probeer opnieuw. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Ondersteuning voor bepaalde toepassingen is beëindigd." -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -426,23 +425,23 @@ msgstr "" "geactiveerd heeft zal bij de volgende stap gevraagd worden om deze pakketten " "te verwijderen." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Overbodige pakketten verwijderen?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Deze stap overslaan" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Verwijderen" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fout bij het toepassen" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -451,27 +450,27 @@ msgstr "" "voor meer informatie. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Backport van ‘%s’ ophalen" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Voorbereiden van de upgrade is mislukt" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -482,15 +481,15 @@ msgstr "" "Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " "voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -505,19 +504,19 @@ msgstr "" "het pakket ‘update-manager’ en voeg daarbij de bestanden die zich in /var/" "log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Vragen om bevestiging" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Bezig met upgraden" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Zoeken naar overbodige software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." @@ -532,7 +531,7 @@ msgid "Fetching is complete" msgstr "Het downloaden is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" @@ -543,7 +542,7 @@ msgid "About %s remaining" msgstr "Ongeveer %s resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Downloaden van bestand %li uit %li" @@ -590,11 +589,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "De opdracht 'diff' is niet gevonden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Er is een ernstige fout ontstaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -609,29 +608,29 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakket zal verwijderd worden." msgstr[1] "%d pakketten zullen verwijderd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nieuw pakket zal geïnstalleerd worden." msgstr[1] "%d nieuwe pakketten zullen geïnstalleerd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakket zal een upgrade krijgen" msgstr[1] "%d pakketten zullen een upgrade krijgen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format msgid "" "\n" "\n" @@ -641,8 +640,7 @@ msgstr "" "\n" "U moet in totaal %s downloaden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -650,19 +648,19 @@ msgstr "" "Het upgraden kan enkele uren in beslag nemen en kan tussentijds niet worden " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -670,17 +668,17 @@ msgstr "" "Er zijn geen upgrades beschikbaar voor uw systeem. De upgrade wordt nu " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s verwijderen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s installeren" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s upgraden" @@ -716,11 +714,11 @@ msgstr "" "Deze download duurt ongeveer %s met een 1Mbit DSL-verbinding of %s met een " "56k modem" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "De computer moet opnieuw opgestart worden" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -772,7 +770,6 @@ msgid "Difference between the files" msgstr "Verschillen tussen de bestanden" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Downloaden en installeren van de upgrades" @@ -895,7 +892,6 @@ msgid "Verfication failed" msgstr "Verificatie is mislukt" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " @@ -987,9 +983,8 @@ msgid "_Uncheck All" msgstr "Alles _deselecteren" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "_Controleren" +msgstr "Alles _controleren" #. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 @@ -1028,7 +1023,7 @@ msgstr "Versie %s" #. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 -#, fuzzy, python-format +#, python-format msgid "(Size: %s)" msgstr "(Grootte: %s)" diff --git a/po/nn.po b/po/nn.po index 5284803f..7acf476e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" @@ -158,20 +158,20 @@ msgstr "" "Systemet ditt inneheld øydelagde pakkar som ikkje kunne reparerast med denne " "programvaren. Reparer dei med synaptic eller apt-get før du held fram." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ein naudsynt pakke vil måtte fjernast" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kunne ikkje forberede oppgraderinga" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -180,11 +180,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Kunne ikkje autentisere somme pakkar" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -194,12 +194,12 @@ msgstr "" "nettverksproblem, så du bør prøve att seinare. Sjå under lista over pakkar " "som ikkje kunne autentiserast." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan ikkje installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -208,11 +208,11 @@ msgstr "" "feilen. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan ikkje gjette på meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -316,11 +316,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -328,11 +328,11 @@ msgstr "" "Eit problem oppsto under oppdateringa. Dette er vanlegvis ei form for " "nettverksproblem. Sjekk nettverkskoblinga di og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Ikkje nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -341,15 +341,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -358,21 +358,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -381,65 +381,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -449,19 +449,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -527,11 +527,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -541,28 +541,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -570,39 +570,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -636,11 +636,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/no.po b/po/no.po index 0459ea47..ee9f5505 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -181,23 +181,23 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -300,22 +300,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Feil under fjerning av nøkkel" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,52 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "En annen pakkehåndterer kjører" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Laster ned endringer" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -418,15 +418,15 @@ msgid "" msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -436,21 +436,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 #, fuzzy msgid "Asking for confirmation" msgstr "Undersøker systemkonfigurasjon" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Oppgradering fullført" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -517,11 +517,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -531,28 +531,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -560,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, fuzzy, python-format msgid "Remove %s" msgstr "Detaljer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, fuzzy, python-format msgid "Install %s" msgstr "_Installer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Oppgradering fullført" @@ -627,11 +627,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/oc.po b/po/oc.po index 564e980b..83b9f84e 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:16+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 10:01+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" "Language-Team: Occitan (post 1500) \n" @@ -83,7 +83,7 @@ msgstr "Servidor per %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Servidor mai prèp" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" @@ -118,7 +118,7 @@ msgstr "Error al moment d'importar lo fichièr seleccionat" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -"Lo fichièr seleccionat es benlèj pas una clau GPG o es possible que siá " +"Lo fichièr seleccionat es benlèu pas una clau GPG o es possible que siá " "corrumput." #: ../SoftwareProperties/SoftwareProperties.py:992 @@ -131,7 +131,7 @@ msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -159,20 +159,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" -msgstr "Impossible calcular la mesa a jorn" +msgstr "Impossible de calcular la mesa a jorn" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -181,34 +181,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -230,6 +230,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"I a agut una error al moment d'apondre lo CD, anam anullar la mesa a jorn. " +"Raportatz aquò coma una anomalia s'es un CD valid d'Ubuntu.\n" +"\n" +"Lo messatge d'error era :\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" @@ -298,21 +303,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Error al moment de metre a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Pas pro d'espaci liure" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +326,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" -msgstr "Impossible installar las mesas a jorn" +msgstr "Impossible d'installar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,21 +343,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" -msgstr "Impossible descargar las mesas a jorn" +msgstr "Impossible de descargar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -361,65 +366,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Suprimir los paquetatges obsolets ?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Suprimir" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" -msgstr "" +msgstr "Verificacion del gestionari de paquetatges" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Preparacion de la mesa a jorn impossibla" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -429,19 +434,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Demanda de confirmacion" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Mesa a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Recèrca de logicials obsolets" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." @@ -453,12 +458,12 @@ msgstr "Inserissètz lo disc '%s' dins lo legidor '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" -msgstr "" +msgstr "La telecarga dels fichièrs es terminada" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "Telecarga del fichièr %li sus %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 @@ -469,7 +474,7 @@ msgstr "Environ %s restantas" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "Telecarga del fichièr %li sus %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) @@ -496,6 +501,8 @@ msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" +"Remplaçar lo fichièr de configuracion personalisat\n" +"'%s' ?" #: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" @@ -507,11 +514,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Impossible de trobar la comanda 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" -msgstr "" +msgstr "I a agut una error fatala" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -521,28 +528,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Anam suprimir %d paquetatge." +msgstr[1] "Anam suprimir %d paquetatges." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Anam installar %d paquetatge nòu." +msgstr[1] "Anam installar %d paquetatges nòus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Anam metre a jorn %d paquetatge." +msgstr[1] "Anam metre a jorn %d paquetatges." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -553,39 +560,39 @@ msgstr "" "\n" "Debètz telecargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" -msgstr "" +msgstr "Vòstre sistèma es a jorn" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Suprimir %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Metre a jorn %s" @@ -598,12 +605,12 @@ msgstr "%li jorns %li oras %li minutas" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li jorns %li oras" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutas" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format @@ -619,11 +626,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Debètz tornar aviar l'ordenador" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -647,15 +654,15 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" +msgstr "Tornatz aviar lo sistèma per terminar la mesa a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "" +msgstr "Aviar la mesa a jorn ?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Mesa a jorn d'Ubuntu cap a la version 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -670,9 +677,8 @@ msgid "Difference between the files" msgstr "Diferéncia entre los fichièrs" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Impossible installar las mesas a jorn" +msgstr "Impossible d'installar las mesas a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -692,11 +698,11 @@ msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Anullar la mesa a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Contunhar" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -709,7 +715,7 @@ msgstr "_Remplaçar" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "_Raportar una anomalia" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -721,7 +727,7 @@ msgstr "_Contunhar la mesa a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Aviar la mesa a jorn" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -737,7 +743,7 @@ msgstr "Impossible de telecargar las informacions de version" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "Verificatz vòstra connexion internet." +msgstr "Verificatz vòstra connection internet." #. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 @@ -775,7 +781,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "Impossible de traire" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" @@ -832,7 +838,7 @@ msgstr "" #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "" +msgstr "Mesas a jorn de seguretat importantas" #. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 @@ -850,15 +856,13 @@ msgid "Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "Mesas a jorn per internet" +msgstr "Mesas a jorn de la distribucion" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 -#, fuzzy msgid "Other updates" -msgstr "Mesas a jorn per internet" +msgstr "Autras mesas a jorn" #: ../UpdateManager/UpdateManager.py:478 #, python-format @@ -867,16 +871,15 @@ msgstr "Version %s : \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "Telecarga de la tièra de las modificacions" #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "_Verificar" +msgstr "Tot _verificar" #. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 @@ -900,9 +903,8 @@ msgid "Update is complete" msgstr "La mesa a jorn es terminada" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "Mesas a jorn per internet" +msgstr "Verificacion de mesas a jorn" #: ../UpdateManager/UpdateManager.py:826 #, python-format @@ -910,9 +912,9 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "Version %s :" +msgstr "Version %s" #. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 @@ -934,7 +936,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Una version nòva '%s' es disponibla" #. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 @@ -951,18 +953,18 @@ msgstr "" #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Pas cap" #. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 ko" #. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f ko" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 @@ -985,18 +987,11 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:5 #, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Error a moment d'examinar lo CD\n" -"\n" -"%s" +msgstr "Impossible d'installar totas las mesas a jorn" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "" -"Error a moment d'examinar lo CD\n" -"\n" -"%s" +msgstr "Aviada del gestionari de paquetatges" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1004,7 +999,7 @@ msgstr "Cambis" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Cambis e descripcion de la mesa a jorn" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1058,11 +1053,11 @@ msgstr "_Verificar" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" -msgstr "" +msgstr "Mesa a jorn de la _distribucion" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_Amagar aquestas informacions a partir d'ara" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" @@ -1076,16 +1071,15 @@ msgstr "_Metre a jorn" #: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" -msgstr "Cambis" +msgstr "cambis" #: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "mesas a jorn" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Mesas a jorn per internet" +msgstr "Mesas a jorn automaticas" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" @@ -1096,9 +1090,8 @@ msgid "Internet updates" msgstr "Mesas a jorn per internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Mesas a jorn per internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1112,7 +1105,6 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" msgstr "Apondre un CD-ROM" @@ -1122,7 +1114,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "" +msgstr "Suprimir los fichièrs dels logicials t_elecargats :" #: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy @@ -1360,9 +1352,8 @@ msgstr "" #. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Pas liure (multiverse)" +msgstr "Pilòts pas liures" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 @@ -1397,21 +1388,19 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "CD-ROM amb Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:135 -#, fuzzy msgid "Ubuntu 5.10 Security Updates" -msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +msgstr "Mesas a jorn de seguretat per Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" -msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +msgstr "Mesas a jorn per Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:145 @@ -1421,9 +1410,8 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" #. Description #: ../data/channels/Ubuntu.info.in:165 @@ -1437,9 +1425,8 @@ msgstr "" #. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +msgstr "Mesas a jorn de seguretat per Ubuntu 5.04" #. Description #: ../data/channels/Ubuntu.info.in:182 diff --git a/po/pa.po b/po/pa.po index cdedac54..515ff529 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -154,20 +154,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -176,34 +176,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -293,21 +293,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,65 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,20 +424,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -503,11 +503,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -517,28 +517,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -546,39 +546,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -612,11 +612,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/pl.po b/po/pl.po index 6e99e672..d281aa24 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,14 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager cvs\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-10 08:44+0000\n" -"Last-Translator: Tomasz Dominikowski \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-21 12:05+0000\n" +"Last-Translator: Dominik Zablotny \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -111,7 +112,7 @@ msgstr "Zaimportuj klucz" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Błąd podczas importu wybranego pliku" +msgstr "Błąd podczas importowania wybranego pliku" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -157,20 +158,20 @@ msgstr "" "kontynuowaniem należy je naprawić używając Synaptic Menedżer Pakietów lub " "apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Nie można zaktualizować wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,11 +184,11 @@ msgstr "" "pliki z folderu /var/log/dist-upgrade/ ." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -197,23 +198,23 @@ msgstr "" "sieci. Można spróbować ponownie później. Poniżej znajduje się lista " "nieuwierzytelnionych pakietów." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nie można zainstalować \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -322,7 +323,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" -msgstr "Źródła stron niezależnych zostały wyłączone" +msgstr "Źródła niezależnych dostawców zostały wyłączone" #: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" @@ -330,15 +331,15 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Niektóre kanały osób trzecich w pliku sources.list zostały wyłączone. Możesz " -"ponownie je włączyć po aktualizacji używając narzędzia \"software-properties" -"\" lub programu Synaptic." +"Niektóre kanały niezależnych dostawców w pliku sources.list zostały " +"wyłączone. Możesz ponownie je włączyć po aktualizacji używając narzędzia " +"\"software-properties\" lub programu Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Błąd podczas aktualizacji" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +347,11 @@ msgstr "" "Wystąpił problem podczas aktualizacji. Zazwyczaj wynika on z problemów z " "siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Zbyt mało miejsca na dysku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +363,15 @@ msgstr "" "\"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -384,11 +385,11 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +397,11 @@ msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz " "dysk instalacyjny i spróbować ponownie. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Wsparcie dla niektórych aplikacji zostało zakończone" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -414,23 +415,23 @@ msgstr "" "Jeśli nie włączyłeś repozytoriów utrzymywanych przez społeczność (universe), " "zostanie zasugerowane ich usunięcie w następnym kroku." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Usunąć niepotrzebne pakiety?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Pomiń ten krok" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Usuń" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -439,27 +440,27 @@ msgstr "" "poniższych wiadomościach. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Pobieranie backportu \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Przygotowanie aktualizacji nie powiodło się" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -469,15 +470,15 @@ msgstr "" "jako błąd pakietu \"update-manager\" i dołączyć do raportu pliki z /var/log/" "dist-upgrade ." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -491,19 +492,19 @@ msgstr "" "To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-manager" "\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Pytanie o potwierdzenie" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Aktualizacja w toku" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." @@ -575,11 +576,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Polecenie \"diff\" nie zostało odnalezione" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Wystąpił błąd krytyczny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -594,7 +595,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -602,7 +603,7 @@ msgstr[0] "%d pakiet zostanie usunięty." msgstr[1] "%d pakiety zostaną usunięte." msgstr[2] "%d pakietów zostanie usuniętych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -610,7 +611,7 @@ msgstr[0] "%d nowy pakiet zostanie zainstalowany." msgstr[1] "%d nowe pakiety zostaną zainstalowane." msgstr[2] "%d nowych pakietów zostanie zainstalowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -618,7 +619,7 @@ msgstr[0] "%d pakiet zostanie zaktualizowany." msgstr[1] "%d pakiety zostaną zaktualizowane." msgstr[2] "%d pakietów zostanie zaktualizowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -629,7 +630,7 @@ msgstr "" "\n" "Musisz pobrać w sumie %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -637,35 +638,35 @@ msgstr "" "Pobieranie i instalacja aktualizacji może potrwać kilka godzin i nie może " "zostać przerwana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Brak dostępnych aktualizacji. Aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Usuń %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instaluj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aktualizuj %s" @@ -701,11 +702,11 @@ msgstr "" "Pobieranie może trwać około %s przy łączu 1 Mbit i około %s przy łączu " "56kbit." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Wymagane ponowne uruchomienie komputera" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -1174,8 +1175,9 @@ msgid "_Install Updates" msgstr "_Instaluj aktualizacje" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy msgid "_Upgrade" -msgstr "" +msgstr "_Uaktualnij" #: ../data/glade/UpdateManager.glade.h:26 msgid "changes" @@ -1380,7 +1382,7 @@ msgstr "Wyświetl i zainstaluj dostępne aktualizacje" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "Menedżer aktualizacji" +msgstr "Menadżer aktualizacji" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1964,6 +1966,7 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Proprietary drivers for devices (restricted) " #~ msgstr "Własnościowe sterowniki dla urządzeń (restricted) " +#, fuzzy #~ msgid "" #~ "Software that is restricted by copyright or legal issues (multiverse)" #~ msgstr "" diff --git a/po/ps.po b/po/ps.po new file mode 100644 index 00000000..ee20c5a6 --- /dev/null +++ b/po/ps.po @@ -0,0 +1,1498 @@ +# Pushto translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pushto \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "" + +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#. TRANSLATORS: %s is a country +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:238 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:242 +msgid "A essential package would have to be removed" +msgstr "" + +#. FIXME: change the text to something more useful +#: ../DistUpgrade/DistUpgradeCache.py:245 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. FIXME: maybe ask a question here? instead of failing? +#: ../DistUpgrade/DistUpgradeCache.py:280 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:281 +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 a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:346 +#, python-format +msgid "Can't install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:347 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#. FIXME: provide a list +#: ../DistUpgrade/DistUpgradeCache.py:354 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:355 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:76 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:108 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:157 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:250 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:268 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:303 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:310 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:364 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:365 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:374 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:375 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" + +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:447 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:468 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:469 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:487 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:488 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:524 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:525 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:560 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:572 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:573 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:585 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:641 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:681 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:682 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:705 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:730 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:731 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:743 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:747 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:754 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:759 +msgid "System upgrade is complete." +msgstr "" + +#. print "mediaChange %s %s" % (medium, drive) +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#. self.expander.set_expanded(True) +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 +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 aborts " +"now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#. FIXME: this should go into DistUpgradeController +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../UpdateManager/UpdateManager.py:622 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#. 1Mbit = 1024 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:111 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:112 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#. app.openCache() +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#. no script file found in extracted tarbal +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#. TRANSLATORS: updates from an 'unknown' origin +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:478 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:539 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:566 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:572 +msgid "_Check All" +msgstr "" + +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:633 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" + +#: ../UpdateManager/UpdateManager.py:666 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:668 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:719 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:826 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:830 +#, python-format +msgid "Version %s" +msgstr "" + +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:843 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:844 +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 " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:863 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:902 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:903 +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 terminal to fix " +"this issue at first." +msgstr "" + +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#. BaseURI +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#. BaseURI +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#. CompDescription +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#. CompDescription +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" diff --git a/po/pt.po b/po/pt.po index 55ff5562..4ea5cbbf 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 11:04+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -159,20 +159,20 @@ msgstr "" "este software. Por favor corrija-os usando o synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível actualizar os meta-pacotes necessários" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -185,11 +185,11 @@ msgstr "" "contidos em /var/log/dist-upgrade/ no seu relatório de erro." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -199,12 +199,12 @@ msgstr "" "rede transitório. Pode tentar novamente mais tarde. Verifique abaixo uma " "lista de pacotes não autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Impossível de instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -338,11 +338,11 @@ msgstr "" "reactivá-las depois da actualização com a ferramenta 'propriedades-software' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Erro durante a actualização" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +351,11 @@ msgstr "" "tipo de problema na rede, por favor verifique a sua ligação à rede e volte a " "tentar." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Não existe espaço livre em disco suficiente" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -367,15 +367,15 @@ msgstr "" "usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Impossível de instalar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +389,11 @@ msgstr "" "Por favor relate este erro sobre o pacote 'update-manager' e inclua os " "ficheiros contidos em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Impossível de descarregar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +401,11 @@ msgstr "" "A actualização abortará agora. Por favor verifique a sua ligação à internet " "ou media de instalação e volte a tentar. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações já terminou." -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +419,23 @@ msgstr "" "Caso não tenha activado o software mantido pela comunidade (universe), irá " "ser sugerida a remoção destes pacotes no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Saltar Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Erro ao submeter" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,27 +444,27 @@ msgstr "" "abaixo para mais informação. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "A obter backport de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "A preparação da actualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -474,15 +474,15 @@ msgstr "" "reporte este erro no pacote 'update-manager' e inclua os ficheiros contidos " "em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "A Actualizar informação de repositórios" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informação de pacotes inválida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -497,19 +497,19 @@ msgstr "" "'update-manager' e inclua os ficheiros contidos em /var/log/dist-upgrade/ no " "relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "A pedir confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "A actualizar" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." @@ -582,11 +582,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -601,28 +601,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "o pacote %d será removido." msgstr[1] "os pacotes %d serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será actualizado." msgstr[1] "%d pacotes serão actualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -633,7 +633,7 @@ msgstr "" "\n" "Tem que descarregar um de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -641,19 +641,19 @@ msgstr "" "A obtenção e instalação da actualização poderá demorar várias horas e não " "poderá ser cancelada a qualquer instante posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -661,17 +661,17 @@ msgstr "" "Não há actualizações disponíveis para o seu sistema. A actualização será " "agora cancelada." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -707,11 +707,11 @@ msgstr "" "Esta transferência levará aprox. %s com uma ligação DSL de 1Mbit e aprox. %s " "com um modem 56k" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Necessário reiniciar" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index c56c5abc..6458ae12 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,9 +5,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:02+0000\n" -"Last-Translator: Andre Noel \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-21 01:31+0000\n" +"Last-Translator: Rafael Proença \n" "Language-Team: Ubuntu-BR \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -msgstr "Diariamente" +msgstr "Diário" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" @@ -107,11 +107,11 @@ msgstr "Código Fonte" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "Importar chave" +msgstr "Importar Chave" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Erro importando o arquivo selecionado" +msgstr "Erro ao importar o arquivo selecionado" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -121,12 +121,12 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" -msgstr "Erro removendo a chave" +msgstr "Erro ao remover a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -"A chave selecionada não pode ser removida. Por favor reporte isto como um " +"A chave selecionada não pôde ser removida. Por favor reporte isto como um " "bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -157,24 +157,24 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"O seu sistema possui pacotes quebrados que não puderam ser corrigidos com " -"este programa. Por favor, corrija-os primeiro utilizando o Synaptic ou apt-" -"get antes de continuar." +"O seu sistema possui pacotes quebrados que não puderam ser fixados com este " +"programa. Por favor, arrume-os primeiro usando o Synaptic ou apt-get antes " +"de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível atualizar os meta-pacotes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" -msgstr "Não foi possível processar a atualização" +msgstr "Não foi possível calcular a atualização" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,39 +188,39 @@ msgstr "" "contidos em /var/log/dist-upgrade/ no relatório de erros." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" "Não foi possível autenticar alguns pacotes. Isso pode ser devido a um " -"problema momentâneo na rede. Você pode tentar de novo depois. Veja abaixo " -"uma lista dos pacotes não-autenticados." +"problema na rede. Você pode tentar novamente mais tarde. Veja abaixo uma " +"lista dos pacotes não-autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Não foi possível instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Não foi possível instalar um pacote requerido. Por favor relate isto como um " -"erro. " +"Não foi possível instalar um pacote requerido. Por favor reporte isto como " +"um erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" -msgstr "Não foi possível determinar o meta-pacote" +msgstr "Não foi possível adivinhar o meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,7 +232,7 @@ msgstr "" "edubuntu-desktop e não foi possível detectar qual a versão do Ubuntu você " "esta rodando.\n" " Por favor, instale um dos pacotes acima usando o synaptic ou apt-get antes " -"de seguir adiante." +"de continuar." #: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" @@ -288,7 +288,7 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"Durante a busca de informações em seus repositórios nenhuma entrada para " +"Enquanto buscava informações em seus repositórios nenhuma entrada para " "atualizações foi encontrada. Isso pode acontecer se você está executando um " "repositório interno ou se a informação do repositório está desatualizada.\n" "\n" @@ -299,7 +299,7 @@ msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" -msgstr "Gerar fontes padrão?" +msgstr "Gerar sources padrão?" #: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format @@ -312,7 +312,7 @@ msgstr "" "Depois de checar seu 'sources.list' nenhuma entrada válida para '%s' foi " "encontrada.\n" "\n" -"Entradas padrão para '%s' devem ser adicionadas? Se você escolher 'Não' a " +"Entradas padrões para '%s' devem ser adicionadas? Se você escolher 'Não' a " "atualização será cancelada." #: ../DistUpgrade/DistUpgradeControler.py:302 @@ -324,15 +324,14 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"A atualização das informações de repositórios resultou em um arquivo " -"inválido. Por favor relate isso como um erro." +"Atualizando a informações de repositórios resultou em um arquivo inválido. " +"Por favor reporte isso como um erro." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Fontes de terceiros desabilitadas" #: ../DistUpgrade/DistUpgradeControler.py:310 -#, fuzzy 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 " @@ -342,11 +341,11 @@ msgstr "" "pode reabilitá-las após a atualização com a ferramenta 'software-properties' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Erro durante a atualização" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -355,31 +354,31 @@ msgstr "" "problemas de rede, por favor verifique a sua conexão de rede e tente " "novamente." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Não há espaço suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format 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 using 'sudo " "apt-get clean'." msgstr "" -"A atualização será abortada agora. Por favor libere pelo menos %s de espaço " -"de disco no %s. Esvazie sua lixeira e remova pacotes temporários de " +"A atualização cancela agora. Por favor libere pelo menos %s de espaço de " +"disco no %s. Esvazie seu lixo e remova temporariamente pacotes de " "instalações anteriores usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -393,11 +392,11 @@ msgstr "" "Por favor, informe este erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Não foi possível obter as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -405,11 +404,11 @@ msgstr "" "A atualização será abortada agora. Por favor verifique sua conexão à " "Internet ou mídia de instalação e tente de novo. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações foi descontinuado" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -423,52 +422,52 @@ msgstr "" "Se você não tiver habilitado os softwares mantidos pela comunidade " "(universe), esses pacotes serão sugeridos para remoção no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" -msgstr "Remover pacotes obsoletos?" +msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Pular Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Alguns problemas ocorreram durante a limpeza. Por favor veja a mensagem " +"Alguns problemas ocorreram durante a limpeza. Por favor veja as mensagens " "abaixo para maiores informações. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restaurando o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Baixando atualização de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" -msgstr "Verificando o gerenciador de pacotes" +msgstr "Verificando o Gerenciador de Pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Preparação para a atualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -478,15 +477,15 @@ msgstr "" "um bug do pacote 'update-manager' e inclua os arquivos no /var/log/dist-" "upgrade/ no relatório do bug." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Atualizando informação do repositório" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informação do pacote inválida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -501,21 +500,21 @@ msgstr "" "do 'update-manager' e inclua os arquivos contidos em /var/log/dist-upgrade/ " "no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" -msgstr "Pedindo confirmação" +msgstr "Pedindi por confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Atualizando" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." -msgstr "A atualização do sistema está completa." +msgstr "A Atualização do Sistema está completa." #. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 @@ -524,9 +523,8 @@ msgid "Please insert '%s' into the drive '%s'" msgstr "Por favor insira '%s' no drive '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "A extração foi completada" +msgstr "A extração foi finalizada" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format @@ -549,7 +547,7 @@ msgstr "Obtendo arquivo %li de %li" #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "Aplicando mudanças" +msgstr "..." #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format @@ -587,11 +585,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -605,28 +603,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacote será removido." msgstr[1] "%d pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será atualizado." msgstr[1] "%d pacotes serão atualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -637,7 +635,7 @@ msgstr "" "\n" "Você tem que baixar um total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -645,17 +643,17 @@ msgstr "" "A obtenção e instalação da atualização pode levar muitas horas e não poderá " "ser cancelada depois." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -663,17 +661,17 @@ msgstr "" "Não há atualizações disponíveis para o seu sistema. A atualização será " "cancelada agora." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Atualizar %s" @@ -709,11 +707,11 @@ msgstr "" "Esse download irá durar %s com uma conexão ADSL de 1Mbps e %s com um modem " "56k" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Reinicialização requerida" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -747,7 +745,7 @@ msgstr "Reinicie o seu sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Iniciar a atualização?" +msgstr "Iniciar a Atualização?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" @@ -775,7 +773,7 @@ msgstr "Modificando os canais de software" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "Preparando a atualização" +msgstr "Preparando a Atualização" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" @@ -800,11 +798,11 @@ msgstr "_Manter" #: ../DistUpgrade/DistUpgrade.glade.h:19 #: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" -msgstr "_Substituir" +msgstr "_Subtituir" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "Relatar _Erro" +msgstr "Reportar _Erro" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -852,7 +850,7 @@ msgstr "Obtendo a ferramenta de atualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "A ferramenta de atualização irá guiá-lo durante o processo." +msgstr "A ferramenta de atualização irá guia-lo pelo processo." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -997,11 +995,11 @@ msgstr[1] "Você pode instalar %s atualizações" #: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." -msgstr "Aguarde por favor, isso pode levar algum tempo." +msgstr "Por favor, espere, isto pode levar algum tempo." #: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" -msgstr "A atualização está completa" +msgstr "Atualização completa" #: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" @@ -1035,17 +1033,17 @@ msgid "" msgstr "" "Você não terá mais como instalar atualizações críticas ou correções para " "falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. " -"Veja http://www.ubuntu-br.org para mais informações." +"Veja http://www.ubuntu-br.org" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "Uma nova versão da distribuição '%s' está disponível" +msgstr "Nova versão da distribuição '%s' está disponível" #. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" -msgstr "O index do software está quebrado" +msgstr "A índex de software está quebrado" #: ../UpdateManager/UpdateManager.py:903 msgid "" @@ -1094,7 +1092,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "Manter o sistema atualizado" +msgstr "Manter o Sistema Atualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" @@ -1106,7 +1104,7 @@ msgstr "Iniciando o gerenciador de atualizações" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" -msgstr "Mudanças" +msgstr "Modificações" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" @@ -1147,18 +1145,17 @@ msgstr "Exibir progresso de arquivos únicos" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "Atualizações de Software" +msgstr "Atualizações de software" #: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Atualizações de programas podem corrigir erros, eliminar vulnerabilidades de " -"segurança e prover novas funcionalidades." +"Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " +"segurança, e prover novas funcionalidades para você." #: ../data/glade/UpdateManager.glade.h:19 -#, fuzzy msgid "U_pgrade" msgstr "At_ualizar" @@ -1183,7 +1180,6 @@ msgid "_Install Updates" msgstr "_Instalar Atualizações" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" msgstr "At_ualizar" @@ -1259,7 +1255,7 @@ msgid "" "automatically" msgstr "" "Somente atualizações de segurança do servidor oficial do Ubuntu serão " -"instaladas automaticamente" +"instaladas automaticamente." #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1326,7 +1322,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" -msgstr "Comentário:" +msgstr "Comentário" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" @@ -1426,7 +1422,7 @@ msgstr "Exibir detalhes de uma atualização" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" +msgstr "Armazena o tamanho do diálogo do update-manager" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1537,7 +1533,7 @@ msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Atualizações de Segurança do Ubuntu 5.10" +msgstr "Atualizações de segurança do Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:140 @@ -1562,12 +1558,12 @@ msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'" #. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "Suportado oficialmente" +msgstr "Suportadas oficialmente" #. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" -msgstr "Atualizações de Segurança do Ubuntu 5.04" +msgstr "Atualizações de segurança do Ubuntu 5.04" #. Description #: ../data/channels/Ubuntu.info.in:182 @@ -1587,12 +1583,12 @@ msgstr "Ubuntu 4.10 'Warty Warthog'" #. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "Mantido pela Comunidade (Universe)" +msgstr "Mantido pela comunidade (Universo)" #. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Não-livres (Multiverse)" +msgstr "Não-livres (Multiverso)" #. Description #: ../data/channels/Ubuntu.info.in:206 @@ -1612,7 +1608,7 @@ msgstr "Copyright restrito" #. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Atualizações de Segurança do Ubuntu 4.10" +msgstr "Atualizações de segurança do Ubuntu 4.10" #. Description #: ../data/channels/Ubuntu.info.in:223 @@ -1648,7 +1644,7 @@ msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\"" #. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "Debian \"Etch\" (testando)" +msgstr "Debian \"Etch\" (testing)" #. BaseURI #: ../data/channels/Debian.info.in:47 @@ -1658,12 +1654,12 @@ msgstr "http://http.us.debian.org/debian/" #. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "Debian \"Sid\" (instável)" +msgstr "Debian \"Sid\" (unstable)" #. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "Programa compatível com a DFSG mas com Dependências Não-Livres" +msgstr "Programa compatível com a DFSG mas com dependências não-livres" #. CompDescription #: ../data/channels/Debian.info.in:57 @@ -1675,7 +1671,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ "\n" #~ "%s" #~ msgstr "" -#~ "Erro durante a análise do CD\n" +#~ "Erro analisando o CD\n" #~ "\n" #~ "%s" @@ -1772,8 +1768,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Verfing the upgrade failed. There may be a problem with the network or " #~ "with the server. " #~ msgstr "" -#~ "Falha na verificação da atualização. Pode haver um problema com a rede ou " -#~ "com o servidor. " +#~ "Falha na verificação da atualização. Pode ter havido um problema com a " +#~ "rede ou com o servidor. " #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Obtendo arquivo %li de %li a %s/s" @@ -1812,7 +1808,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Não foi possível instalar todas as atualizações disponíveis" #~ msgid "Downloading the list of changes..." -#~ msgstr "Obtendo a lista de alterações..." +#~ msgstr "Obtendo a lista de alterações" #~ msgid "Select _None" #~ msgstr "Selecionar _Nenhum" @@ -1830,7 +1826,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" #~ "\"." #~ msgstr "" -#~ "Você deve verificar por atualizações manualmente\n" +#~ "Você deve verificar as atualizações manualmente\n" #~ "\n" #~ "O seu sistema não procura por atualizações automaticamente. Você pode " #~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> " @@ -2006,7 +2002,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ "entrada válida para a atualização.\n" #~ msgid "Repositories changed" -#~ msgstr "Repositories changed" +#~ msgstr "Repositórios alterados" #~ msgid "" #~ "You need to reload the package list from the servers for your changes to " @@ -2022,7 +2018,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Procurar updates disponíveis" #~ msgid "Sections:" -#~ msgstr "Sections:" +#~ msgstr "Seções:" #~ msgid "Reload the latest information about updates" #~ msgstr "Recarregar as últimas informações sobre atualizações" @@ -2042,9 +2038,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Obtendo Mudanças\n" +#~ "Baixando modificações\n" #~ "\n" -#~ "É necessário obter as mudanças do servidor central" +#~ "É necessário obter as modificações do servidor central" #~ msgid "Show available updates and choose which to install" #~ msgstr "Exibir atualizações disponíveis e escolher quais instalar" @@ -2111,10 +2107,10 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Cancel downloading the ChangeLog" #~ msgid "Choose a key-file" -#~ msgstr "Choose a key-file" +#~ msgstr "Escolha um arquivo-chave" #~ msgid "Packages to install:" -#~ msgstr "Packages to install:" +#~ msgstr "Pacotes a instalar:" #~ msgid "" #~ "Available Updates\n" @@ -2122,19 +2118,19 @@ msgstr "Programas não compatíveis com a DFSG" #~ "The following packages are found to be upgradable. You can upgrade them " #~ "by using the Install button." #~ msgstr "" -#~ "Available Updates\n" +#~ "Atualizações disponíveis\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "Os seguintes pacotes podem ser atualizados. Você pode atualizá-los " +#~ "clicando no botão Instalar." #~ msgid "Repository" -#~ msgstr "Repository" +#~ msgstr "Repositório" #~ msgid "Temporary files" -#~ msgstr "Temporary files" +#~ msgstr "Arquivos temporários" #~ msgid "User Interface" -#~ msgstr "User Interface" +#~ msgstr "Interface de usuário" #, fuzzy #~ msgid "" @@ -2143,75 +2139,77 @@ msgstr "Programas não compatíveis com a DFSG" #~ "You can add and remove authentication keys in this dialog. A key makes it " #~ "possible to verify the integrity of the software you download." #~ msgstr "" -#~ "Authentication keys\n" +#~ "Chaves de autenticação\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "Você pode adicionar e remover chaves de autenticação neste diálogo. Uma " +#~ "chave torna possível verificar a integridade do software que você baixar." #~ msgid "A_uthentication" -#~ msgstr "A_uthentication" +#~ msgstr "A_utenticação" #, fuzzy #~ msgid "" #~ "Add a new key file to the trusted keyring. Make sure that you received " #~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Add a new key file to the trusted keyring. Make sure that you got the key " -#~ "over a secure channel and that you trust the owner. " +#~ "Adicionar uma nova chave ao chaveiro de confiança. Assegure-se de que " +#~ "você obteve a chave através de um canal seguro e que você confia no " +#~ "proprietário. " #~ msgid "Automatically clean _temporary packages files" -#~ msgstr "Automatically clean _temporary packages files" +#~ msgstr "Limpar automaticamente arquivos _temporários de pacotes" #~ msgid "Clean interval in days: " -#~ msgstr "Clean interval in days: " +#~ msgstr "Intervalo de limpeza, em dias: " #~ msgid "Delete _old packages in the package cache" -#~ msgstr "Delete _old packages in the package cache" +#~ msgstr "Excluir pacotes _antigos do cache de pacotes" #~ msgid "Edit Repository..." -#~ msgstr "Edit Repository..." +#~ msgstr "Editar repositório..." #~ msgid "Maximum age in days:" -#~ msgstr "Maximum age in days:" +#~ msgstr "Idade máxima em dias:" #~ msgid "Maximum size in MB:" -#~ msgstr "Maximum size in MB:" +#~ msgstr "Tamanho máximo em MB:" #, fuzzy #~ msgid "" #~ "Restore the default keys shipped with the distribution. This will not " #~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user-installed keys." +#~ "Restaura as chaves padrão fornecidas com a distribuição. Isso não irá " +#~ "alterar as chaves instaladas pelo usuário." #~ msgid "Set _maximum size for the package cache" -#~ msgstr "Set _maximum size for the package cache" +#~ msgstr "Definir o tamanho _máximo para o cache de pacotes" #~ msgid "Settings" -#~ msgstr "Settings" +#~ msgstr "Configurações" #~ msgid "Show disabled software sources" -#~ msgstr "Show disabled software sources" +#~ msgstr "Exibir fontes de software desabilitadas" #~ msgid "Update interval in days: " -#~ msgstr "Update interval in days: " +#~ msgstr "Intervalo de atualização em dias: " #~ msgid "_Add Repository" -#~ msgstr "_Add Repository" +#~ msgstr "_Adicionar repositório" #~ msgid "_Download upgradable packages" -#~ msgstr "_Download upgradable packages" +#~ msgstr "_Baixar pacotes atualizáveis" #~ msgid "" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "This means that some dependencies of the installed packages are not " -#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." +#~ "Isso quer dizer que algumas dependências dos pacotes instalados não foram " +#~ "satisfeitas. Por favor use \"Synaptic\" ou \"apt-get\" para resolver a " +#~ "situação." #~ msgid "It is not possible to upgrade all packages." -#~ msgstr "It is not possible to upgrade all packages." +#~ msgstr "Não é possível atualizar todos os pacotes." #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " @@ -2219,65 +2217,69 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " #~ "situation." #~ msgstr "" -#~ "This means that besides the actual upgrade of the packages some further " -#~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Isso quer dizer que além da atualização dos pacotes, uma ação a mais será " +#~ "necessária (tais como instalar ou remover pacotes). Por favor use o " +#~ "Synaptic \"Smart Upgrade\" ou \"apt-get dist-upgrade\" para arrumar a " +#~ "situação." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Changes not found, the server may not be updated yet." +#~ msgstr "" +#~ "Modificações não encontradas, o servidor pode não ter sido atualizado " +#~ "ainda." #~ msgid "The updates are being applied." -#~ msgstr "The updates are being applied." +#~ msgstr "As atualizações estão sendo aplicadas." #~ msgid "" #~ "You can run only one package management application at the same time. " #~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "Você pode executar apenas uma aplicação gerenciadora de pacotes ao mesmo " +#~ "tempo. Por favor feche a outra aplicação primeiro." #~ msgid "Updating package list..." -#~ msgstr "Updating package list..." +#~ msgstr "Atualizando lista de pacotes..." #~ msgid "There are no updates available." -#~ msgstr "There are no updates available." +#~ msgstr "Não existem atualizações disponíveis." #~ 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. " #~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "Por favor atualize para uma nova versão do Ubuntu Linux. A versão que " +#~ "você está utilizando não recebe mais atualizações de segurança ou outras " +#~ "atualizações críticas. Por favor veja http://www.ubuntulinux.org para " +#~ "informações sobre a atualização." #~ msgid "There is a new release of Ubuntu available!" -#~ msgstr "There is a new release of Ubuntu available!" +#~ msgstr "Existe uma nova versão do Ubuntu disponível!" #~ msgid "" #~ "A new release with the codename '%s' is available. Please see http://www." #~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "Uma nova versão nomeada '%s' está disponível. Por favor veja http://www." +#~ "ubuntulinux.org para instruções de atualização." #~ msgid "Never show this message again" -#~ msgstr "Never show this message again" +#~ msgstr "Nunca exibir esta mensagem novamente" #, fuzzy #~ msgid "" #~ "This usually means that another package management application (like apt-" #~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "Isso geralmente quer dizer que outra aplicação de gerenciamento de " +#~ "pacotes (como apt-get ou aptitude) está em execução. Por favor feche essa " +#~ "aplicação primeiro" #~ msgid "Initializing and getting list of updates..." -#~ msgstr "Initializing and getting list of updates..." +#~ msgstr "Inicializando e obtendo lista de atualizações..." #~ msgid "You need to be root to run this program" -#~ msgstr "You need to be root to run this program" +#~ msgstr "Você precisa ser root para executar este programa." #~ msgid "Edit software sources and settings" #~ msgstr "Edit software sources and settings" @@ -2286,19 +2288,21 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Ubuntu Update Manager" #~ msgid "Binary" -#~ msgstr "Binary" +#~ msgstr "Binário" #~ msgid "CD" #~ msgstr "CD" #~ msgid "Non-free software" -#~ msgstr "Non-free software" +#~ msgstr "Softwares não-livres" #~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Chave de assinatura automática do Ubuntu " #~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Chave de assinatura automática da imagem de CD do Ubuntu " #, fuzzy #~ msgid "" diff --git a/po/qu.po b/po/qu.po index a3b18c03..db05e8b5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Quechua \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,21 +291,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -500,11 +500,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ro.po b/po/ro.po index f679abc5..3a547f7f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -161,20 +161,20 @@ msgstr "" "reparate cu acest program. Înainte de a continua vă rugăm să le remediaţi " "utilizând synaptic sau apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Este imposibilă actualizarea meta-pachetelor cerute" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Un pachet esenţial ar trebui şters" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Imposibil de calculat actualizarea" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,12 +183,12 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 #, fuzzy msgid "Error authenticating some packages" msgstr "Eroare la autentificarea unor pachete." -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -198,12 +198,12 @@ msgstr "" "unor probleme temporare pe reţea. Vă recomandăm să reveniţi mai târziu. " "Dedesubt sunt afişate lista pachetelor neidentificate." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nu pot instala '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "bug (eroare). " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Imposibl de ghicit meta-pachet" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -332,11 +332,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Eroare în timpul actualizării" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +344,11 @@ msgstr "" "A apărut o problemă în timpul actualizării. De obicei este legată de reţea, " "vă rugăm să verificaţi conexiunea dumneavoastra şi să încercaţi din nou." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Spaţiu liber insuficient" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +360,15 @@ msgstr "" "instalările vechi folosind 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Nu s-au putut instalat upgrade-urile" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,11 +382,11 @@ msgstr "" "Vă rugăm raportaţi această eroare la pachetul 'update-manager' şi includeţi " "fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Nu pot descărca actualizările" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +394,11 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm să verificaţi conexiunea la Internet " "sau sursa de instalare şi să încercaţi din nou. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -407,23 +407,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Şterg pachetele vechi?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Sari peste acest pas" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "Şter_ge" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Eroare în timpul salvării" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,44 +432,44 @@ msgstr "" "de mai jos pentru informaţii suplimentare. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 #, fuzzy msgid "Restoring original system state" msgstr "Se reface starea iniţială a sistemului" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Se pregăteşte actualizarea" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Actualizez informaţii depozit" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informaţii pachet nevalide" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -483,19 +483,19 @@ msgstr "" "Aceasta indică o eroare serioasă, vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Se aşteaptă confirmarea" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Se actualizează" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Caut software învechit" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" @@ -563,11 +563,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Comanda 'diff' nu a putut fi localizată" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "S-a produs o eroare fatală" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -582,7 +582,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -590,7 +590,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -598,7 +598,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -606,7 +606,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -617,7 +617,7 @@ msgstr "" "\n" "Trebuie să descărcaţi un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -625,35 +625,35 @@ msgstr "" "Descărcarea şi intalarea actualizărilor poate dura câteva ore şi nu poate fi " "abandonată mai târziu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi " "documentele." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Şterge %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalează %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualizează %s" @@ -687,11 +687,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Este necesară repornirea" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ru.po b/po/ru.po index b419d671..f732cab3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:16+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 09:11+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" @@ -160,20 +160,20 @@ msgstr "" "данной программой. Пожалуйста, исправьте их, используя synaptic или apt-get, " "прежде чем продолжить." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Невозможно обновить требуемые мета-пакеты" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,11 +186,11 @@ msgstr "" "файлы в /var/log/dist-upgrade/ к отчету." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "кратковременная проблема с сетью и стоит попробовать позже. Ниже приведен " "список пакетов, не прошедших проверку." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Невозможно установить '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "ошибке. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -337,11 +337,11 @@ msgstr "" "обновления вы можете снова включить их с помощью утилиты 'software-" "properties' или synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Ошибка при обновлении" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +349,11 @@ msgstr "" "При обновлении возникла проблема. Обычно это бывает вызвано проблемами в " "сети, проверьте сетевые подключения и повторите попытку." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Недостаточно свободного места на диске" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +365,15 @@ msgstr "" "предыдущих установок с помощью команды 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Невозможно установить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -387,11 +387,11 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Невозможно загрузить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -399,11 +399,11 @@ msgstr "" "Обновление прервано. Проверьте соединение с Интернет или установочный диск и " "попробуйте снова. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Некоторые программы больше не поддерживаются" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -417,23 +417,23 @@ msgstr "" "Если у вас не подключен репозиторий сообщества (universe), на следующем шаге " "вам предложат удалить эти пакеты." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" -msgstr "Пропустить этот шаг" +msgstr "_Пропустить этот шаг" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" -msgstr "Удалить" +msgstr "_Удалить" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Ошибка при фиксировании" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,27 +442,27 @@ msgstr "" "ниже. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Загрузка '%s' из репозитария backports" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Подготовка к обновлению завершилась неудачей" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -472,15 +472,15 @@ msgstr "" "отчет об ошибке приложения 'update-manager' и приложите к отчету файлы в /" "var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Обновление информации о репозитории" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Неверная информация о пакете" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,19 +493,19 @@ msgstr "" "Это серьёзная проблема, пожалуйста, сообщите об ошибке пакета 'update-" "manager', включив в отчёт об ошибке файлы, лежащие в /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Запрос подтверждения" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Обновление" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Обновление системы завершено." @@ -577,11 +577,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Не найдена команда 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Произошла неисправимая ошибка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -595,7 +595,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -603,7 +603,7 @@ msgstr[0] "%d пакет будет удален." msgstr[1] "%d пакета будут удалены." msgstr[2] "%d пакетов будут удалены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -611,7 +611,7 @@ msgstr[0] "%d новый пакет будет установлен." msgstr[1] "%d новых пакета будут установлены." msgstr[2] "%d новых пакетов будут установлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -619,7 +619,7 @@ msgstr[0] "%d пакет будет обновлен." msgstr[1] "%d пакета будут обновлены." msgstr[2] "%d пакетов будут обновлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -630,7 +630,7 @@ msgstr "" "\n" "Всего требуется загрузить %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -638,35 +638,35 @@ msgstr "" "Загрузка и установка обновлений может занять несколько часов и не может быть " "прервано в любой момент." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Для вашей системы не доступно ни одно обновление. Обновление будет отменено." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Удалить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Установить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Обновить %s" @@ -702,11 +702,11 @@ msgstr "" "Эта загрузка займет примерно %s при использовании 1Мбит DSL-соединения и " "примерно %s при использовании модема на скорости 56кбит" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Требуется перезагрузка" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" @@ -762,7 +762,7 @@ msgstr "Загрузка и установка обновлений" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "Изменение источников приложений" +msgstr "Изменение каналов приложений" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" @@ -786,24 +786,24 @@ msgstr "Продолжить" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "Оставить" +msgstr "_Оставить" #: ../DistUpgrade/DistUpgrade.glade.h:19 #: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" -msgstr "Заменить" +msgstr "_Заменить" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "Отправить сообщение об ошибке" +msgstr "_Отправить сообщение об ошибке" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "Перезапустить сейчас" +msgstr "Перезапустить _сейчас" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "Продолжить обновление" +msgstr "_Продолжить обновление" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -1105,11 +1105,11 @@ msgstr "Изменения и описание обновления" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "Проверить" +msgstr "_Проверить" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Проверить источники приложений на наличие обновлений" +msgstr "Проверить каналы приложений на наличие обновлений" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1173,9 +1173,8 @@ msgid "_Install Updates" msgstr "Установить обновления" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" -msgstr "Обновить" +msgstr "_Обновить" #: ../data/glade/UpdateManager.glade.h:26 msgid "changes" @@ -1406,7 +1405,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "Напоминать обновить список источников" +msgstr "Напоминать обновить список каналов" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1424,7 +1423,7 @@ msgstr "Хранит состояние экспандера, содержаще #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "Размер окна" +msgstr "Размен окна" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" @@ -1534,7 +1533,7 @@ msgstr "Обновления Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 бэкпорты" +msgstr "Ubuntu 5.10 Backports" #. Description #: ../data/channels/Ubuntu.info.in:152 diff --git a/po/rw.po b/po/rw.po index 0f184568..e126b373 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -165,20 +165,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -188,23 +188,23 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -212,11 +212,11 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -306,22 +306,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "i Urufunguzo" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -370,51 +370,51 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "Muyobozi ni" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -422,15 +422,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -440,20 +440,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Byarangiye" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -520,11 +520,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -534,25 +534,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -560,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -627,11 +627,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/sk.po b/po/sk.po index 653c6f01..978e65cc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -160,20 +160,20 @@ msgstr "" "Váš systém obsahuje poškodené balíky, ktoré nemôžu byť týmto programom " "opravené. Pred pokračovaním ich opravte programom synaptic alebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Nemôžem aktualizovať požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "ako chybu." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -199,23 +199,23 @@ msgstr "" "problémom v sieti. Môžete to opäť skúsiť neskôr. Nižšie je uvedený zoznam " "neoverených balíčkov." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nemôžem inštalovať '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -329,11 +329,11 @@ msgstr "" "Môžete ich povoliť po upgrade pomocou nástroja 'vlastnosti-softwaru' alebo " "pomocou synapticu." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Chyba počas aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +341,11 @@ msgstr "" "Počas aktualizácie sa objavil problém, ktorý je zvyčajne spôsobený chybou " "sieťového pripojenia, preto skontrolujte vaše pripojenie a skúste znova." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Nedostatok voľného miesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +357,15 @@ msgstr "" "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +377,11 @@ msgstr "" "Aktualizácia teraz skončí. Váš systém môže byť v nepoužiteľnom stave, preto " "bol spustený príkaz na zotavenie sa z tohto stavu (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť požadované balíky" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +389,11 @@ msgstr "" "Aktualizácia bola neočakávane prerušená. Skontrolujte svoje internetové " "pripojenie alebo inštalačné médiá a skúste znova. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -408,23 +408,23 @@ msgstr "" "Pokiaľ nemáte zapnutý komunitou spravovaný zdroj softvéru 'universe', budú " "tieto balíky v ďalšom kroku navrhnuté na odstránenie." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Preskočiť tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Odstrániť" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,28 +433,28 @@ msgstr "" "uvedené správy. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Kontrola správcu balíkov" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Prebieha príprava aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -464,15 +464,15 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Aktualizácia informácií o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -485,19 +485,19 @@ msgstr "" "s'.\n" "To znamená závažný problém. Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Požaduje sa potvrdenie" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Prebieha aktualizácia" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." @@ -566,11 +566,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Príkaz 'diff' nebol nájdený." -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Nastala závažná chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -586,7 +586,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -594,7 +594,7 @@ msgstr[0] "Bude odstránený %s balík." msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -602,7 +602,7 @@ msgstr[0] "Bude nainštalovaný %s nový balík." msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -610,7 +610,7 @@ msgstr[0] "Bude aktualizovaný %s balík." msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -621,41 +621,41 @@ msgstr "" "\n" "Musíte stiahnuť celkom %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Odstrániť %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Inštalovať %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aktualizovať %s" @@ -689,11 +689,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Je potrebný reštart" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/sl.po b/po/sl.po index baba6c98..bb0eb461 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" @@ -159,20 +159,20 @@ msgstr "" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Ne morem nadgraditi zahtevanih meta-paketov" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Bistven paket se bo moral odstraniti" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Ne morem izračunati nadgradnje" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -181,11 +181,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Napaka pristnosti nekaterih paketov" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -195,12 +195,12 @@ msgstr "" "omrežju. Morda poskusite kasneje. Spodaj poglejte seznam nepreverjenih " "paketov." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, fuzzy, python-format msgid "Can't install '%s'" msgstr "Ne morem namestiti '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -208,11 +208,11 @@ msgstr "" "Nemogoče je bilo namestiti zahtevani paket. Prosim, javite to kot napaka. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Ne morem ugibati meta-paketa" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -316,11 +316,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Napaka med posodobitvijo" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -328,11 +328,11 @@ msgstr "" "Med posodobitvijo je prišlo do napake. Ponavadi je to lahko omrežna napaka, " "prosim, da preverite vaše omrežje in poskusite znova." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Premalo prostora na disku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -344,15 +344,15 @@ msgstr "" "namesitev z uporabo 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Želite pričeti z nadgradnjo?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Ne morem namestiti nadgradenj." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -361,11 +361,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Ne morem sneti nadgradenj" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -373,11 +373,11 @@ msgstr "" "Nadgradnja sedaj končuje. Prosim, preverite internetno povezavo ali " "namestitveni medij in poizkusite znova. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -386,23 +386,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Odstranim neuporabne pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Preskoči ta korak" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Odstrani" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Napaka med izvedbo" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -411,42 +411,42 @@ msgstr "" "več informacij. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Preverjam paketni upravitelj" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Posodabljam shranjeno informacijo" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Neveljavna paketna informacija" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -456,19 +456,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Sprašujem za potrditev" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Nadgrajevanje" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Nadgrajevanje sistema je dokončano" @@ -534,11 +534,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -548,7 +548,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -557,7 +557,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -566,7 +566,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -575,7 +575,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -583,39 +583,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Odstrani %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Namesti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Nadgradi %s" @@ -649,11 +649,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Potreben je ponoven zagon" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "Nadgrajevanje je končano in potreben je ponoven zagon" diff --git a/po/sq.po b/po/sq.po index 731d45af..fe0f2af0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" @@ -162,20 +162,20 @@ msgstr "" "softuer.Ju lutemi riparoni këtë me Synaptic ose apt-get, para se të shkoni " "përpara." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Një paketë themelore u deshtë të largohej" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Aktualizimi nuk mund të llogaritej" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,11 +186,11 @@ msgstr "" "raport për këtë gabim." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "problemet me rrjetin.Ju lutemi provoni më vonë edhe një herë.Paketat e " "mëposhtme nuk mund të vërtetohen për nga origjinaliteti." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' nuk mund të instalohet" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "problem. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -313,21 +313,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -336,15 +336,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -353,21 +353,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -376,65 +376,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -444,19 +444,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -522,11 +522,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -536,28 +536,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -565,39 +565,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -631,11 +631,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/sr.po b/po/sr.po index b5f6a382..b2549aea 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" @@ -165,20 +165,20 @@ msgstr "" "софтвером. Молим вас прво њих поправите користећи synaptic или apt-get прије " "него што наставите." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -187,34 +187,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -304,22 +304,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, fuzzy msgid "Not enough free disk space" msgstr "Нема довољно места на диску" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, fuzzy, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -331,15 +331,15 @@ msgstr "" "инсталација користећи команду 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -348,21 +348,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -371,65 +371,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Прескочи овај корак" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Уклони" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -439,19 +439,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 #, fuzzy msgid "System upgrade is complete." msgstr "Унапређење система је завршено" @@ -519,11 +519,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Команда 'diff' није нађена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -533,7 +533,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -541,7 +541,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -549,7 +549,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -557,7 +557,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -565,41 +565,41 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "" "Да би спречили губитак података затворите све активне програме и документа." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Унапреди %s" @@ -633,12 +633,12 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 #, fuzzy msgid "Reboot required" msgstr "Потребно је поново покретање система" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/sv.po b/po/sv.po index a690f9f9..aa6fc3a9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 05:06+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -160,20 +160,20 @@ msgstr "" "programmet. Reparera dem först med synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan inte uppdatera de obligatoriska meta-paketen" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,11 +186,11 @@ msgstr "" "filerna i /var/log/dist-upgrade/ i felrapporten." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -200,12 +200,12 @@ msgstr "" "nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista " "med icke-autentisierade paket." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan inte installera \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "som ett fel. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -340,11 +340,11 @@ msgstr "" "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " "eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fel vid uppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -353,11 +353,11 @@ msgstr "" "av nätverksproblem, var god kontrollera din nätverksanslutning och försök " "igen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Inte tillräckligt med ledigt diskutrymme" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -369,15 +369,15 @@ msgstr "" "att använda \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -391,11 +391,11 @@ msgstr "" "Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i /" "var/log/dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Det gick inte att hämta uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -403,11 +403,11 @@ msgstr "" "Uppgraderingen avbryts nu. Var god kontrollera din Internetanslutning eller " "ditt installationsmedia, och försök igen. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Stöd för vissa program har upphört" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -421,23 +421,23 @@ msgstr "" "Om du inte har aktiverat gemenskapsunderhållen programvara (universe), " "kommer dessa paket att föreslås för borttagning i nästa steg." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Hoppa över det här steget" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Ta bort" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fel inträffade vid verkställandet" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -446,27 +446,27 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Återställer ursprungligt systemtillstånd" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Hämtar bakåtportering av \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Förberedelse av uppgradering misslyckades" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -476,15 +476,15 @@ msgstr "" "som ett fel mot paketet \"update-manager\" och inkludera filerna i /var/log/" "dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ogiltig paketinformation" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -499,19 +499,19 @@ msgstr "" "fel mot paketet \"update-manager\" och bifoga filerna i /var/log/dist-" "upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Ber om bekräftelse" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Uppgraderar" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Söker efter föråldrad programvara" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." @@ -583,11 +583,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Kommandot \"diff\" hittades inte" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ett ödesdigert fel uppstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -601,28 +601,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kommer att tas bort." msgstr[1] "%d paket kommer att tas bort." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nytt paket kommer att installeras." msgstr[1] "%d nya paket kommer att installeras." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket kommer att uppgraderas." msgstr[1] "%d paket kommer att uppgraderas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -633,7 +633,7 @@ msgstr "" "\n" "Du måste hämta totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -641,17 +641,17 @@ msgstr "" "Hämtning och installation av uppgraderingen kan ta flera timmar och kan inte " "avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -659,17 +659,17 @@ msgstr "" "Det finns inga tillgängliga uppgraderingar för ditt system. Uppgraderingen " "kommer nu att avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Ta bort %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installera %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Uppgradera %s" @@ -705,11 +705,11 @@ msgstr "" "Den här hämtningen kommer att ta ungefär %s med en 1 Mbit DSL-anslutningen " "och ungefär %s med ett 56k-modem" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Omstart krävs" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ta.po b/po/ta.po index ae266cae..d9af72cd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' நிறுவமுடியவில்லை" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,23 +291,23 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "புதுப்பிக்கும் பொழுது பிழை ஏற்பட்டுள்ளது" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, fuzzy msgid "Not enough free disk space" msgstr "வட்டுவில்் போதுமான காலி இடம் இல்லை" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,65 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,20 +424,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 #, fuzzy msgid "Asking for confirmation" msgstr "உறுதிப்படுத்த கேட்கிறது" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "மேம்படுத்துகிறது" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 #, fuzzy msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." @@ -505,11 +505,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "'diff' என்ற கட்டளை இல்லை" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -519,28 +519,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -548,39 +548,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s நீக்கு" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s நிறுவு" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s மேம்படுத்து" @@ -614,12 +614,12 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 #, fuzzy msgid "Reboot required" msgstr "மறு தொடக்கம் தேவைப்படுகிறது" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/th.po b/po/th.po index c1891198..2b1fd350 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -156,20 +156,20 @@ msgstr "" "ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " "หรือ apt-get ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "ไม่สามารถปรับปรุง meta แพกเกจที่ต้องการได้" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -182,11 +182,11 @@ msgstr "" "upgrade/ ในรายงานด้วย" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -195,23 +195,23 @@ msgstr "" "ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " "คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "ไม่สามารถติดตั้ง '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -324,11 +324,11 @@ msgstr "" "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรม synaptic" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "เกิดข้อผิดพลาดขณะปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -336,11 +336,11 @@ msgstr "" "มีปัญหาเกิดขึ้นขณะทำการปรับปรุง โดยปกติแล้วจะเป็นปัญหาด้านเครือข่าย " "กรุณาตรวจสอบการสื่อสารในเครือข่ายของคุณแล้วลองใหม่อีกที" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "ไม่มีพื้นที่ว่างในดิสก์เพียงพอ" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -351,15 +351,15 @@ msgstr "" "เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -373,11 +373,11 @@ msgstr "" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +385,11 @@ msgstr "" "การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " "mediaและลองอีกครั้ง " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "สนับสนุนสำหรับบางแอพพลิเคชันสิ้นสุดลง" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -402,50 +402,50 @@ msgstr "" "\n" "ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_ข้ามขั้นตอนนี้" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "เ_อาออก" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "คืนระบบสู่สถานะแรกเริ่ม" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "ดึงพอร์ตย้อนหลังของ '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "การเตรียมการปรับปรุงรุ่นมีปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" @@ -454,15 +454,15 @@ msgstr "" "การเตรียมระบบสำหรับการปรับปรุงรุ่นมีปัญหา กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" "manager' และแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +475,19 @@ msgstr "" "นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' " "และแนบไฟล์ใน /var/log/dist-upgrade/ กับรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "_ถามการยืนยันจากคุณก่อน" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "กำลังปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" @@ -557,11 +557,11 @@ msgstr "คุณจะสูญเสียข้อมูลปรับแต msgid "The 'diff' command was not found" msgstr "ไม่เจอคำสั่ง 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "เกิดข้อผิดพลาดอย่างร้ายแรง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -574,25 +574,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d แพกเกจจะถูกลบออก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d แพกเกจใหม่จะถูกติดตั้ง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -603,39 +603,39 @@ msgstr "" "\n" "คุณจะต้องดาวน์โหลดทั้งหมด %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "ไม่มีข้อมูลปรับปรุงรุ่นสำหรับระบบของคุณ การปรับปรุงรุ่นจึงถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "ลบออก %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "ติดตั้ง %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "ปรับปรุงรุ่น %s" @@ -671,11 +671,11 @@ msgstr "" "ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ด้วยการสื่อสารแบบ 1Mbit DSL และประมาณ %s ถ้าใช้ 56K " "โมเดม" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "ต้องเริ่มระบบใหม่" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" diff --git a/po/tl.po b/po/tl.po new file mode 100644 index 00000000..48d4bcec --- /dev/null +++ b/po/tl.po @@ -0,0 +1,1565 @@ +# Tagalog translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-09-16 15:44+0000\n" +"Last-Translator: Ariel S. Betan \n" +"Language-Team: Tagalog \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Araw-araw" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Tuwing ikalawang araw" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "linggo-linggo" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Tuwing ikalawang linggo" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Tuwing %s days" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Makalipas ang isang linggo" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Makalipas ang dalawang linggo" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Makalipas ang isang buwan" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Makalipas ang %s araw" + +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#. TRANSLATORS: %s is a country +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Import key" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Error sa pagkuha ng napiling file" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "Ang napiling file ay maaaring hindi isang GPG key o kaya'y may sira." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Error sa pagtanggal ng key" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Ang napiling key ay hindi matanggal. Mangyari lamang na ipagbigay alam ito " +"bilang isang bug." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Mangyari lamang na magpasok ng pangalan para sa disc" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "Mangyari lamang na ipasok ang disc sa drive:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Sirang mga pakete" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" +"Ang iyong sistema ay nagtataglay ng mga sirang pakete na hindi maisasaayos " +"ng software na ito. Mangyari lamang na ayusin muna ang mga ito sa " +"pamamagitan ng synaptic o apt-get bago magpatuloy." + +#: ../DistUpgrade/DistUpgradeCache.py:238 +msgid "Can't upgrade required meta-packages" +msgstr "Hindi ma-upgrade ang kinakailangang mga meta-pakete" + +#: ../DistUpgrade/DistUpgradeCache.py:242 +msgid "A essential package would have to be removed" +msgstr "Isang esensiyal na pakete ang kailangang tanggalin" + +#. FIXME: change the text to something more useful +#: ../DistUpgrade/DistUpgradeCache.py:245 +msgid "Could not calculate the upgrade" +msgstr "Hindi matantiya ang laki ng upgrade" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. FIXME: maybe ask a question here? instead of failing? +#: ../DistUpgrade/DistUpgradeCache.py:280 +msgid "Error authenticating some packages" +msgstr "Error sa pagtiyak na tama ang ilang mga pakete" + +#: ../DistUpgrade/DistUpgradeCache.py:281 +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 a list of " +"unauthenticated packages." +msgstr "" +"Hindi posibleng matiyak ang ilang mga pakete. Baka dulot ito ng isang " +"pansamantalang problema sa network. Maari mong subukang muli mamaya. Tingnan " +"sa ibaba ang listahan ng hindi matiyak na mga pakete." + +#: ../DistUpgrade/DistUpgradeCache.py:346 +#, python-format +msgid "Can't install '%s'" +msgstr "Hindi ma-install '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:347 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Hindi ma-install ang isang kinakailangang pakete. Mangyari lamang na " +"ipagbigay alam ito bilang isang bug. " + +#. FIXME: provide a list +#: ../DistUpgrade/DistUpgradeCache.py:354 +msgid "Can't guess meta-package" +msgstr "Hindi malaman ang meta-pakete" + +#: ../DistUpgrade/DistUpgradeCache.py:355 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:76 +#, python-format +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" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:108 +msgid "Reading cache" +msgstr "Nagbabasa ng cache" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:157 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +msgid "No valid mirror found" +msgstr "Walang makitang tamang mirror" + +#: ../DistUpgrade/DistUpgradeControler.py:250 +#, python-format +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 " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" +"Habang sinusuri ang iyong sisidlan ng impormasyon walang makitang mirror " +"entry para sa upgrade. Baka dulot ito ng isang pinatatakbong panloob na " +"mirror o lumang impormasyon sa mirror.\n" +"\n" +"Gusto mo pa rin bang masulat ang iyong 'sources.list' file? Kung pipiliin mo " +"ang 'Yes' dito ma-a-update ang lahat ng '%s' to '%s' entries.\n" +"Kung pipiliin mo ang 'no' makakansela naman ang update." + +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 +msgid "Generate default sources?" +msgstr "Lilikha ng default sources?" + +#: ../DistUpgrade/DistUpgradeControler.py:268 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" +"Matapos suriin ang iyong 'sources.list' walang balidong entries para '%s' " +"ang nakita.\n" +"\n" +"Magdadagdag ba ng default entries para '%s'? Kung pipiliin mo ang 'No' " +"makakansela ang update." + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "Repository information invalid" +msgstr "Hindi balido ang impormasyon sa sisidlan" + +#: ../DistUpgrade/DistUpgradeControler.py:303 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" +"Nagresulta ng hindi balidong file ang pag-upgrade ng impormasyon sa " +"sisidlan. Mangyari lamang na ipagbigay alam ito bilang isang bug." + +#: ../DistUpgrade/DistUpgradeControler.py:309 +msgid "Third party sources disabled" +msgstr "Hindi muna pinagana ang third party sources" + +#: ../DistUpgrade/DistUpgradeControler.py:310 +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 " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:364 +msgid "Error during update" +msgstr "Error habang nag-a-update" + +#: ../DistUpgrade/DistUpgradeControler.py:365 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" +"Nagka-problema habang nag-a-update. Malimit na dulot ito ng isang problema " +"sa network, mangyari lamang na suriin ang inyong network connection at " +"subukang muli." + +#: ../DistUpgrade/DistUpgradeControler.py:374 +msgid "Not enough free disk space" +msgstr "Hindi sapat ang libreng disk space" + +#: ../DistUpgrade/DistUpgradeControler.py:375 +#, python-format +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 using 'sudo " +"apt-get clean'." +msgstr "" +"Titigil muna ang upgrade. Mangyari lamang na maglibre ng hindi bababa sa %s " +"ng disk space sa %s. Linisin ang inyong basurahan at tanggalin ang mga " +"pansamantalang mga pakete ng mga natapos na installations gamit ang 'sudo " +"apt-get clean'." + +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:447 +msgid "Do you want to start the upgrade?" +msgstr "Gusto mo na bang simulan ang upgrade?" + +#: ../DistUpgrade/DistUpgradeControler.py:468 +msgid "Could not install the upgrades" +msgstr "Hindi ma-install ang mga upgrades" + +#: ../DistUpgrade/DistUpgradeControler.py:469 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:487 +msgid "Could not download the upgrades" +msgstr "Hindi ma-download ang mga upgrades" + +#: ../DistUpgrade/DistUpgradeControler.py:488 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" +"Titigil muna ang upgrade. Mangyaring suriin ang iyong internet connection o " +"installation media at subukang muli. " + +#: ../DistUpgrade/DistUpgradeControler.py:524 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:525 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:560 +msgid "Remove obsolete packages?" +msgstr "Tanggalin ang mga luma at hindi na kailangang pakete?" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Skip This Step" +msgstr "_Laktawan Itong Hakbang" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Remove" +msgstr "_Tanggalin" + +#: ../DistUpgrade/DistUpgradeControler.py:572 +msgid "Error during commit" +msgstr "Error sa pagtakda" + +#: ../DistUpgrade/DistUpgradeControler.py:573 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" +"Ilang problema ang naganap habang naglilinis. Mangyari lamang na basahin ang " +"mensahe sa ibaba para sa karagdagang impormasyon. " + +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:585 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:641 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 +msgid "Checking package manager" +msgstr "Sinusuri ang manager ng pakete" + +#: ../DistUpgrade/DistUpgradeControler.py:681 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:682 +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/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:705 +msgid "Updating repository information" +msgstr "Ina-update ang impormasyon ng sisidlan" + +#: ../DistUpgrade/DistUpgradeControler.py:730 +msgid "Invalid package information" +msgstr "Hindi balidong impormasyon ng pakete" + +#: ../DistUpgrade/DistUpgradeControler.py:731 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:743 +msgid "Asking for confirmation" +msgstr "Nanghihingi ng kumpirmasyon" + +#: ../DistUpgrade/DistUpgradeControler.py:747 +msgid "Upgrading" +msgstr "Nag-a-upgrade" + +#: ../DistUpgrade/DistUpgradeControler.py:754 +msgid "Searching for obsolete software" +msgstr "Naghahanap ng luma at hindi na kailangang software" + +#: ../DistUpgrade/DistUpgradeControler.py:759 +msgid "System upgrade is complete." +msgstr "Kumpleto na ang pagupgrade sa sistema" + +#. print "mediaChange %s %s" % (medium, drive) +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "Mangyari na ipasok ang '%s' sa drive '%s'" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "Ina-aplay ang mga pagbabago" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "Hindi ma-install ang '%s'" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +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 bugreport." +msgstr "" + +#. self.expander.set_expanded(True) +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 +msgid "The 'diff' command was not found" +msgstr "Hindi makita ang 'diff' command" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 +msgid "A fatal error occured" +msgstr "isang matinding error ang naganap" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 +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 aborts " +"now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 +msgid "To prevent data loss close all open applications and documents." +msgstr "" +"Upang maiwasan ang pagkawala ng data isara muna ang mga nakabukas na " +"applications at dokumento." + +#. FIXME: this should go into DistUpgradeController +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../UpdateManager/UpdateManager.py:622 +msgid "Your system is up-to-date" +msgstr "Up-to-date ang iyong sistema" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 +#, python-format +msgid "Remove %s" +msgstr "Tanggalin ang %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 +#, python-format +msgid "Install %s" +msgstr "I-install ang %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 +#, python-format +msgid "Upgrade %s" +msgstr "I-upgrade ang %s" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#. 1Mbit = 1024 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:111 +msgid "Reboot required" +msgstr "Nangangailangan ng pag reboot" + +#: ../DistUpgrade/DistUpgradeView.py:112 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" +"Natapos na ang pag-upgrade at nangangailangan ng pag-reboot. Gusto mo bang " +"gawin na ito ngayon?" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#. app.openCache() +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr " " + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" +"Kanselahin ang kasalukuyang pag-a-upgrade?\n" +"\n" +"Maaaring hindi gumana ang sistema kung kakanselahin ang upgrade. Mariing " +"ipinapayo na ipagpatuloy ang upgrade." + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" +"I-restart ang sistema upang makumpleto ang pag-upgrade" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "Simulan ang upgrade?" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "Naglilinis" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "Mga Detalye" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "Pagkakaiba sa pagitan ng mga files" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "Binabagoang mga software channels" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "Ini-hahanda ang upgrade" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "Ini-rerestart ang sistema" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "Terminal" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "_Itira" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 +msgid "_Replace" +msgstr "_Palitan" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "_Ipagbigay alam ang Bug" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "_I-restart Ngayon" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "_Ipagpatuloy ang Upgrade" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "Hindi makita ang mga release notes" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "Maaaring overloaded ang server. " + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "Hindi ma-download ang mga release notes" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "Mangyaring suriin ang inyong internet connection" + +#. no script file found in extracted tarbal +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "Hindi mapatakbo ang upgrade tool" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" +"Malaki ang posibilidad na ito ay isang bug sa upgrade tool. Mangyaring " +"ipagbigay alam bilang isang bug." + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "Nag-da-download ng upgrade tool" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "Papatnubayan ka ng upgrade tool habang nasa proseso ng pag-upgrade" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "Signature ng upgrade tool" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "Upgrade tool" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "Bigo sa pag-fetch" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "Bigo sa pag-fetch ng upgrade. Maaaring may problema sa network. " + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "Bigo sa pag-extract" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" +"Bigo sa pag-extract ng upgrade. Maaaring may problema sa network o sa " +"server. " + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "Bigo sa beripikasyon" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "Bigo sa awtentikasyon." + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "Bigo sa awtentikasyon. Maaaring may problema sa network o server. " + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#. TRANSLATORS: updates from an 'unknown' origin +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:478 +#, python-format +msgid "Version %s: \n" +msgstr "Bersyon %s: \n" + +#: ../UpdateManager/UpdateManager.py:539 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:566 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:572 +msgid "_Check All" +msgstr "" + +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, python-format +msgid "Download size: %s" +msgstr "Laki ng Download: %s" + +#: ../UpdateManager/UpdateManager.py:633 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "Maaari kang mag-install ng %s na update" +msgstr[1] "Maaari kang mag-install ng %s na mga updates" + +#: ../UpdateManager/UpdateManager.py:666 +msgid "Please wait, this can take some time." +msgstr "Mangyaring maghintay, matatagalan pa." + +#: ../UpdateManager/UpdateManager.py:668 +msgid "Update is complete" +msgstr "Kumpleto na ang pag-update" + +#: ../UpdateManager/UpdateManager.py:719 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:826 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:830 +#, python-format +msgid "Version %s" +msgstr "" + +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:843 +msgid "Your distribution is not supported anymore" +msgstr "Ang iyong distribusyon ay hindi na suportado" + +#: ../UpdateManager/UpdateManager.py:844 +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 " +"information on upgrading." +msgstr "" +"Hindi ka na makakakuha pa ng mga fixes na pangseguridad o kritikal na " +"updates. Mag-upgrade na sa isang mas bagong bersyon ng Ubuntu Linux. " +"Puntahan ang http://www.ubuntu.com para sa marami pang impormasyon tungkol " +"sa upgrading." + +#: ../UpdateManager/UpdateManager.py:863 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "Available na ang bagong distribusyon release '%s'" + +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:902 +msgid "Software index is broken" +msgstr "Sira ang software index" + +#: ../UpdateManager/UpdateManager.py:903 +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 terminal to fix " +"this issue at first." +msgstr "" +"Hindi maaaring mag-install o mag-tanggal ng kahit anong software. Mangyaring " +"gamitin ang manedyer pang-paketeng \"Synaptic\" o patakbuhin ang \"sudo apt-" +"get install -f\" sa isang terminal upang maisaayos muna." + +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "Panatilihing napapanahon ang iyong sistema" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "Mga pagbabago" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "Chec_k" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "Suriin ang mga software channels para sa mga bagong updates" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "Deskripsiyon" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "Release Notes" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "Ipakita ang progreso ng bawat files" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "Software Updates" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" +"Itinatama ng software updates ang mga error, tinatanggal ang mga kahinaang " +"pangseguridad at nagbibigay ng mga bagong features." + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "Mag-upgrade sa pinakabagong bersiyon ng Ubuntu" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "_Check" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "_Itago ang impormasyong ito sa hinaharap" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "_Install ang mga Updates" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "Mga updates mula sa Internet" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"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 " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "Awtentikasyon" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "Tanggalin ang mga na-download nang software files:" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "Kunin ang public key mula sa pinagkakatiwalaang provider" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "Mga updates mula sa Internet" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" +"Pawang mga updates na pangseguridad mula sa mga opisyal na mga Ubuntu " +"servers lamang ang awtomatikong ma-i-install." + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "Ibalik_ang_mga_Defaults" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "Ibalik ang default keys ng inyong distribusiyon" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "_Awtomatikong i-check para sa mga updates:" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "_Importahin ang Key File" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "_I-install ang mga updates na pangseguridad ng walang kumpirmasyon" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "Kumento:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "Mga Components:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "Distribusiyon:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "Tipo:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "URI:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "Linyang APT:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" +"Binaryo\n" +"Batis" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "Sinusuri ang CD-ROM" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "_Reload" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "Ipakita at i-install ang mga available na updates" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "Manedyer pang Update" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" +"Awtomatikong tumitingin kung may bagong bersiyon na available ang " +"kasalukuyang distribusiyon at mag-mungkahing mag-upgrade (kung posible)." + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "Suriin para sa bagong releases pang-distribusiyon" + +#: ../data/update-manager.schemas.in.h:3 +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 this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "Ipaalala na mag-reload ng listahan ng channel" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "Ipakita ang mga detalye ng isang pag-update" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "Inilalagay ang sukat ng update-manager dialog" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "Ang laki ng window" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" + +#. Description +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "Opisyal na sinusuportahan" + +#. Description +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "Inaalagaan ng kumunidad (Universe)" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "Di-malaya (Multiverse)" + +#. Description +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "Mahigpit na copyright" + +#. Description +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" + +#. Description +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "Debian 3.1 \"Sarge\"" + +#. BaseURI +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "http://security.debian.org/" + +#. Description +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "Mga Updates Pang-seguridad sa Debian 3.1 \"Sarge\"" + +#. Description +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "Debian \"Etch\" (testing)" + +#. BaseURI +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "http://http.us.debian.org/debian/" + +#. Description +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "Debian \"Sid\" (unstable)" + +#. CompDescription +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "Software na DFSG-compatible na may Di-Malayang mga Dependensiya" + +#. CompDescription +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "Software na Di-DFSG-compatible" diff --git a/po/tr.po b/po/tr.po index abc76c88..68cd8a35 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:17+0000\n" -"Last-Translator: Kayra Akman \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-21 20:58+0000\n" +"Last-Translator: Atilla Karaman \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -157,20 +157,20 @@ msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları synaptic veya apt-get kullanarak düzeltin." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Gerekli bir paketin kaldırılması gerekmekte" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Güncelleme hesaplanamadı" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,11 +183,11 @@ msgstr "" "upgrade/ konumundaki dosyaları da ekleyin." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulamasında hata" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -197,23 +197,23 @@ msgstr "" "tekrar deneyebilirsiniz. Doğrulanamamış paketlerin listesi için aşağıya " "bakınız." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' yüklenemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Meta-paket kestirilemedi" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -292,7 +292,7 @@ msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" -msgstr "Öntanımlı depolar kaydedilsin mi??" +msgstr "Öntanımlı depolar kaydedilsin mi?" #: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format @@ -333,11 +333,11 @@ msgstr "" "Yükseltmenin ardından bu girdileri 'software-properties' aracını ya da " "synaptic'i kullanarak tekrar etkinleştirebilirsiniz." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Güncelleştirme sırasında hata" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +345,11 @@ msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı kontrol edin ve yeniden deneyin." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -361,15 +361,15 @@ msgstr "" "geçici paketlerini kaldırın." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -383,11 +383,11 @@ msgstr "" "Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine /" "var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -395,11 +395,11 @@ msgstr "" "Yükseltme şimdi iptal edilecek. Lütfen internet bağlantınızı veya kurulum " "ortamınızı kontrol edin ve yeniden deneyin. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Bazı uygulamalar için destek sona erdi" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -408,23 +408,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Kullanılmayan paketler kaldırılsın mı?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Bu Adımı _Atla" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Kaldır" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "İşlem sırasında hata oluştu" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,42 +433,42 @@ msgstr "" "bakın. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Orijinal sistem durumuna geri dönülüyor" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Paket yöneticisi denetleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Yükseltme işlemine hazırlanma başarısız oldu" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Depo bilgileri güncelleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -483,19 +483,19 @@ msgstr "" "hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki " "dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Onay isteniyor" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Yükseltiliyor" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Kullanılmayan yazılımlar aranıyor" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." @@ -562,16 +562,18 @@ msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Eğer bu yapılandırma dosyasını yeni sürümüyle değiştirecekseniz bu dosyaya " +"yapmış olduğunuz değişiklikleri kaybedeceksiniz." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' komutu bulunamadı" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Giderilemez bir hata oluştu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -585,25 +587,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kaldırılacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d yeni paket kurulacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket yükseltilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -614,7 +616,7 @@ msgstr "" "\n" "Toplam %s indirmeniz gerekmektedir. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -622,18 +624,18 @@ msgstr "" "Yükseltmeyi indirmek ve kurmak saatlerce sürebilir ve daha sonra iptal " "edilemez." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sisteminiz güncel" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -641,17 +643,17 @@ msgstr "" "Sisteminiz için olası herhangi bir yükseltme yok. Yükseltme işlemi şimdi " "iptal edilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Şunu kaldır: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s'i kur" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s'i yükselt" @@ -684,12 +686,14 @@ msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Bu indirme işlemi 1Mbit DSL bağlantısıyla yaklaşık %s ve 56k modemle ise " +"yaklaşık %s sürecektir." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Yeniden başlatma gerekiyor" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -763,11 +767,11 @@ msgstr "Uçbirim" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Yükseltmeyi İptal Et" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Devam" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -792,7 +796,7 @@ msgstr "Yükseltmeye _Devam Et" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Yükseltmeye Başla" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -845,7 +849,7 @@ msgstr "Getirme başarısız" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Yükseltmeyi indirme başarısız. Ağ sorunu olabilir " +msgstr "Yükseltmeyi getirme başarısız. Ağ sorunu olabilir " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -898,12 +902,16 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Değişiklik listesi henüz mevcut değil.\n" +"Lütfen daha sonra tekrar deneyiniz." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Değişiklik listesini indirme başarısız oldu. \n" +"Lütfen İnternet bağlantınızı kontrol edin." #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 @@ -926,7 +934,7 @@ msgstr "Backport edilmiş yazılımlar" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Dağıtım güncelleştirmeleri" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 @@ -940,7 +948,7 @@ msgstr "Sürüm %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "Değişiklik listesi indiriliyor..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -977,7 +985,7 @@ msgstr "Güncellemeler denetleniyor" #: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "%(old_version)s sürümünden %(new_version)s sürümüne" #: ../UpdateManager/UpdateManager.py:830 #, python-format @@ -1054,6 +1062,11 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Güncelleştirmeleri elle kontrol etmelisiniz\n" +"\n" +"Sisteminiz güncelleştirmeleri otomatik olarak kontrol etmiyor. Bunu " +"İnternet Güncelleştirmeleri sekmesindeki Yazılım Kaynaklarından yapılandırabilirsiniz." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1121,7 +1134,7 @@ msgid "" "provide new features." msgstr "" "Yazılım güncellemeleri hataları düzeltir, güvenlik açıklarını giderir ve " -"yeni özellikler katar." +"yeni özellikler sunar." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1196,7 +1209,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" -msgstr "" +msgstr "Cdrom ekle" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1370,6 +1383,9 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" +"Eğer otomatik güncelleştirme denetimi devre dışı bırakılmışsa, kanal " +"listesini elle tekrar yüklemelisiniz. Bu seçenek bu durumda gösterilen " +"anımsatıcıyı saklamanıza olanak sağlar." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1436,7 +1452,7 @@ msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Canonical Açık Kaynak yazılımı destekledi" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1466,7 +1482,7 @@ msgstr "Kısıtlı yazılımlar (Multiverse)" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Yazılım telif haklarıyla veya yasal sorunlar sebebiyle kısıtlanmıştır" #. Description #: ../data/channels/Ubuntu.info.in:76 @@ -1496,7 +1512,7 @@ msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 5.10 Güncelleştirmeleri" +msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description #: ../data/channels/Ubuntu.info.in:145 @@ -1597,7 +1613,7 @@ msgstr "http://security.debian.org/" #. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncelleştirmeleri" +msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncellemeleri" #. Description #: ../data/channels/Debian.info.in:34 @@ -1654,7 +1670,7 @@ msgstr "DFSG Uyumlu Olmayan Yazılım" #, fuzzy #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 Güvenlik Güncelleştirmeleri" +#~ msgstr "Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Security Updates" #~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" diff --git a/po/uk.po b/po/uk.po index 56d9a7fc..07e3d95f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" @@ -155,21 +155,21 @@ msgstr "" "Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " "цією програмою. Скористайтесь перш програмами synaptic чи apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Не можливо поновити необхідні meta-пакунки" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 #, fuzzy msgid "A essential package would have to be removed" msgstr "Це призведе до видалення !essential! пакунку системи" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,11 +178,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -192,12 +192,12 @@ msgstr "" "мережі. Можливо, Вам захочеться спробувати пізніше. Список не перевірених " "пакунків нижче." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Не можливо встановити '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -205,11 +205,11 @@ msgstr "" "Неможливо встановити необхідний пакунок. Сповістіть про це як про помилку. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -301,22 +301,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Помилка підчас поновлення" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Недостатньо місця на диску" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -325,15 +325,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати оновлення системи?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Неможливо провести оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -342,11 +342,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Неможливо завантажити пакунки для оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -354,11 +354,11 @@ msgstr "" "Оновлення системи щойно перервано. Будь ласка, перевірте з'єднання з " "Інтернетом або зовнішній носії та спробуйте знов. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -367,24 +367,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Remove obsolete packages?" msgstr "Видалити непотрібні пакунки?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Пропустити цей крок" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "Видалити" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -393,42 +393,42 @@ msgstr "" "нижче. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Отримання інформації про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Невірна інформація про пакунок" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -438,19 +438,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Запит підтвердження" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Процес оновлення" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Пошук програм, що не використовуються" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Оновлення системи завершено." @@ -517,11 +517,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Команда 'diff' не знайдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Виникла невиправна помилка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -531,7 +531,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -539,7 +539,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -547,7 +547,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -555,7 +555,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -563,40 +563,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Для запобігання втраті інформації закрийте усі програми та документи." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, fuzzy, python-format msgid "Remove %s" msgstr "Видалити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, fuzzy, python-format msgid "Install %s" msgstr "Встановити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Оновити %s" @@ -630,11 +630,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Необхідно перезавантажити систему" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/update-manager.pot b/po/update-manager.pot index 60c4647e..c9a466e3 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,21 +291,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -500,11 +500,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ur.po b/po/ur.po index 3ed34bd9..371d8612 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -292,21 +292,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -610,11 +610,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/urd.po b/po/urd.po index bbddfb97..4062dfce 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -292,21 +292,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -610,11 +610,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/vi.po b/po/vi.po index 7111675a..1ed692f7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -156,20 +156,20 @@ msgstr "" "Hệ thống của bạn chứa các gói tin bị lỗi và không thể sửa được bằng phần mềm " "này. Hãy sửa chúng dùng các gói synaptic hoặc apt-get trước khi tiếp tục." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Không thể nâng cấp các gói gốc được yêu cầu" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Một gói quan trọng cần phải bị gỡ bỏ" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Không thể tính được dung lượng cần nâng cấp" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -179,11 +179,11 @@ msgid "" msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Gặp lỗi khi đang xác thực một số gói" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -193,12 +193,12 @@ msgstr "" "vui lòng thử lại sau. Bên dưới là danh sách các gói chưa được xác thực đầy " "đủ." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Không thể cài đặt '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgid "" msgstr "Không thể cài đặt được gói yêu cầu. Vui lòng thông báo lỗi này. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Không thể đoán được gói gốc" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -300,22 +300,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,52 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "Một bộ quản lý gói khác đang chạy" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Đang tải các thay đổi" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -417,15 +417,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,20 +435,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Nâng cấp xong" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -515,11 +515,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -529,25 +529,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -555,40 +555,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -622,11 +622,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/xh.po b/po/xh.po index 7e59725b..a578fb97 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -292,21 +292,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -610,11 +610,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 0ff4ebda..f672d6e5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:00+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -156,20 +156,20 @@ msgstr "" "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" "apt-get修复它们。" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "不能升级要求的元包" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "无法计算升级" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -182,11 +182,11 @@ msgstr "" "件包含在错误报告中。" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -195,23 +195,23 @@ msgstr "" "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" "件包的列表。" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "无法安装'%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "无法猜出元包" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -319,21 +319,21 @@ msgstr "" "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得" "包管理器来重新启用它们." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "升级时出错" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "升级时候出错。这通常是一些网络问题,请检查你的网络连接后再试。" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "磁盘空间不足" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -344,15 +344,15 @@ msgstr "" "get clean'命令来删除之前安装的临时软件包。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "无法安装升级" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -366,21 +366,21 @@ msgstr "" "请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文" "件。" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "无法下载升级包" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "一些应用程序支持终止" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -393,51 +393,51 @@ msgstr "" "\n" "如果你没有启用'社区维护'源,下一步这些包将被建议移除." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "跳过这个步骤(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "删除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "确认时出错" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "正在检查软件包管理器" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "正在准备升级" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -445,15 +445,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "更新源的信息" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "无效的包信息" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -467,19 +467,19 @@ msgstr "" "这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/" "dist-upgrade/中的文件。" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "请求确认" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "正在更新" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "寻找陈旧的软件包" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "系统更新完毕" @@ -549,11 +549,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "外部命令“diff”没有找到" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "出现致命错误" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -567,25 +567,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d 个软件包将被删除。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d 个新的软件包将被安装。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 个软件包将被升级" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -596,39 +596,39 @@ msgstr "" "\n" "你需要下载了总共 %s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "下载及升级会持续几个小时,且不可取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "您的系统已为最新" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "你的系统没有可用升级。升级被取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "删除%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "安装%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "升级%s" @@ -662,11 +662,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "需要重启" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升级已经完成并需要重启。你要现在重启么?" diff --git a/po/zh_HK.po b/po/zh_HK.po index 983ec483..481d2e19 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -152,20 +152,20 @@ msgstr "" "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" "套件。" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "無法計算升級過程" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,11 +174,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -187,23 +187,23 @@ msgstr "" "有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套" "件。" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "無法安裝「%s」" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "有必須的套件無法安裝,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -293,21 +293,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "無法下載升級所需的套件" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常,然後再試一次。 " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,65 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "是否移除過時的套件?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "套件資料無效" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,19 +424,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "正在搜尋過時的軟件" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "已完成系統升級。" @@ -503,11 +503,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "找不到「diff」指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -517,25 +517,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 68e961d4..00509cba 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" @@ -148,20 +148,20 @@ msgstr "" "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " "synaptic 或 apt-get 來修恢它們。" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "無法升級須要的元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "無法計算升級" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -170,11 +170,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 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 a list of " @@ -183,23 +183,23 @@ msgstr "" "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" "的套件。" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "無法安裝‘%s’" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -303,21 +303,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網路問題,試檢查網路連線及再試。" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -328,15 +328,15 @@ msgstr "" "clean'來移除先前安裝套件時的暫存檔。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -345,21 +345,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "無法下載升級套件" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常及再試 " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -368,65 +368,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "移除不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "提交時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "回覆原有系統狀態" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 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/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "無效的套件資訊" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -436,19 +436,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "詢問以確認" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "尋搜不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "系統升級完成。" @@ -514,11 +514,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "發生嚴重錯誤" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 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 aborts " @@ -528,25 +528,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -557,39 +557,39 @@ msgstr "" "\n" "你必須下載全部的%s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "移除 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "安裝 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "升級 %s" @@ -623,11 +623,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "須要重新開機" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" -- cgit v1.2.3 From 7c53126f73135715ac90bc5d6e2759d52de433fd Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 16:51:05 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - comment out old cdrom sources (causes trouble with the sysvinit<->upstart upgrade because sysinit is still essential) --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeControler.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index a13db18f..c374ddd0 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,9 +1,12 @@ +2006-10-21: + - comment out old cdrom sources 2006-10-21: - fix incorrect arguments in fixup logging (lp: #67311) - more error logging - fix upgrade problems for people with unofficial compiz repositories (lp: #58424) - rosetta i18n updates + - uploaded 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index a968cdb8..0136ce68 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -202,7 +202,7 @@ class DistUpgradeControler(object): # we disable breezy cdrom sources to make sure that demoted # packages are removed - if entry.uri.startswith("cdrom:") and entry.dist == "breezy": + if entry.uri.startswith("cdrom:") and entry.dist == self.toDist: entry.disabled = True continue # ignore cdrom sources otherwise -- cgit v1.2.3 From fd13bb39c74b7c184e65adfaffc16c10b2bc3bf1 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 16:57:46 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - disable "fromDist" cdrom sources --- DistUpgrade/DistUpgradeControler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 0136ce68..4e76a65d 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -202,7 +202,7 @@ class DistUpgradeControler(object): # we disable breezy cdrom sources to make sure that demoted # packages are removed - if entry.uri.startswith("cdrom:") and entry.dist == self.toDist: + if entry.uri.startswith("cdrom:") and entry.dist == self.fromDist: entry.disabled = True continue # ignore cdrom sources otherwise -- cgit v1.2.3 From 647f3d3adde8815d2d6acaeda5dd49a2d071c25d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 17:15:39 +0200 Subject: * utils/demoted.cfg: - updated to current edgy --- DistUpgrade/Changelog | 1 + utils/demoted.cfg | 105 +++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 104 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index c374ddd0..bea2b932 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,6 @@ 2006-10-21: - comment out old cdrom sources + - demotions updated 2006-10-21: - fix incorrect arguments in fixup logging (lp: #67311) - more error logging diff --git a/utils/demoted.cfg b/utils/demoted.cfg index c619ea69..1d271855 100644 --- a/utils/demoted.cfg +++ b/utils/demoted.cfg @@ -1,6 +1,9 @@ # demoted packages blender +bluez-hcidump bluez-pcmcia-support +console-common +console-data courier-authdaemon courier-base courier-doc @@ -9,15 +12,62 @@ courier-imap-ssl courier-pop courier-pop-ssl courier-ssl +cupsys-driver-gimpprint +dh-consoledata +doc-debian +expat +foomatic-db-gimp-print +foomatic-db-gutenprint ftgl-dev +g++-3.4 +g++-4.0 +gok +gok-doc +gtk2-engines-clearlooks +gtk2-engines-crux +gtk2-engines-highcontrast +gtk2-engines-industrial +gtk2-engines-lighthouseblue +gtk2-engines-mist +gtk2-engines-pixbuf +gtk2-engines-redmond95 +gtk2-engines-smooth +gtk2-engines-thinice +heimdal-dev +ia32-libs-gtk +ia32-libs-kde +ia32-libs-openoffice.org +idle-python2.4 +ijsgimpprint +ijsgutenprint +installation-guide-hppa +irssi-text +kde-style-lipstik +klaptopdaemon +kmplayer-doc lam4-dev lam4c2 +libaltlinuxhyph-dev +libasn1-6-heimdal +libcompfaceg1 +libcompfaceg1-dev +libdvdnav-dev +libdvdnav4 +libdvdread3 libgd-gd2-noxpm-perl -libgmime2.1 -libgmime2.1-cil +libgnujaxp-java +libgnujaxp-java-doc +libgnujaxp-jni libgnutls12 +libgssapi4-heimdal +libhdb7-heimdal +libkadm5clnt4-heimdal +libkadm5srv7-heimdal +libkafs0-heimdal +libkrb5-17-heimdal libmpich1.0-dev libmpich1.0c2 +libmythes0 libnetcdf++3 libnetcdf3 libpgtcl-dev @@ -25,18 +75,69 @@ libpgtcl1.5 libreiserfs0.3-0 libreiserfs0.3-dbg libreiserfs0.3-dev +libroken16-heimdal +libstdc++6-4.0-dbg +libstdc++6-4.0-dev +libstdc++6-4.0-doc +libstdc++6-dbg +libstdc++6-dev +libsyck0-dev +libtasn1-2 +libtasn1-2-dev +libtest-builder-tester-perl libunicode-string-perl libxaw6 libxaw6-dbg +libxine-main1 +memtester +menu-xdg +mgetty +mgetty-fax +mklibs-copy mono-classlib-2.0 +mozilla-firefox +mozilla-firefox-locale-eu +mozilla-firefox-locale-lt +mozilla-firefox-locale-mn +mozilla-firefox-locale-nb-no +mozilla-thunderbird-locale-ca +mozilla-thunderbird-locale-de +mozilla-thunderbird-locale-fr +mozilla-thunderbird-locale-it +mozilla-thunderbird-locale-nl +mozilla-thunderbird-locale-pl +mozilla-thunderbird-locale-uk mpi-doc mpich-bin +nagios-common +nagios-mysql +nagios-pgsql +nagios-plugins +nagios-plugins-basic +nagios-plugins-standard +nagios-text netcdfg-dev +pcmcia-cs +procinfo +publib-dev +python-gadfly +python-htmltmpl +python-kjbuckets python-netcdf +python-numeric-ext python-parted python-pgsql python-scientific-doc +python-soappy +python-stats +python-syck +readahead-list sdf-doc +springgraph +sysutils tcl8.0 tcl8.0-dev +tcsh tk8.0 +x-window-system-core +xfmedia \ No newline at end of file -- cgit v1.2.3 From aaa740bde79a3e376f5c46215acf53df9d67dc3e Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 17:20:40 +0200 Subject: * utils/demoted.cfg: - added nvidia-glx-legacy{-dev} by hand (because I don't want to wait for the archive to catch up) --- utils/demoted.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/demoted.cfg b/utils/demoted.cfg index 1d271855..57a2dac7 100644 --- a/utils/demoted.cfg +++ b/utils/demoted.cfg @@ -117,6 +117,8 @@ nagios-plugins-basic nagios-plugins-standard nagios-text netcdfg-dev +nvidia-glx-legacy +nvidia-glx-legacy-dev pcmcia-cs procinfo publib-dev @@ -140,4 +142,4 @@ tcl8.0-dev tcsh tk8.0 x-window-system-core -xfmedia \ No newline at end of file +xfmedia -- cgit v1.2.3 From dcee921a1107db6e5c8042598641b422a77e24c2 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 26 Oct 2006 12:31:52 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - ensure that xserver-xorg-video-all is upgraded (if xserver-xorg-driver-all is installed) --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeCache.py | 11 +++++++++++ 2 files changed, 14 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index bea2b932..b42e2d76 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,6 @@ +2006-10-26: + - make sure that xserver-xorg-video-all get installed if + xserver-xorg-driver-all was installed before (lp: #58424) 2006-10-21: - comment out old cdrom sources - demotions updated diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 9c062c41..d9dc9959 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -212,6 +212,17 @@ class MyCache(apt.Cache): logging.info("Forcing downgrade of libgl1-mesa-dri for xgl.compz.info installs") self._depcache.SetCandidateVer(pkg._pkg, ver) break + + # deal with general if $foo is installed, install $bar + for (fr, to) in [("xserver-xorg-driver-all","xserver-xorg-video-all")]: + if self.has_key(fr) and self.has_key(to): + if self[fr].isInstalled and not self[to].markedInstall: + try: + self.markInstall(to,"%s->%s quirk upgrade rule" % (fr, to)) + except SystemError, e: + logging.debug("Failed to apply %s->%s install (%s)" % (fr, to, e)) + + def dapperQuirks(self): """ this function works around quirks in the breezy->dapper upgrade """ -- cgit v1.2.3